Version Description
Download this release
Release Info
Developer | Cimmo |
Plugin | Cimy User Extra Fields |
Version | 2.1.0 |
Comparing to | |
See all releases |
Code changes from version 2.0.5 to 2.1.0
- README_OFFICIAL.txt +24 -1
- cimy_uef_admin.php +23 -13
- cimy_uef_db.php +12 -0
- cimy_uef_email_handler.php +10 -10
- cimy_uef_functions.php +83 -0
- cimy_uef_options.php +26 -0
- cimy_uef_profile.php +58 -25
- cimy_uef_register.php +233 -28
- cimy_user_extra_fields.php +15 -8
- js/img_selection.js +21 -0
- langs/cimy_uef-bg_BG.mo +0 -0
- langs/cimy_uef-bg_BG.po +376 -328
- langs/cimy_uef-da_DK.mo +0 -0
- langs/cimy_uef-da_DK.po +376 -328
- langs/cimy_uef-de_DE.mo +0 -0
- langs/cimy_uef-de_DE.po +376 -328
- langs/cimy_uef-es_ES.mo +0 -0
- langs/cimy_uef-es_ES.po +376 -328
- langs/cimy_uef-fr_FR.mo +0 -0
- langs/cimy_uef-fr_FR.po +377 -328
- langs/cimy_uef-it_IT.mo +0 -0
- langs/cimy_uef-it_IT.po +375 -328
- langs/cimy_uef-pl_PL.mo +0 -0
- langs/cimy_uef-pl_PL.po +376 -328
- langs/cimy_uef-pt_BR.mo +0 -0
- langs/cimy_uef-pt_BR.po +377 -328
- langs/cimy_uef-ru_RU.mo +0 -0
- langs/cimy_uef-ru_RU.po +376 -328
- langs/cimy_uef-sv_SE.mo +0 -0
- langs/cimy_uef-sv_SE.po +376 -328
- readme.txt +5 -2
README_OFFICIAL.txt
CHANGED
@@ -37,8 +37,11 @@ Following WordPress hidden fields can be enabled during registration:
|
|
37 |
|
38 |
Other features:
|
39 |
* reCAPTCHA
|
|
|
40 |
* custom registration logo (non MS installations)
|
41 |
* email confirmation (non MS installations)
|
|
|
|
|
42 |
* much more!
|
43 |
|
44 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
@@ -458,6 +461,19 @@ HOW TO USE AVATAR SUPPORT:
|
|
458 |
Create the same directory needed for PICTURE support, avatars will be stored in a subdirectory and will not interfere with other pictures uploaded by the same plug-in
|
459 |
|
460 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
461 |
KNOWN ISSUES:
|
462 |
- if you add too many fields in the "Users Extended" menu they will go out of frame
|
463 |
- some rules are never applied if you are using PHP 4.x please update to PHP 5.x as stated in the REQUIREMENTS
|
@@ -587,11 +603,18 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
|
|
587 |
|
588 |
|
589 |
CHANGELOG:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
590 |
v2.0.5 - 11/05/2011
|
591 |
- Added 'view_cimy_extra_fields' capability and rule to Show field if user has this cap (thanks to Matt)
|
592 |
- A&U Extended is now renamed to Users Extended
|
593 |
- Updated Users Extended page to use newer functions and to show # of search results
|
594 |
-
- Updated equalTo field can now
|
595 |
- Fixed several html bugs in Users Extended page
|
596 |
- Fixed several (but minor) security issues
|
597 |
|
37 |
|
38 |
Other features:
|
39 |
* reCAPTCHA
|
40 |
+
* custom welcome email (non MS installations)
|
41 |
* custom registration logo (non MS installations)
|
42 |
* email confirmation (non MS installations)
|
43 |
+
* form confirmation (non MS installations)
|
44 |
+
* image upload with crop/resize functions
|
45 |
* much more!
|
46 |
|
47 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
461 |
Create the same directory needed for PICTURE support, avatars will be stored in a subdirectory and will not interfere with other pictures uploaded by the same plug-in
|
462 |
|
463 |
|
464 |
+
ADVANCED OPTIONS:
|
465 |
+
Advanced options have been introduced in v2.1.0 to accommodate some extra options per field.
|
466 |
+
Multiple options should be comma separated ','
|
467 |
+
|
468 |
+
[AVATAR, PICTURE]
|
469 |
+
no-thumb=1 - do not crate the thumbnail (if equalTO rule is set it will resize the original image)
|
470 |
+
crop_ratio=4:3 - fix cropping ratio
|
471 |
+
crop_x1=0,crop_y1=0,crop_x2=80,crop_y2=90 - pre-select cropping window
|
472 |
+
|
473 |
+
[AVATAR, PICTURE, FILE]
|
474 |
+
filename=default.pdf - rename the uploaded file to the given file name
|
475 |
+
|
476 |
+
|
477 |
KNOWN ISSUES:
|
478 |
- if you add too many fields in the "Users Extended" menu they will go out of frame
|
479 |
- some rules are never applied if you are using PHP 4.x please update to PHP 5.x as stated in the REQUIREMENTS
|
603 |
|
604 |
|
605 |
CHANGELOG:
|
606 |
+
v2.1.0 - 28/06/2011
|
607 |
+
- Added confirmation registration (thanks to Marcello Foglia for sponsoring it)
|
608 |
+
- Added custom welcome email (thanks to Marcello Foglia for sponsoring it)
|
609 |
+
- Added crop functionalities for picture and avatar fields (thanks to Marcello Foglia for sponsoring it)
|
610 |
+
- Added advanced options (thanks to Marcello Foglia for sponsoring it)
|
611 |
+
- Code cleanup
|
612 |
+
|
613 |
v2.0.5 - 11/05/2011
|
614 |
- Added 'view_cimy_extra_fields' capability and rule to Show field if user has this cap (thanks to Matt)
|
615 |
- A&U Extended is now renamed to Users Extended
|
616 |
- Updated Users Extended page to use newer functions and to show # of search results
|
617 |
+
- Updated equalTo field can now accommodate up to 500 characters string
|
618 |
- Fixed several html bugs in Users Extended page
|
619 |
- Fixed several (but minor) security issues
|
620 |
|
cimy_uef_admin.php
CHANGED
@@ -246,13 +246,13 @@ function cimy_admin_define_extra_fields() {
|
|
246 |
$maxLen = $max_length_value;
|
247 |
/* end overwrite previous values */
|
248 |
|
249 |
-
if ($minlen
|
250 |
$store_rule['min_length'] = intval($_POST['minlength'][$field_order]);
|
251 |
|
252 |
-
if ($exactlen
|
253 |
$store_rule['exact_length'] = intval($_POST['exactlength'][$field_order]);
|
254 |
|
255 |
-
if ($maxlen
|
256 |
$store_rule['max_length'] = intval($_POST['maxlength'][$field_order]);
|
257 |
|
258 |
$empty = $_POST['empty'][$field_order];
|
@@ -264,14 +264,15 @@ function cimy_admin_define_extra_fields() {
|
|
264 |
$email == "1" ? $store_rule['email'] = true : $store_rule['email'] = false;
|
265 |
$equal = $_POST['equal'][$field_order];
|
266 |
|
267 |
-
if ($equal
|
268 |
$store_rule['equal_to'] = stripslashes($_POST['equalto'][$field_order]);
|
269 |
|
270 |
$equalto_casesens = $_POST['equalto_casesens'][$field_order];
|
271 |
|
272 |
$equalto_regex = $_POST['equalto_regex'][$field_order];
|
273 |
}
|
274 |
-
|
|
|
275 |
$show_in_reg = $_POST['show_in_reg'][$field_order];
|
276 |
$show_in_reg == "1" ? $store_rule['show_in_reg'] = true : $store_rule['show_in_reg'] = false;
|
277 |
|
@@ -334,10 +335,8 @@ function cimy_admin_define_extra_fields() {
|
|
334 |
$maxlen = "";
|
335 |
}
|
336 |
|
337 |
-
if ($equal
|
338 |
-
if (
|
339 |
-
$errors['equalTo'] = __("Equal TO not specified", $cimy_uef_domain);
|
340 |
-
else if ($store_rule['equal_to'] == "")
|
341 |
$errors['equalTo'] = __("Equal TO not specified", $cimy_uef_domain);
|
342 |
else if ((strtoupper($store_rule['equal_to']) != "YES") && (strtoupper($store_rule['equal_to']) != "NO")) {
|
343 |
if ($type == "checkbox")
|
@@ -347,7 +346,7 @@ function cimy_admin_define_extra_fields() {
|
|
347 |
$errors['equalTo2'] = __("With radio type Equal TO can only be", $cimy_uef_domain).": [Yes, No]";
|
348 |
}
|
349 |
|
350 |
-
if (($equalto_casesens
|
351 |
$store_rule['equal_to_case_sensitive'] = true;
|
352 |
else
|
353 |
$store_rule['equal_to_case_sensitive'] = false;
|
@@ -358,7 +357,7 @@ function cimy_admin_define_extra_fields() {
|
|
358 |
$store_rule['equal_to_regex'] = false;
|
359 |
}
|
360 |
|
361 |
-
if (($value
|
362 |
if ($type == "checkbox")
|
363 |
$errors['value'] = __("With checkbox type Value can only be", $cimy_uef_domain).": [Yes, No]";
|
364 |
|
@@ -483,6 +482,7 @@ function cimy_admin_define_extra_fields() {
|
|
483 |
$selected_input["minlen"] = '';
|
484 |
$selected_input["exactlen"] = '';
|
485 |
$selected_input["maxlen"] = '';
|
|
|
486 |
|
487 |
if ($action == "add") {
|
488 |
// CAN BE MODIFIED OR NOT
|
@@ -538,6 +538,10 @@ function cimy_admin_define_extra_fields() {
|
|
538 |
if ($store_rule['email'] == true)
|
539 |
$selected_input["email"] = ' checked="checked"';
|
540 |
|
|
|
|
|
|
|
|
|
541 |
// SHOW LEVEL
|
542 |
switch ($store_rule['show_level']) {
|
543 |
case '-1':
|
@@ -707,7 +711,7 @@ function cimy_admin_define_extra_fields() {
|
|
707 |
<input type="checkbox" name="show_in_profile[0]" value="1"<?php echo $selected_input["show_in_profile"]; ?> /> <?php _e("Show the field in User's profile", $cimy_uef_domain); ?><br />
|
708 |
|
709 |
<!-- SHOW IN A&U EXTENDED -->
|
710 |
-
<input type="checkbox" name="show_in_aeu[0]" value="1"<?php echo $selected_input["show_in_aeu"]; ?> /> <?php _e("Show the field in
|
711 |
|
712 |
<!-- SHOW IN THE SEARCH ENGINE -->
|
713 |
<input type="checkbox" name="show_in_search[0]" value="1"<?php echo $selected_input["show_in_search"]; ?> /> <?php _e("Show the field in the search engine", $cimy_uef_domain); ?><br />
|
@@ -730,6 +734,8 @@ function cimy_admin_define_extra_fields() {
|
|
730 |
|
731 |
<!-- EMAIL ADMIN -->
|
732 |
<input type="checkbox" name="email_admin[0]" value="1"<?php echo $selected_input["email_admin"]; ?> /> <?php _e("Send an email to the admin if the user changes its value", $cimy_uef_domain); ?><br />
|
|
|
|
|
733 |
|
734 |
</td>
|
735 |
<td align="center" style="vertical-align: middle;">
|
@@ -1011,6 +1017,8 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields, $err
|
|
1011 |
else
|
1012 |
$email_admin = "";
|
1013 |
|
|
|
|
|
1014 |
// SHOW LEVEL
|
1015 |
$show_anonymous = '';
|
1016 |
$show_subscriber = '';
|
@@ -1156,7 +1164,7 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields, $err
|
|
1156 |
}
|
1157 |
?>
|
1158 |
<!-- SHOW IN A&U EXTENDED -->
|
1159 |
-
<input type="checkbox" name="show_in_aeu[<?php echo $order ?>]" value="1"<?php echo $show_in_aeu ?> /> <?php _e("Show the field in
|
1160 |
|
1161 |
<!-- SHOW IN THE SEARCH -->
|
1162 |
<input type="checkbox" name="show_in_search[<?php echo $order ?>]" value="1"<?php echo $show_in_search ?> /> <?php _e("Show the field in the search engine", $cimy_uef_domain); ?><br />
|
@@ -1185,6 +1193,8 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields, $err
|
|
1185 |
<?php
|
1186 |
}
|
1187 |
?>
|
|
|
|
|
1188 |
</td>
|
1189 |
<td align="center" style="vertical-align: middle;">
|
1190 |
<p class="submit" style="border-width: 0px;">
|
246 |
$maxLen = $max_length_value;
|
247 |
/* end overwrite previous values */
|
248 |
|
249 |
+
if (!empty($minlen))
|
250 |
$store_rule['min_length'] = intval($_POST['minlength'][$field_order]);
|
251 |
|
252 |
+
if (!empty($exactlen))
|
253 |
$store_rule['exact_length'] = intval($_POST['exactlength'][$field_order]);
|
254 |
|
255 |
+
if (!empty($maxlen))
|
256 |
$store_rule['max_length'] = intval($_POST['maxlength'][$field_order]);
|
257 |
|
258 |
$empty = $_POST['empty'][$field_order];
|
264 |
$email == "1" ? $store_rule['email'] = true : $store_rule['email'] = false;
|
265 |
$equal = $_POST['equal'][$field_order];
|
266 |
|
267 |
+
if (!empty($equal)) {
|
268 |
$store_rule['equal_to'] = stripslashes($_POST['equalto'][$field_order]);
|
269 |
|
270 |
$equalto_casesens = $_POST['equalto_casesens'][$field_order];
|
271 |
|
272 |
$equalto_regex = $_POST['equalto_regex'][$field_order];
|
273 |
}
|
274 |
+
|
275 |
+
$store_rule["advanced_options"] = stripslashes($_POST['advanced_options'][$field_order]);
|
276 |
$show_in_reg = $_POST['show_in_reg'][$field_order];
|
277 |
$show_in_reg == "1" ? $store_rule['show_in_reg'] = true : $store_rule['show_in_reg'] = false;
|
278 |
|
335 |
$maxlen = "";
|
336 |
}
|
337 |
|
338 |
+
if (!empty($equal)) {
|
339 |
+
if (empty($store_rule['equal_to']))
|
|
|
|
|
340 |
$errors['equalTo'] = __("Equal TO not specified", $cimy_uef_domain);
|
341 |
else if ((strtoupper($store_rule['equal_to']) != "YES") && (strtoupper($store_rule['equal_to']) != "NO")) {
|
342 |
if ($type == "checkbox")
|
346 |
$errors['equalTo2'] = __("With radio type Equal TO can only be", $cimy_uef_domain).": [Yes, No]";
|
347 |
}
|
348 |
|
349 |
+
if ((!empty($equalto_casesens)) && (in_array($type, $rule_equalto_case_sensitive)))
|
350 |
$store_rule['equal_to_case_sensitive'] = true;
|
351 |
else
|
352 |
$store_rule['equal_to_case_sensitive'] = false;
|
357 |
$store_rule['equal_to_regex'] = false;
|
358 |
}
|
359 |
|
360 |
+
if ((!empty($value)) && (strtoupper($value) != "YES") && (strtoupper($value) != "NO")) {
|
361 |
if ($type == "checkbox")
|
362 |
$errors['value'] = __("With checkbox type Value can only be", $cimy_uef_domain).": [Yes, No]";
|
363 |
|
482 |
$selected_input["minlen"] = '';
|
483 |
$selected_input["exactlen"] = '';
|
484 |
$selected_input["maxlen"] = '';
|
485 |
+
$selected_input["advanced_options"] = '';
|
486 |
|
487 |
if ($action == "add") {
|
488 |
// CAN BE MODIFIED OR NOT
|
538 |
if ($store_rule['email'] == true)
|
539 |
$selected_input["email"] = ' checked="checked"';
|
540 |
|
541 |
+
// ADVANCED OPTIONS
|
542 |
+
if (isset($store_rule['advanced_options']))
|
543 |
+
$selected_input["advanced_options"] = $store_rule['advanced_options'];
|
544 |
+
|
545 |
// SHOW LEVEL
|
546 |
switch ($store_rule['show_level']) {
|
547 |
case '-1':
|
711 |
<input type="checkbox" name="show_in_profile[0]" value="1"<?php echo $selected_input["show_in_profile"]; ?> /> <?php _e("Show the field in User's profile", $cimy_uef_domain); ?><br />
|
712 |
|
713 |
<!-- SHOW IN A&U EXTENDED -->
|
714 |
+
<input type="checkbox" name="show_in_aeu[0]" value="1"<?php echo $selected_input["show_in_aeu"]; ?> /> <?php _e("Show the field in Users Extended menu", $cimy_uef_domain); ?><br />
|
715 |
|
716 |
<!-- SHOW IN THE SEARCH ENGINE -->
|
717 |
<input type="checkbox" name="show_in_search[0]" value="1"<?php echo $selected_input["show_in_search"]; ?> /> <?php _e("Show the field in the search engine", $cimy_uef_domain); ?><br />
|
734 |
|
735 |
<!-- EMAIL ADMIN -->
|
736 |
<input type="checkbox" name="email_admin[0]" value="1"<?php echo $selected_input["email_admin"]; ?> /> <?php _e("Send an email to the admin if the user changes its value", $cimy_uef_domain); ?><br />
|
737 |
+
<!-- ADVANCED OPTIONS -->
|
738 |
+
<?php _e("Advanced options", $cimy_uef_domain); ?>: <input type="text" name="advanced_options[0]" maxlength="500" value="<?php echo $selected_input["advanced_options"]; ?>"/><br />
|
739 |
|
740 |
</td>
|
741 |
<td align="center" style="vertical-align: middle;">
|
1017 |
else
|
1018 |
$email_admin = "";
|
1019 |
|
1020 |
+
$advanced_options = $rules['advanced_options'];
|
1021 |
+
|
1022 |
// SHOW LEVEL
|
1023 |
$show_anonymous = '';
|
1024 |
$show_subscriber = '';
|
1164 |
}
|
1165 |
?>
|
1166 |
<!-- SHOW IN A&U EXTENDED -->
|
1167 |
+
<input type="checkbox" name="show_in_aeu[<?php echo $order ?>]" value="1"<?php echo $show_in_aeu ?> /> <?php _e("Show the field in Users Extended menu", $cimy_uef_domain); ?><br />
|
1168 |
|
1169 |
<!-- SHOW IN THE SEARCH -->
|
1170 |
<input type="checkbox" name="show_in_search[<?php echo $order ?>]" value="1"<?php echo $show_in_search ?> /> <?php _e("Show the field in the search engine", $cimy_uef_domain); ?><br />
|
1193 |
<?php
|
1194 |
}
|
1195 |
?>
|
1196 |
+
<!-- ADVANCED OPTIONS -->
|
1197 |
+
<?php _e("Advanced options", $cimy_uef_domain); ?>: <input type="text" name="advanced_options[<?php echo $order ?>]" maxlength="500" value="<?php echo $advanced_options; ?>"/><br />
|
1198 |
</td>
|
1199 |
<td align="center" style="vertical-align: middle;">
|
1200 |
<p class="submit" style="border-width: 0px;">
|
cimy_uef_db.php
CHANGED
@@ -209,6 +209,13 @@ function cimy_plugin_install () {
|
|
209 |
}
|
210 |
}
|
211 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
$options['version'] = $cimy_uef_version;
|
213 |
|
214 |
cimy_set_options($options);
|
@@ -279,6 +286,10 @@ function cimy_manage_db($command) {
|
|
279 |
if (!cimy_check_admin('activate_plugins'))
|
280 |
return;
|
281 |
|
|
|
|
|
|
|
|
|
282 |
$options = array(
|
283 |
'extra_fields_title' => __("Extra Fields", $cimy_uef_domain),
|
284 |
'users_per_page' => 50,
|
@@ -286,6 +297,7 @@ function cimy_manage_db($command) {
|
|
286 |
'wp_hidden_fields' => array(),
|
287 |
'fieldset_title' => '',
|
288 |
'captcha' => 'none',
|
|
|
289 |
);
|
290 |
|
291 |
switch ($command) {
|
209 |
}
|
210 |
}
|
211 |
|
212 |
+
if (version_compare($options['version'], "2.1.0-beta1", "<=") === true) {
|
213 |
+
$welcome_email = sprintf(__('Username: %s'), "USERNAME") . "\r\n";
|
214 |
+
$welcome_email .= sprintf(__('Password: %s'), "PASSWORD") . "\r\n";
|
215 |
+
$welcome_email .= "LOGINLINK" . "\r\n";
|
216 |
+
$options["welcome_email"] = $welcome_email;
|
217 |
+
}
|
218 |
+
|
219 |
$options['version'] = $cimy_uef_version;
|
220 |
|
221 |
cimy_set_options($options);
|
286 |
if (!cimy_check_admin('activate_plugins'))
|
287 |
return;
|
288 |
|
289 |
+
$welcome_email = sprintf(__('Username: %s'), "USERNAME") . "\r\n";
|
290 |
+
$welcome_email .= sprintf(__('Password: %s'), "PASSWORD") . "\r\n";
|
291 |
+
$welcome_email .= "LOGINLINK" . "\r\n";
|
292 |
+
|
293 |
$options = array(
|
294 |
'extra_fields_title' => __("Extra Fields", $cimy_uef_domain),
|
295 |
'users_per_page' => 50,
|
297 |
'wp_hidden_fields' => array(),
|
298 |
'fieldset_title' => '',
|
299 |
'captcha' => 'none',
|
300 |
+
'welcome_email' => $welcome_email,
|
301 |
);
|
302 |
|
303 |
switch ($command) {
|
cimy_uef_email_handler.php
CHANGED
@@ -9,22 +9,22 @@ if ( !function_exists('wp_new_user_notification') ) :
|
|
9 |
*/
|
10 |
function wp_new_user_notification($user_id, $plaintext_pass = '') {
|
11 |
if (isset($_POST["cimy_uef_wp_PASSWORD"]))
|
12 |
-
|
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"]);
|
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 |
-
|
21 |
}
|
22 |
else
|
23 |
wp_new_user_notification_original($user_id, $plaintext_pass, $options["mail_include_fields"]);
|
24 |
}
|
25 |
endif;
|
26 |
|
27 |
-
function wp_new_user_notification_original($user_id, $plaintext_pass = '', $include_fields = false, $activation_data = false) {
|
28 |
$user = new WP_User($user_id);
|
29 |
|
30 |
$user_login = stripslashes($user->user_login);
|
@@ -54,14 +54,14 @@ function wp_new_user_notification_original($user_id, $plaintext_pass = '', $incl
|
|
54 |
if ( empty($plaintext_pass) )
|
55 |
return;
|
56 |
|
57 |
-
$
|
58 |
-
$
|
59 |
|
60 |
if ($include_fields)
|
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) {
|
@@ -270,7 +270,7 @@ function cimy_uef_activate_signup($key) {
|
|
270 |
return new WP_Error( 'user_already_exists', __( 'That username is already activated.', $cimy_uef_domain), $signup);
|
271 |
|
272 |
$options = cimy_get_options();
|
273 |
-
wp_new_user_notification_original($user_id, $password, $options["mail_include_fields"], $meta);
|
274 |
return array('user_id' => $user_id, 'password' => $password, 'meta' => $meta);
|
275 |
}
|
276 |
|
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, $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 |
+
function wp_new_user_notification_original($user_id, $plaintext_pass = '', $include_fields = false, $activation_data = false, $welcome_email = '') {
|
28 |
$user = new WP_User($user_id);
|
29 |
|
30 |
$user_login = stripslashes($user->user_login);
|
54 |
if ( empty($plaintext_pass) )
|
55 |
return;
|
56 |
|
57 |
+
$welcome_email = str_replace("USERNAME", $user_login, $welcome_email);
|
58 |
+
$welcome_email = str_replace("PASSWORD", $plaintext_pass, $welcome_email);
|
59 |
|
60 |
if ($include_fields)
|
61 |
+
$welcome_email .= cimy_uef_mail_fields($user, $activation_data);
|
62 |
+
$welcome_email = str_replace("LOGINLINK", wp_login_url(), $welcome_email);
|
63 |
|
64 |
+
wp_mail($user_email, sprintf(__('[%s] Your username and password'), $blogname), $welcome_email, $headers);
|
65 |
}
|
66 |
|
67 |
function cimy_uef_mail_fields($user = false, $activation_data = false) {
|
270 |
return new WP_Error( 'user_already_exists', __( 'That username is already activated.', $cimy_uef_domain), $signup);
|
271 |
|
272 |
$options = cimy_get_options();
|
273 |
+
wp_new_user_notification_original($user_id, $password, $options["mail_include_fields"], $meta, $options["welcome_email"]);
|
274 |
return array('user_id' => $user_id, 'password' => $password, 'meta' => $meta);
|
275 |
}
|
276 |
|
cimy_uef_functions.php
CHANGED
@@ -529,4 +529,87 @@ function cimy_uef_is_field_disabled($type, $edit_rule, $old_value) {
|
|
529 |
return false;
|
530 |
}
|
531 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
532 |
?>
|
529 |
return false;
|
530 |
}
|
531 |
|
532 |
+
function cimy_uef_crop_image($file, $field_id_data) {
|
533 |
+
if (!empty($_POST[$field_id_data."_button"]) && (!empty($_POST[$field_id_data.'_w'])) && (!empty($_POST[$field_id_data.'_h']))) {
|
534 |
+
$targ_w = $_POST[$field_id_data.'_w'];
|
535 |
+
$targ_h = $_POST[$field_id_data.'_h'];
|
536 |
+
$jpeg_quality = 100;
|
537 |
+
|
538 |
+
$src = $file;
|
539 |
+
$dst = $file;
|
540 |
+
$size = getimagesize($src);
|
541 |
+
switch ($size["mime"]) {
|
542 |
+
case "image/jpeg":
|
543 |
+
$img_r = imagecreatefromjpeg($src); //jpeg file
|
544 |
+
break;
|
545 |
+
case "image/gif":
|
546 |
+
$img_r = imagecreatefromgif($src); //gif file
|
547 |
+
break;
|
548 |
+
case "image/png":
|
549 |
+
$img_r = imagecreatefrompng($src); //png file
|
550 |
+
break;
|
551 |
+
default:
|
552 |
+
$img_r = false;
|
553 |
+
}
|
554 |
+
if (!empty($img_r)) {
|
555 |
+
$dst_r = ImageCreateTrueColor($targ_w, $targ_h);
|
556 |
+
imagecopyresampled($dst_r, $img_r, 0, 0, $_POST[$field_id_data.'_x1'],$_POST[$field_id_data.'_y1'], $targ_w, $targ_h, $targ_w, $targ_h);
|
557 |
+
switch ($size["mime"]) {
|
558 |
+
case "image/jpeg":
|
559 |
+
imagejpeg($dst_r, $dst, $jpeg_quality); //jpeg file
|
560 |
+
break;
|
561 |
+
case "image/gif":
|
562 |
+
imagegif($dst_r, $dst); //gif file
|
563 |
+
break;
|
564 |
+
case "image/png":
|
565 |
+
imagepng($dst_r, $dst); //png file
|
566 |
+
break;
|
567 |
+
}
|
568 |
+
}
|
569 |
+
}
|
570 |
+
}
|
571 |
+
|
572 |
+
function cimy_uef_parse_advanced_options($options) {
|
573 |
+
$advanced_options = array();
|
574 |
+
$adv_array = explode(",", $options);
|
575 |
+
foreach ($adv_array as $item) {
|
576 |
+
$tmp_array = explode("=", $item);
|
577 |
+
if (count($tmp_array) < 2)
|
578 |
+
continue;
|
579 |
+
if (strtolower($tmp_array[0]) == "filename")
|
580 |
+
$advanced_options["filename"] = $tmp_array[1];
|
581 |
+
else if (strtolower($tmp_array[0]) == "crop_ratio")
|
582 |
+
$advanced_options["crop_ratio"] = $tmp_array[1];
|
583 |
+
else if (strtolower($tmp_array[0]) == "crop_x1")
|
584 |
+
$advanced_options["crop_x1"] = $tmp_array[1];
|
585 |
+
else if (strtolower($tmp_array[0]) == "crop_y1")
|
586 |
+
$advanced_options["crop_y1"] = $tmp_array[1];
|
587 |
+
else if (strtolower($tmp_array[0]) == "crop_x2")
|
588 |
+
$advanced_options["crop_x2"] = $tmp_array[1];
|
589 |
+
else if (strtolower($tmp_array[0]) == "crop_y2")
|
590 |
+
$advanced_options["crop_y2"] = $tmp_array[1];
|
591 |
+
else if (strtolower($tmp_array[0]) == "no-thumb")
|
592 |
+
$advanced_options["no-thumb"] = $tmp_array[1];
|
593 |
+
}
|
594 |
+
return $advanced_options;
|
595 |
+
}
|
596 |
+
|
597 |
+
function cimy_uef_get_dir_or_filename($user_login, $url="", $is_thumbnail=false) {
|
598 |
+
global $cimy_uef_plugins_dir, $cuef_upload_path;
|
599 |
+
|
600 |
+
$blog_path = $cuef_upload_path;
|
601 |
+
if (($cimy_uef_plugins_dir == "plugins") && (is_multisite())) {
|
602 |
+
global $blog_id;
|
603 |
+
|
604 |
+
$blog_path .= $blog_id."/";
|
605 |
+
}
|
606 |
+
|
607 |
+
if (empty($url))
|
608 |
+
return $blog_path.$user_login;
|
609 |
+
else if ($is_thumbnail)
|
610 |
+
return $blog_path.$user_login."/".cimy_get_thumb_path(basename($url));
|
611 |
+
else
|
612 |
+
return $blog_path.$user_login."/".basename($url);
|
613 |
+
}
|
614 |
+
|
615 |
?>
|
cimy_uef_options.php
CHANGED
@@ -24,6 +24,7 @@ function cimy_save_options() {
|
|
24 |
$options['aue_hidden_fields'] = array();
|
25 |
$options['wp_hidden_fields'] = array();
|
26 |
|
|
|
27 |
$options['extra_fields_title'] = stripslashes($_POST['extra_fields_title']);
|
28 |
$options['extra_fields_title'] = substr($options['extra_fields_title'], 0, $max_length_extra_fields_title);
|
29 |
|
@@ -120,6 +121,7 @@ function cimy_save_options() {
|
|
120 |
$action = "add";
|
121 |
|
122 |
(isset($_POST['confirm_email'])) ? $options['confirm_email'] = true : $options['confirm_email'] = false;
|
|
|
123 |
if ($options['confirm_email'])
|
124 |
cimy_force_signup_table_creation();
|
125 |
(isset($_POST['redirect_to'])) ? $options['redirect_to'] = $_POST['redirect_to'] : $options['redirect_to'] = "";
|
@@ -381,6 +383,8 @@ function cimy_show_options($results, $embedded) {
|
|
381 |
$options['fieldset_title'] = esc_attr($options['fieldset_title']);
|
382 |
$options['mail_include_fields'] ? $mail_include_fields = ' checked="checked"' : $mail_include_fields = '';
|
383 |
$options['confirm_email'] ? $confirm_email = ' checked="checked"' : $confirm_email = '';
|
|
|
|
|
384 |
$options['redirect_to'] == "source" ? $redirect_to_source = ' checked="checked"' : $redirect_to_source = '';
|
385 |
($options['captcha'] == "recaptcha") ? $recaptcha = ' checked="checked"' : $recaptcha = '';
|
386 |
($options['captcha'] == "securimage") ? $securimage = ' checked="checked"' : $securimage = '';
|
@@ -414,7 +418,9 @@ function cimy_show_options($results, $embedded) {
|
|
414 |
$db_options = false;
|
415 |
$options['fieldset_title'] = "";
|
416 |
$mail_include_fields= '';
|
|
|
417 |
$confirm_email = '';
|
|
|
418 |
$redirect_to_source = '';
|
419 |
$recaptcha = '';
|
420 |
$recaptcha_public_key = '';
|
@@ -583,6 +589,26 @@ function cimy_show_options($results, $embedded) {
|
|
583 |
?>
|
584 |
</td>
|
585 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
586 |
<tr>
|
587 |
<th scope="row">
|
588 |
<input type="checkbox" name="redirect_to" value="source"<?php echo $redirect_to_source; ?> />
|
24 |
$options['aue_hidden_fields'] = array();
|
25 |
$options['wp_hidden_fields'] = array();
|
26 |
|
27 |
+
$options['welcome_email'] = stripslashes($_POST['welcome_email']);
|
28 |
$options['extra_fields_title'] = stripslashes($_POST['extra_fields_title']);
|
29 |
$options['extra_fields_title'] = substr($options['extra_fields_title'], 0, $max_length_extra_fields_title);
|
30 |
|
121 |
$action = "add";
|
122 |
|
123 |
(isset($_POST['confirm_email'])) ? $options['confirm_email'] = true : $options['confirm_email'] = false;
|
124 |
+
(isset($_POST['confirm_form'])) ? $options['confirm_form'] = true : $options['confirm_form'] = false;
|
125 |
if ($options['confirm_email'])
|
126 |
cimy_force_signup_table_creation();
|
127 |
(isset($_POST['redirect_to'])) ? $options['redirect_to'] = $_POST['redirect_to'] : $options['redirect_to'] = "";
|
383 |
$options['fieldset_title'] = esc_attr($options['fieldset_title']);
|
384 |
$options['mail_include_fields'] ? $mail_include_fields = ' checked="checked"' : $mail_include_fields = '';
|
385 |
$options['confirm_email'] ? $confirm_email = ' checked="checked"' : $confirm_email = '';
|
386 |
+
$options['confirm_form'] ? $confirm_form = ' checked="checked"' : $confirm_form = '';
|
387 |
+
$welcome_email = $options['welcome_email'];
|
388 |
$options['redirect_to'] == "source" ? $redirect_to_source = ' checked="checked"' : $redirect_to_source = '';
|
389 |
($options['captcha'] == "recaptcha") ? $recaptcha = ' checked="checked"' : $recaptcha = '';
|
390 |
($options['captcha'] == "securimage") ? $securimage = ' checked="checked"' : $securimage = '';
|
418 |
$db_options = false;
|
419 |
$options['fieldset_title'] = "";
|
420 |
$mail_include_fields= '';
|
421 |
+
$welcome_email = '';
|
422 |
$confirm_email = '';
|
423 |
+
$confirm_form = '';
|
424 |
$redirect_to_source = '';
|
425 |
$recaptcha = '';
|
426 |
$recaptcha_public_key = '';
|
589 |
?>
|
590 |
</td>
|
591 |
</tr>
|
592 |
+
<tr>
|
593 |
+
<th scope="row">
|
594 |
+
<input type="checkbox" name="confirm_form" value="1"<?php echo $confirm_form; ?> />
|
595 |
+
<?php _e("Enable form confirmation", $cimy_uef_domain); ?>
|
596 |
+
</th>
|
597 |
+
<td>
|
598 |
+
<?php
|
599 |
+
_e("a summary of the registration form will be presented to the user", $cimy_uef_domain);
|
600 |
+
?>
|
601 |
+
</td>
|
602 |
+
</tr>
|
603 |
+
<tr>
|
604 |
+
<th scope="row">
|
605 |
+
<?php _e("Customize welcome email sent to the new user", $cimy_uef_domain); ?>
|
606 |
+
</th>
|
607 |
+
<td>
|
608 |
+
<textarea name="welcome_email" rows="6" cols="50"><?php echo esc_html($welcome_email); ?></textarea><br />
|
609 |
+
<?php _e("if you change or remove the placeholders then the email won't have the correct information", $cimy_uef_domain); ?>
|
610 |
+
</td>
|
611 |
+
</tr>
|
612 |
<tr>
|
613 |
<th scope="row">
|
614 |
<input type="checkbox" name="redirect_to" value="source"<?php echo $redirect_to_source; ?> />
|
cimy_uef_profile.php
CHANGED
@@ -50,6 +50,7 @@ function cimy_extract_ExtraFields() {
|
|
50 |
|
51 |
$radio_checked = array();
|
52 |
$upload_file_function = false;
|
|
|
53 |
$current_fieldset = -1;
|
54 |
$tiny_mce_objects = "";
|
55 |
|
@@ -74,6 +75,8 @@ function cimy_extract_ExtraFields() {
|
|
74 |
$description = cimy_uef_sanitize_content($thisField['DESCRIPTION']);
|
75 |
$fieldset = $thisField['FIELDSET'];
|
76 |
$input_name = $fields_name_prefix.esc_attr($name);
|
|
|
|
|
77 |
|
78 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
79 |
// apply only for EXTRA FIELDS
|
@@ -275,10 +278,11 @@ function cimy_extract_ExtraFields() {
|
|
275 |
|
276 |
case "avatar":
|
277 |
case "picture":
|
|
|
278 |
case "file":
|
279 |
$allowed_exts = '';
|
280 |
if (isset($rules['equal_to']))
|
281 |
-
if ($rules['equal_to']
|
282 |
$allowed_exts = "'".implode("', '", explode(",", $rules['equal_to']))."'";
|
283 |
|
284 |
// javascript will be added later
|
@@ -357,7 +361,7 @@ function cimy_extract_ExtraFields() {
|
|
357 |
|
358 |
echo "\t\t<td>";
|
359 |
|
360 |
-
if (($description
|
361 |
echo $description."<br />";
|
362 |
|
363 |
if (in_array($type, $cimy_uef_file_types)) {
|
@@ -366,35 +370,29 @@ function cimy_extract_ExtraFields() {
|
|
366 |
|
367 |
if ($type == "avatar") {
|
368 |
$user_email = $profileuser->user_email;
|
369 |
-
|
|
|
|
|
370 |
}
|
371 |
|
372 |
-
if ((in_array($type, $cimy_uef_file_types)) && ($value
|
373 |
-
global $cimy_uef_plugins_dir;
|
374 |
-
|
375 |
-
$blog_path = $cuef_upload_path;
|
376 |
$old_value = basename($old_value);
|
377 |
-
|
378 |
-
if (($cimy_uef_plugins_dir == "plugins") && (is_multisite())) {
|
379 |
-
global $blog_id;
|
380 |
-
|
381 |
-
$blog_path .= $blog_id."/";
|
382 |
-
}
|
383 |
-
|
384 |
$user_login = $profileuser->user_login;
|
385 |
|
386 |
if ($type == "picture") {
|
387 |
$value_thumb = cimy_get_thumb_path($value);
|
388 |
-
$
|
389 |
-
$
|
|
|
|
|
390 |
|
391 |
echo "\n\t\t";
|
392 |
if (is_file($file_thumb)) {
|
393 |
-
echo '<a target="_blank" href="'.$value.'"><img src="'.$value_thumb.'" alt="picture" /></a><br />';
|
394 |
echo "\n\t\t";
|
395 |
}
|
396 |
else if (is_file($file_on_server)) {
|
397 |
-
echo '<img src="'.$value.'" alt="picture" /><br />';
|
398 |
echo "\n\t\t";
|
399 |
}
|
400 |
}
|
@@ -418,7 +416,30 @@ function cimy_extract_ExtraFields() {
|
|
418 |
// echo '<input type="hidden" name="'.$input_name.'_oldfile" value="'.basename($value).'" />';
|
419 |
// echo "\n\t\t";
|
420 |
}
|
421 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
422 |
echo '<input type="checkbox" name="'.$input_name.'_del" value="1" style="width:auto; border:0; background:white;"'.$dis_delete_img.' />';
|
423 |
|
424 |
if ($type == "file") {
|
@@ -458,7 +479,7 @@ function cimy_extract_ExtraFields() {
|
|
458 |
else
|
459 |
echo $obj_value;
|
460 |
|
461 |
-
if (($description
|
462 |
if (($type == "textarea") || ($type == "textarea-rich"))
|
463 |
echo "<br />";
|
464 |
else
|
@@ -473,9 +494,14 @@ function cimy_extract_ExtraFields() {
|
|
473 |
|
474 |
echo "</table>";
|
475 |
|
476 |
-
if ($tiny_mce_objects
|
477 |
require_once($cuef_plugin_dir.'/cimy_uef_init_mce.php');
|
478 |
}
|
|
|
|
|
|
|
|
|
|
|
479 |
|
480 |
if ($upload_file_function)
|
481 |
wp_print_scripts("cimy_uef_upload_file");
|
@@ -519,6 +545,8 @@ function cimy_update_ExtraFields() {
|
|
519 |
$label = $thisField["LABEL"];
|
520 |
$rules = $thisField["RULES"];
|
521 |
$input_name = $fields_name_prefix.$wpdb->escape($name);
|
|
|
|
|
522 |
|
523 |
cimy_insert_ExtraFields_if_not_exist($get_user_id, $field_id);
|
524 |
|
@@ -616,9 +644,9 @@ function cimy_update_ExtraFields() {
|
|
616 |
else
|
617 |
$old_file = false;
|
618 |
|
619 |
-
$field_value = cimy_manage_upload($input_name, $user_login, $rules, $old_file, $delete_file, $type);
|
620 |
|
621 |
-
if (($field_value
|
622 |
if ($i > 0)
|
623 |
$field_ids.= ", ";
|
624 |
else
|
@@ -632,8 +660,13 @@ function cimy_update_ExtraFields() {
|
|
632 |
$query.= " WHEN ".$field_id." THEN ";
|
633 |
$query.= $value;
|
634 |
}
|
635 |
-
else
|
636 |
$prev_value = $value;
|
|
|
|
|
|
|
|
|
|
|
637 |
}
|
638 |
|
639 |
if ($type == 'checkbox') {
|
@@ -696,4 +729,4 @@ function cimy_update_ExtraFields() {
|
|
696 |
}
|
697 |
}
|
698 |
|
699 |
-
?>
|
50 |
|
51 |
$radio_checked = array();
|
52 |
$upload_file_function = false;
|
53 |
+
$crop_image_function = false;
|
54 |
$current_fieldset = -1;
|
55 |
$tiny_mce_objects = "";
|
56 |
|
75 |
$description = cimy_uef_sanitize_content($thisField['DESCRIPTION']);
|
76 |
$fieldset = $thisField['FIELDSET'];
|
77 |
$input_name = $fields_name_prefix.esc_attr($name);
|
78 |
+
$field_id_data = $input_name."_".$field_id."_data";
|
79 |
+
$advanced_options = cimy_uef_parse_advanced_options($rules["advanced_options"]);
|
80 |
|
81 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
82 |
// apply only for EXTRA FIELDS
|
278 |
|
279 |
case "avatar":
|
280 |
case "picture":
|
281 |
+
$crop_image_function = true;
|
282 |
case "file":
|
283 |
$allowed_exts = '';
|
284 |
if (isset($rules['equal_to']))
|
285 |
+
if (!empty($rules['equal_to']))
|
286 |
$allowed_exts = "'".implode("', '", explode(",", $rules['equal_to']))."'";
|
287 |
|
288 |
// javascript will be added later
|
361 |
|
362 |
echo "\t\t<td>";
|
363 |
|
364 |
+
if ((!empty($description)) && (($type == "picture") || ($type == "picture-url")))
|
365 |
echo $description."<br />";
|
366 |
|
367 |
if (in_array($type, $cimy_uef_file_types)) {
|
370 |
|
371 |
if ($type == "avatar") {
|
372 |
$user_email = $profileuser->user_email;
|
373 |
+
$img_avatar = get_avatar($user_email, $size = '128');
|
374 |
+
$img_avatar = str_replace("<img", "<img id='$field_id_data'", $img_avatar);
|
375 |
+
echo '<div id="profpic">'.$img_avatar."</div>\n\t\t";
|
376 |
}
|
377 |
|
378 |
+
if ((in_array($type, $cimy_uef_file_types)) && (!empty($value))) {
|
|
|
|
|
|
|
379 |
$old_value = basename($old_value);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
380 |
$user_login = $profileuser->user_login;
|
381 |
|
382 |
if ($type == "picture") {
|
383 |
$value_thumb = cimy_get_thumb_path($value);
|
384 |
+
$file_on_server = cimy_uef_get_dir_or_filename($user_login, $value, false);
|
385 |
+
$file_thumb = cimy_uef_get_dir_or_filename($user_login, $value, true);
|
386 |
+
if ((!empty($advanced_options["no-thumb"])) && (is_file($file_thumb)))
|
387 |
+
rename($file_thumb, $file_on_server);
|
388 |
|
389 |
echo "\n\t\t";
|
390 |
if (is_file($file_thumb)) {
|
391 |
+
echo '<a target="_blank" href="'.$value.'"><img id="'.$field_id_data.'" src="'.$value_thumb.'" alt="picture" /></a><br />';
|
392 |
echo "\n\t\t";
|
393 |
}
|
394 |
else if (is_file($file_on_server)) {
|
395 |
+
echo '<img id="'.$field_id_data.'" src="'.$value.'" alt="picture" /><br />';
|
396 |
echo "\n\t\t";
|
397 |
}
|
398 |
}
|
416 |
// echo '<input type="hidden" name="'.$input_name.'_oldfile" value="'.basename($value).'" />';
|
417 |
// echo "\n\t\t";
|
418 |
}
|
419 |
+
|
420 |
+
if ((($type == "picture") || ($type == "avatar")) && ((empty($rules["equal_to"])) || ($advanced_options["no-thumb"]))) {
|
421 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_x1\" id=\"".$field_id_data."_x1\" value=\"\" />";
|
422 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_y1\" id=\"".$field_id_data."_y1\" value=\"\" />";
|
423 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_x2\" id=\"".$field_id_data."_x2\" value=\"\" />";
|
424 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_y2\" id=\"".$field_id_data."_y2\" value=\"\" />";
|
425 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_w\" id=\"".$field_id_data."_w\" value=\"\" />";
|
426 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_h\" id=\"".$field_id_data."_h\" value=\"\" />";
|
427 |
+
// echo "<p class=\"submit\"><input type=\"submit\" name=\"".$field_id_data."_button\" class=\"button-primary\" value=\"".__("Edit Image")."\" /></p>";
|
428 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_button\" id=\"".$field_id_data."_button\" value=\"1\" />";
|
429 |
+
$imgarea_options = "handles: true, fadeSpeed: 200, onSelectChange: preview";
|
430 |
+
if ((isset($advanced_options["crop_x1"])) && (isset($advanced_options["crop_y1"])) && (isset($advanced_options["crop_x2"])) && (isset($advanced_options["crop_y2"]))) {
|
431 |
+
$imgarea_options.= ", x1: ".intval($advanced_options["crop_x1"]);
|
432 |
+
$imgarea_options.= ", y1: ".intval($advanced_options["crop_y1"]);
|
433 |
+
$imgarea_options.= ", x2: ".intval($advanced_options["crop_x2"]);
|
434 |
+
$imgarea_options.= ", y2: ".intval($advanced_options["crop_y2"]);
|
435 |
+
}
|
436 |
+
|
437 |
+
if (!empty($advanced_options["crop_ratio"]))
|
438 |
+
$imgarea_options.= ", aspectRatio: '".esc_js($advanced_options["crop_ratio"])."'";
|
439 |
+
else if ($type == "avatar")
|
440 |
+
$imgarea_options.= ", aspectRatio: '1:1'";
|
441 |
+
echo "<script type='text/javascript'>jQuery(document).ready(function () { jQuery('#".esc_js($field_id_data)."').imgAreaSelect({ ".$imgarea_options." }); });</script>";
|
442 |
+
}
|
443 |
echo '<input type="checkbox" name="'.$input_name.'_del" value="1" style="width:auto; border:0; background:white;"'.$dis_delete_img.' />';
|
444 |
|
445 |
if ($type == "file") {
|
479 |
else
|
480 |
echo $obj_value;
|
481 |
|
482 |
+
if ((!empty($description)) && ($type != "picture") && ($type != "picture-url")) {
|
483 |
if (($type == "textarea") || ($type == "textarea-rich"))
|
484 |
echo "<br />";
|
485 |
else
|
494 |
|
495 |
echo "</table>";
|
496 |
|
497 |
+
if (!empty($tiny_mce_objects)) {
|
498 |
require_once($cuef_plugin_dir.'/cimy_uef_init_mce.php');
|
499 |
}
|
500 |
+
if ($crop_image_function) {
|
501 |
+
wp_print_scripts('imgareaselect');
|
502 |
+
wp_print_styles('imgareaselect');
|
503 |
+
wp_print_scripts('cimy_uef_img_selection');
|
504 |
+
}
|
505 |
|
506 |
if ($upload_file_function)
|
507 |
wp_print_scripts("cimy_uef_upload_file");
|
545 |
$label = $thisField["LABEL"];
|
546 |
$rules = $thisField["RULES"];
|
547 |
$input_name = $fields_name_prefix.$wpdb->escape($name);
|
548 |
+
$field_id_data = $input_name."_".$field_id."_data";
|
549 |
+
$advanced_options = cimy_uef_parse_advanced_options($rules["advanced_options"]);
|
550 |
|
551 |
cimy_insert_ExtraFields_if_not_exist($get_user_id, $field_id);
|
552 |
|
644 |
else
|
645 |
$old_file = false;
|
646 |
|
647 |
+
$field_value = cimy_manage_upload($input_name, $user_login, $rules, $old_file, $delete_file, $type, (!empty($advanced_options["filename"])) ? $advanced_options["filename"] : "");
|
648 |
|
649 |
+
if ((!empty($field_value)) || ($delete_file)) {
|
650 |
if ($i > 0)
|
651 |
$field_ids.= ", ";
|
652 |
else
|
660 |
$query.= " WHEN ".$field_id." THEN ";
|
661 |
$query.= $value;
|
662 |
}
|
663 |
+
else {
|
664 |
$prev_value = $value;
|
665 |
+
|
666 |
+
$file_on_server = cimy_uef_get_dir_or_filename($user_login, $old_file, false);
|
667 |
+
if (($type == "picture") || ($type == "avatar"))
|
668 |
+
cimy_uef_crop_image($file_on_server, $field_id_data);
|
669 |
+
}
|
670 |
}
|
671 |
|
672 |
if ($type == 'checkbox') {
|
729 |
}
|
730 |
}
|
731 |
|
732 |
+
?>
|
cimy_uef_register.php
CHANGED
@@ -118,13 +118,14 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
|
|
118 |
}
|
119 |
|
120 |
foreach ($fields as $thisField) {
|
121 |
-
|
122 |
$type = $thisField["TYPE"];
|
123 |
$name = $thisField["NAME"];
|
124 |
$field_id = $thisField["ID"];
|
125 |
$label = $thisField["LABEL"];
|
126 |
$rules = $thisField["RULES"];
|
127 |
$input_name = $prefix.$wpdb->escape($name);
|
|
|
|
|
128 |
|
129 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
130 |
if ($rules['show_level'] == 'view_cimy_extra_fields')
|
@@ -163,7 +164,20 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
|
|
163 |
}
|
164 |
|
165 |
if (in_array($type, $cimy_uef_file_types)) {
|
166 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
}
|
168 |
else {
|
169 |
if ($type == "picture-url")
|
@@ -317,6 +331,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
317 |
$description = $thisField['DESCRIPTION'];
|
318 |
$input_name = $prefix.$wpdb->escape($name);
|
319 |
$unique_id = $prefix.$field_id;
|
|
|
320 |
|
321 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
322 |
if ($rules['show_level'] == 'view_cimy_extra_fields')
|
@@ -366,8 +381,15 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
366 |
$label = esc_html($ret['label']);
|
367 |
$html = $ret['html'];
|
368 |
}
|
369 |
-
|
370 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
371 |
// filesize in Byte transformed in KiloByte
|
372 |
$file_size = $_FILES[$input_name]['size'] / 1024;
|
373 |
$file_type = $_FILES[$input_name]['type'];
|
@@ -386,7 +408,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
386 |
}
|
387 |
|
388 |
// if the flag can be empty is NOT set OR the field is not empty then other check can be useful, otherwise skip all
|
389 |
-
if ((!$rules['can_be_empty']) || ($value
|
390 |
if (($i == 1) && ($input_name == ($prefix."PASSWORD2"))) {
|
391 |
if ($value != $_POST[$prefix."PASSWORD"])
|
392 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('does not match.', $cimy_uef_domain));
|
@@ -396,14 +418,14 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
396 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('hasn’t a correct email syntax.', $cimy_uef_domain));
|
397 |
}
|
398 |
|
399 |
-
if ((!$rules['can_be_empty']) && (in_array($type, $rule_canbeempty)) && ($value
|
400 |
$empty_error = true;
|
401 |
|
402 |
// IF 1. it's a file type
|
403 |
// AND 2. there is an old one uploaded
|
404 |
// AND 3. this old one is not gonna be deleted
|
405 |
// THEN do not throw the empty error.
|
406 |
-
if ((in_array($type, $cimy_uef_file_types)) && ($old_file
|
407 |
$empty_error = false;
|
408 |
|
409 |
if ($empty_error)
|
@@ -446,7 +468,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
446 |
|
447 |
// CHECK IF IT IS A REAL PICTURE
|
448 |
if (($type == "picture") || ($type == "avatar")) {
|
449 |
-
if ((stristr($file_type, "image/") === false) && ($value
|
450 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('should be an image.', $cimy_uef_domain));
|
451 |
}
|
452 |
}
|
@@ -537,6 +559,12 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
537 |
$errors->add("recaptcha_code", '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.__('Typed code is not correct.', $cimy_uef_domain));
|
538 |
}
|
539 |
|
|
|
|
|
|
|
|
|
|
|
|
|
540 |
cimy_switch_current_blog();
|
541 |
|
542 |
return $errors;
|
@@ -544,6 +572,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
544 |
|
545 |
// show_type == 0 - normal form
|
546 |
// show_type == 1 - search form, all fields are text, password fields are skipped
|
|
|
547 |
function cimy_registration_form($errors=null, $show_type=0) {
|
548 |
global $wpdb, $start_cimy_uef_comment, $end_cimy_uef_comment, $rule_maxlen_needed, $fields_name_prefix, $wp_fields_name_prefix, $cuef_plugin_dir, $cimy_uef_file_types, $cimy_uef_textarea_types, $user_level, $cimy_uef_domain;
|
549 |
|
@@ -566,18 +595,52 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
566 |
$input_class = "cimy_uef_input_27";
|
567 |
|
568 |
$options = cimy_get_options();
|
569 |
-
|
570 |
$tabindex = 21;
|
571 |
|
572 |
echo $start_cimy_uef_comment;
|
573 |
-
echo "\t";
|
574 |
// needed to apply default values only first time and not in case of errors
|
575 |
-
echo
|
576 |
-
|
|
|
|
|
|
|
|
|
|
|
577 |
$radio_checked = array();
|
578 |
|
579 |
$i = 1;
|
580 |
$upload_file_function = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
581 |
|
582 |
// do first the WP fields then the EXTRA fields
|
583 |
while ($i <= 2) {
|
@@ -599,11 +662,11 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
599 |
$tiny_mce_objects = "";
|
600 |
|
601 |
foreach ($fields as $thisField) {
|
602 |
-
|
603 |
$field_id = $thisField['ID'];
|
604 |
$name = $thisField['NAME'];
|
605 |
$rules = $thisField['RULES'];
|
606 |
$type = $thisField['TYPE'];
|
|
|
607 |
$label = cimy_uef_sanitize_content($thisField['LABEL']);
|
608 |
$description = cimy_uef_sanitize_content($thisField['DESCRIPTION']);
|
609 |
$fieldset = empty($thisField['FIELDSET']) ? 0 : $thisField['FIELDSET'];
|
@@ -611,6 +674,8 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
611 |
$post_input_name = $prefix.$wpdb->escape($name);
|
612 |
$maxlen = 0;
|
613 |
$unique_id = $prefix.$field_id;
|
|
|
|
|
614 |
|
615 |
// showing the search then there is no need to upload buttons
|
616 |
if ($show_type == 1) {
|
@@ -620,6 +685,9 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
620 |
if (($type == "avatar") || ($type == "picture") || ($type == "file"))
|
621 |
$type = "text";
|
622 |
}
|
|
|
|
|
|
|
623 |
|
624 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
625 |
if ($rules['show_level'] == 'view_cimy_extra_fields')
|
@@ -648,13 +716,13 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
648 |
continue;
|
649 |
|
650 |
if (isset($_POST[$post_input_name])) {
|
651 |
-
if ($type == "dropdown-multi")
|
652 |
$value = stripslashes(implode(",", $_POST[$post_input_name]));
|
653 |
else
|
654 |
$value = stripslashes($_POST[$post_input_name]);
|
655 |
}
|
656 |
else if (isset($_GET[$name])) {
|
657 |
-
if ($type == "dropdown-multi")
|
658 |
$value = stripslashes(implode(",", $_GET[$name]));
|
659 |
else
|
660 |
$value = stripslashes($_GET[$name]);
|
@@ -664,7 +732,6 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
664 |
$value = $thisField['VALUE'];
|
665 |
|
666 |
switch($type) {
|
667 |
-
|
668 |
case "radio":
|
669 |
if ($value == "YES")
|
670 |
$value = $field_id;
|
@@ -684,8 +751,11 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
684 |
}
|
685 |
else
|
686 |
$value = "";
|
687 |
-
|
688 |
-
$
|
|
|
|
|
|
|
689 |
|
690 |
if (($i != 1) && ($fieldset > $current_fieldset) && (isset($fieldset_titles[$fieldset]))) {
|
691 |
$current_fieldset = $fieldset;
|
@@ -694,7 +764,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
694 |
echo "\n\t<h2>".esc_html($fieldset_titles[$current_fieldset])."</h2>\n";
|
695 |
}
|
696 |
|
697 |
-
if (($description
|
698 |
echo "\t";
|
699 |
echo '<p id="'.$prefix.'p_desc_'.$field_id.'" class="desc"><br />'.$description.'</p>';
|
700 |
echo "\n";
|
@@ -842,6 +912,48 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
842 |
$obj_closing_tag = false;
|
843 |
break;
|
844 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
845 |
case "registration-date":
|
846 |
$obj_label = '';
|
847 |
$obj_class = '';
|
@@ -885,6 +997,41 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
885 |
|
886 |
if ($obj_closing_tag)
|
887 |
$form_object.= ">".$obj_value2."</".$obj_tag.">";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
888 |
else
|
889 |
$form_object.= " />";
|
890 |
|
@@ -900,7 +1047,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
900 |
// write to the html the form object built
|
901 |
echo $form_object;
|
902 |
|
903 |
-
if (($i == 1) && ($options['password_meter'])) {
|
904 |
if ($input_name == ($prefix."PASSWORD"))
|
905 |
$pass1_id = $unique_id;
|
906 |
|
@@ -922,16 +1069,27 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
922 |
|
923 |
$i++;
|
924 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
925 |
|
926 |
-
|
927 |
-
|
928 |
}
|
929 |
|
930 |
-
if ($
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
require_once($cuef_plugin_dir.'/cimy_uef_init_strength_meter.php');
|
935 |
}
|
936 |
|
937 |
if ($options['captcha'] == "securimage") {
|
@@ -981,4 +1139,51 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
981 |
echo $end_cimy_uef_comment;
|
982 |
}
|
983 |
|
984 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
}
|
119 |
|
120 |
foreach ($fields as $thisField) {
|
|
|
121 |
$type = $thisField["TYPE"];
|
122 |
$name = $thisField["NAME"];
|
123 |
$field_id = $thisField["ID"];
|
124 |
$label = $thisField["LABEL"];
|
125 |
$rules = $thisField["RULES"];
|
126 |
$input_name = $prefix.$wpdb->escape($name);
|
127 |
+
$field_id_data = $input_name."_".$field_id."_data";
|
128 |
+
$advanced_options = cimy_uef_parse_advanced_options($rules["advanced_options"]);
|
129 |
|
130 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
131 |
if ($rules['show_level'] == 'view_cimy_extra_fields')
|
164 |
}
|
165 |
|
166 |
if (in_array($type, $cimy_uef_file_types)) {
|
167 |
+
$user_login_sanitized = sanitize_user($_POST['user_login']);
|
168 |
+
if ((isset($_POST["register_confirmation"])) && ($_POST["register_confirmation"] == 2)) {
|
169 |
+
$temp_user_login = $_POST["temp_user_login"];
|
170 |
+
$temp_dir = cimy_uef_get_dir_or_filename($temp_user_login);
|
171 |
+
$final_dir = cimy_uef_get_dir_or_filename($user_login_sanitized);
|
172 |
+
rename($temp_dir, $final_dir);
|
173 |
+
$data = str_replace("/".$temp_user_login."/", "/".$user_login_sanitized."/", $data);
|
174 |
+
$file_on_server = cimy_uef_get_dir_or_filename($user_login_sanitized, $data, false);
|
175 |
+
|
176 |
+
if (($type == "picture") || ($type == "avatar"))
|
177 |
+
cimy_uef_crop_image($file_on_server, $field_id_data);
|
178 |
+
}
|
179 |
+
else
|
180 |
+
$data = cimy_manage_upload($input_name, $user_login_sanitized, $rules, false, false, $type, (!empty($advanced_options["filename"])) ? $advanced_options["filename"] : "");
|
181 |
}
|
182 |
else {
|
183 |
if ($type == "picture-url")
|
331 |
$description = $thisField['DESCRIPTION'];
|
332 |
$input_name = $prefix.$wpdb->escape($name);
|
333 |
$unique_id = $prefix.$field_id;
|
334 |
+
$field_id_data = $input_name."_".$field_id."_data";
|
335 |
|
336 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
337 |
if ($rules['show_level'] == 'view_cimy_extra_fields')
|
381 |
$label = esc_html($ret['label']);
|
382 |
$html = $ret['html'];
|
383 |
}
|
384 |
+
|
385 |
+
// confirmation page
|
386 |
+
if ((!empty($_POST["register_confirmation"])) && ($_POST["register_confirmation"] == 2)) {
|
387 |
+
$file_size = $_POST[$field_id_data."_size"];
|
388 |
+
$file_type = $_POST[$field_id_data."_type"];
|
389 |
+
$old_file = "";
|
390 |
+
$del_old_file = "";
|
391 |
+
}
|
392 |
+
else if (in_array($type, $cimy_uef_file_types)) {
|
393 |
// filesize in Byte transformed in KiloByte
|
394 |
$file_size = $_FILES[$input_name]['size'] / 1024;
|
395 |
$file_type = $_FILES[$input_name]['type'];
|
408 |
}
|
409 |
|
410 |
// if the flag can be empty is NOT set OR the field is not empty then other check can be useful, otherwise skip all
|
411 |
+
if ((!$rules['can_be_empty']) || (!empty($value))) {
|
412 |
if (($i == 1) && ($input_name == ($prefix."PASSWORD2"))) {
|
413 |
if ($value != $_POST[$prefix."PASSWORD"])
|
414 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('does not match.', $cimy_uef_domain));
|
418 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('hasn’t a correct email syntax.', $cimy_uef_domain));
|
419 |
}
|
420 |
|
421 |
+
if ((!$rules['can_be_empty']) && (in_array($type, $rule_canbeempty)) && (empty($value))) {
|
422 |
$empty_error = true;
|
423 |
|
424 |
// IF 1. it's a file type
|
425 |
// AND 2. there is an old one uploaded
|
426 |
// AND 3. this old one is not gonna be deleted
|
427 |
// THEN do not throw the empty error.
|
428 |
+
if ((in_array($type, $cimy_uef_file_types)) && (!empty($old_file)) && (empty($del_old_file)))
|
429 |
$empty_error = false;
|
430 |
|
431 |
if ($empty_error)
|
468 |
|
469 |
// CHECK IF IT IS A REAL PICTURE
|
470 |
if (($type == "picture") || ($type == "avatar")) {
|
471 |
+
if ((stristr($file_type, "image/") === false) && (!empty($value))) {
|
472 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('should be an image.', $cimy_uef_domain));
|
473 |
}
|
474 |
}
|
559 |
$errors->add("recaptcha_code", '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.__('Typed code is not correct.', $cimy_uef_domain));
|
560 |
}
|
561 |
|
562 |
+
if ($options['confirm_form']) {
|
563 |
+
if ((empty($errors->errors)) && (isset($_POST["register_confirmation"])) && ($_POST["register_confirmation"] == 1)) {
|
564 |
+
$errors->add('register_confirmation', 'true');
|
565 |
+
}
|
566 |
+
}
|
567 |
+
|
568 |
cimy_switch_current_blog();
|
569 |
|
570 |
return $errors;
|
572 |
|
573 |
// show_type == 0 - normal form
|
574 |
// show_type == 1 - search form, all fields are text, password fields are skipped
|
575 |
+
// show_type == 2 - confirmation form, all fields are plain text, images can be cropped
|
576 |
function cimy_registration_form($errors=null, $show_type=0) {
|
577 |
global $wpdb, $start_cimy_uef_comment, $end_cimy_uef_comment, $rule_maxlen_needed, $fields_name_prefix, $wp_fields_name_prefix, $cuef_plugin_dir, $cimy_uef_file_types, $cimy_uef_textarea_types, $user_level, $cimy_uef_domain;
|
578 |
|
595 |
$input_class = "cimy_uef_input_27";
|
596 |
|
597 |
$options = cimy_get_options();
|
|
|
598 |
$tabindex = 21;
|
599 |
|
600 |
echo $start_cimy_uef_comment;
|
|
|
601 |
// needed to apply default values only first time and not in case of errors
|
602 |
+
echo "\t<input type=\"hidden\" name=\"cimy_post\" value=\"1\" />\n";
|
603 |
+
if ($options['confirm_form']) {
|
604 |
+
if ($show_type == 0)
|
605 |
+
echo "\t<input type=\"hidden\" name=\"register_confirmation\" value=\"1\" />\n";
|
606 |
+
else if ($show_type == 2)
|
607 |
+
echo "\t<input type=\"hidden\" name=\"register_confirmation\" value=\"2\" />\n";
|
608 |
+
}
|
609 |
$radio_checked = array();
|
610 |
|
611 |
$i = 1;
|
612 |
$upload_file_function = false;
|
613 |
+
$is_jquery_added = false;
|
614 |
+
$crop_image_function = false;
|
615 |
+
|
616 |
+
// confirmation page, all fields are plain text + hidden fields to carry over values
|
617 |
+
if ($show_type == 2) {
|
618 |
+
$upload_dir = cimy_uef_get_dir_or_filename("");
|
619 |
+
$dirs = glob($upload_dir.".cimytemp_*.tmp");
|
620 |
+
if (is_array($dirs)) {
|
621 |
+
foreach ($dirs as $dir) {
|
622 |
+
$diff = current_time('timestamp', true) - (filemtime($dir));
|
623 |
+
// If older than two days delete!
|
624 |
+
if ($diff > 172800) {
|
625 |
+
cimy_rfr($dir."/", "*");
|
626 |
+
if (is_dir($dir))
|
627 |
+
rmdir($dir);
|
628 |
+
}
|
629 |
+
}
|
630 |
+
}
|
631 |
+
|
632 |
+
$temp_user_login = ".cimytemp_".sanitize_user($_POST['user_login']).'_'.rand().'.tmp';
|
633 |
+
?>
|
634 |
+
<input type="hidden" name="temp_user_login" value="<?php echo esc_attr($temp_user_login); ?>" />
|
635 |
+
<p id="user_login_p">
|
636 |
+
<label for="user_login"><?php _e("Username"); ?> </label><input type="hidden" name="user_login" id="user_login" value="<?php echo esc_attr($_POST["user_login"]); ?>" /><?php echo esc_html($_POST["user_login"]); ?>
|
637 |
+
</p>
|
638 |
+
<p id="user_email_p">
|
639 |
+
<label for="user_email"><?php _e("E-mail"); ?> </label><input type="hidden" name="user_email" id="user_email" value="<?php echo esc_attr($_POST["user_email"]); ?>" /><?php echo esc_html($_POST["user_email"]); ?>
|
640 |
+
</p>
|
641 |
+
<br />
|
642 |
+
<?php
|
643 |
+
}
|
644 |
|
645 |
// do first the WP fields then the EXTRA fields
|
646 |
while ($i <= 2) {
|
662 |
$tiny_mce_objects = "";
|
663 |
|
664 |
foreach ($fields as $thisField) {
|
|
|
665 |
$field_id = $thisField['ID'];
|
666 |
$name = $thisField['NAME'];
|
667 |
$rules = $thisField['RULES'];
|
668 |
$type = $thisField['TYPE'];
|
669 |
+
$old_type = $type;
|
670 |
$label = cimy_uef_sanitize_content($thisField['LABEL']);
|
671 |
$description = cimy_uef_sanitize_content($thisField['DESCRIPTION']);
|
672 |
$fieldset = empty($thisField['FIELDSET']) ? 0 : $thisField['FIELDSET'];
|
674 |
$post_input_name = $prefix.$wpdb->escape($name);
|
675 |
$maxlen = 0;
|
676 |
$unique_id = $prefix.$field_id;
|
677 |
+
$field_id_data = $input_name."_".$field_id."_data";
|
678 |
+
$advanced_options = cimy_uef_parse_advanced_options($rules["advanced_options"]);
|
679 |
|
680 |
// showing the search then there is no need to upload buttons
|
681 |
if ($show_type == 1) {
|
685 |
if (($type == "avatar") || ($type == "picture") || ($type == "file"))
|
686 |
$type = "text";
|
687 |
}
|
688 |
+
else if ($show_type == 2) {
|
689 |
+
$type = "hidden";
|
690 |
+
}
|
691 |
|
692 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
693 |
if ($rules['show_level'] == 'view_cimy_extra_fields')
|
716 |
continue;
|
717 |
|
718 |
if (isset($_POST[$post_input_name])) {
|
719 |
+
if (($type == "dropdown-multi") || ($old_type == "dropdown-multi"))
|
720 |
$value = stripslashes(implode(",", $_POST[$post_input_name]));
|
721 |
else
|
722 |
$value = stripslashes($_POST[$post_input_name]);
|
723 |
}
|
724 |
else if (isset($_GET[$name])) {
|
725 |
+
if (($type == "dropdown-multi") || ($old_type == "dropdown-multi"))
|
726 |
$value = stripslashes(implode(",", $_GET[$name]));
|
727 |
else
|
728 |
$value = stripslashes($_GET[$name]);
|
732 |
$value = $thisField['VALUE'];
|
733 |
|
734 |
switch($type) {
|
|
|
735 |
case "radio":
|
736 |
if ($value == "YES")
|
737 |
$value = $field_id;
|
751 |
}
|
752 |
else
|
753 |
$value = "";
|
754 |
+
|
755 |
+
if ($show_type == 2)
|
756 |
+
$value = cimy_uef_sanitize_content($value);
|
757 |
+
else
|
758 |
+
$value = esc_attr($value);
|
759 |
|
760 |
if (($i != 1) && ($fieldset > $current_fieldset) && (isset($fieldset_titles[$fieldset]))) {
|
761 |
$current_fieldset = $fieldset;
|
764 |
echo "\n\t<h2>".esc_html($fieldset_titles[$current_fieldset])."</h2>\n";
|
765 |
}
|
766 |
|
767 |
+
if ((!empty($description)) && ($type != "registration-date")) {
|
768 |
echo "\t";
|
769 |
echo '<p id="'.$prefix.'p_desc_'.$field_id.'" class="desc"><br />'.$description.'</p>';
|
770 |
echo "\n";
|
912 |
$obj_closing_tag = false;
|
913 |
break;
|
914 |
|
915 |
+
case "hidden":
|
916 |
+
$obj_label = "";
|
917 |
+
$obj_value2 = "";
|
918 |
+
switch ($old_type) {
|
919 |
+
case 'checkbox':
|
920 |
+
$value == 1 ? $obj_value2 = __("YES", $cimy_uef_domain) : $obj_value2 = __("NO", $cimy_uef_domain);
|
921 |
+
break;
|
922 |
+
case 'radio':
|
923 |
+
intval($value) == intval($field_id) ? $obj_value2 = __("YES", $cimy_uef_domain) : $obj_value2 = __("NO", $cimy_uef_domain);
|
924 |
+
break;
|
925 |
+
case 'dropdown':
|
926 |
+
case 'dropdown-multi':
|
927 |
+
$ret = cimy_dropDownOptions($label, $value);
|
928 |
+
$label = $ret['label'];
|
929 |
+
break;
|
930 |
+
case 'picture':
|
931 |
+
case 'avatar':
|
932 |
+
case 'file':
|
933 |
+
$value = cimy_manage_upload($input_name, $temp_user_login, $rules, false, false, $type, (!empty($advanced_options["filename"])) ? $advanced_options["filename"] : "");
|
934 |
+
$file_on_server = cimy_uef_get_dir_or_filename($temp_user_login, $value, false);
|
935 |
+
$file_thumb = cimy_uef_get_dir_or_filename($temp_user_login, $value, true);
|
936 |
+
if (($advanced_options["no-thumb"]) && (is_file($file_thumb)))
|
937 |
+
rename($file_thumb, $file_on_server);
|
938 |
+
|
939 |
+
// yea little trick
|
940 |
+
$obj_value2 = " ";
|
941 |
+
break;
|
942 |
+
}
|
943 |
+
if ($old_type != "password") {
|
944 |
+
$obj_label = '<label for="'.$unique_id.'">'.$label.' </label>';
|
945 |
+
if (empty($obj_value2))
|
946 |
+
$obj_value2 = $value;
|
947 |
+
}
|
948 |
+
$obj_class = '';
|
949 |
+
$obj_name = ' name="'.$input_name.'"';
|
950 |
+
$obj_type = ' type="hidden"';
|
951 |
+
$obj_value = ' value="'.$value.'"';
|
952 |
+
$obj_checked = "";
|
953 |
+
$obj_tag = "input";
|
954 |
+
$obj_closing_tag = false;
|
955 |
+
break;
|
956 |
+
|
957 |
case "registration-date":
|
958 |
$obj_label = '';
|
959 |
$obj_class = '';
|
997 |
|
998 |
if ($obj_closing_tag)
|
999 |
$form_object.= ">".$obj_value2."</".$obj_tag.">";
|
1000 |
+
else if ($type == "hidden") {
|
1001 |
+
$form_object.= " />".$obj_value2;
|
1002 |
+
if (in_array($old_type, $cimy_uef_file_types)) {
|
1003 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_size\" id=\"".$field_id_data."_size\" value=\"".strval($_FILES[$input_name]['size'] / 1024)."\" />";
|
1004 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_type\" id=\"".$field_id_data."_type\" value=\"".strval($_FILES[$input_name]['type'])."\" />";
|
1005 |
+
}
|
1006 |
+
if (($old_type == "picture") || ($old_type == "avatar")) {
|
1007 |
+
if (!$is_jquery_added) {
|
1008 |
+
wp_print_scripts("jquery");
|
1009 |
+
$is_jquery_added = true;
|
1010 |
+
}
|
1011 |
+
$crop_image_function = true;
|
1012 |
+
echo '<img id="'.$field_id_data.'" src="'.$value.'" alt="picture" /><br />';
|
1013 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_button\" id=\"".$field_id_data."_button\" value=\"1\" />";
|
1014 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_x1\" id=\"".$field_id_data."_x1\" value=\"\" />";
|
1015 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_y1\" id=\"".$field_id_data."_y1\" value=\"\" />";
|
1016 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_x2\" id=\"".$field_id_data."_x2\" value=\"\" />";
|
1017 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_y2\" id=\"".$field_id_data."_y2\" value=\"\" />";
|
1018 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_w\" id=\"".$field_id_data."_w\" value=\"\" />";
|
1019 |
+
echo "<input type=\"hidden\" name=\"".$field_id_data."_h\" id=\"".$field_id_data."_h\" value=\"\" />";
|
1020 |
+
$imgarea_options = "handles: true, fadeSpeed: 200, onSelectChange: preview";
|
1021 |
+
if ((isset($advanced_options["crop_x1"])) && (isset($advanced_options["crop_y1"])) && (isset($advanced_options["crop_x2"])) && (isset($advanced_options["crop_y2"]))) {
|
1022 |
+
$imgarea_options.= ", x1: ".intval($advanced_options["crop_x1"]);
|
1023 |
+
$imgarea_options.= ", y1: ".intval($advanced_options["crop_y1"]);
|
1024 |
+
$imgarea_options.= ", x2: ".intval($advanced_options["crop_x2"]);
|
1025 |
+
$imgarea_options.= ", y2: ".intval($advanced_options["crop_y2"]);
|
1026 |
+
}
|
1027 |
+
if (!empty($advanced_options["crop_ratio"]))
|
1028 |
+
$imgarea_options.= ", aspectRatio: '".esc_js($advanced_options["crop_ratio"])."'";
|
1029 |
+
else if ($type == "avatar")
|
1030 |
+
$imgarea_options.= ", aspectRatio: '1:1'";
|
1031 |
+
echo "<script type='text/javascript'>jQuery(document).ready(function () { jQuery('#".esc_js($field_id_data)."').imgAreaSelect({ ".$imgarea_options." }); });</script>";
|
1032 |
+
}
|
1033 |
+
|
1034 |
+
}
|
1035 |
else
|
1036 |
$form_object.= " />";
|
1037 |
|
1047 |
// write to the html the form object built
|
1048 |
echo $form_object;
|
1049 |
|
1050 |
+
if (($show_type == 0) && ($i == 1) && ($options['password_meter'])) {
|
1051 |
if ($input_name == ($prefix."PASSWORD"))
|
1052 |
$pass1_id = $unique_id;
|
1053 |
|
1069 |
|
1070 |
$i++;
|
1071 |
}
|
1072 |
+
echo "\t<br />";
|
1073 |
+
|
1074 |
+
if ($show_type == 0) {
|
1075 |
+
if (!empty($tiny_mce_objects)) {
|
1076 |
+
require_once($cuef_plugin_dir.'/cimy_uef_init_mce.php');
|
1077 |
+
}
|
1078 |
+
|
1079 |
+
if ($options['password_meter']) {
|
1080 |
+
if (!$is_jquery_added) {
|
1081 |
+
wp_print_scripts("jquery");
|
1082 |
+
$is_jquery_added = true;
|
1083 |
+
}
|
1084 |
|
1085 |
+
require_once($cuef_plugin_dir.'/cimy_uef_init_strength_meter.php');
|
1086 |
+
}
|
1087 |
}
|
1088 |
|
1089 |
+
if ($crop_image_function) {
|
1090 |
+
wp_print_scripts('imgareaselect');
|
1091 |
+
wp_print_styles('imgareaselect');
|
1092 |
+
wp_print_scripts('cimy_uef_img_selection');
|
|
|
1093 |
}
|
1094 |
|
1095 |
if ($options['captcha'] == "securimage") {
|
1139 |
echo $end_cimy_uef_comment;
|
1140 |
}
|
1141 |
|
1142 |
+
function cimy_confirmation_form() {
|
1143 |
+
$confirmation = false;
|
1144 |
+
$http_post = ('POST' == $_SERVER['REQUEST_METHOD']);
|
1145 |
+
$user_login = '';
|
1146 |
+
$user_email = '';
|
1147 |
+
|
1148 |
+
if ($http_post) {
|
1149 |
+
$user_login = $_POST['user_login'];
|
1150 |
+
$user_email = $_POST['user_email'];
|
1151 |
+
$errors = register_new_user($user_login, $user_email);
|
1152 |
+
|
1153 |
+
if (!is_wp_error($errors)) {
|
1154 |
+
$redirect_to = !empty( $_POST['redirect_to'] ) ? $_POST['redirect_to'] : 'wp-login.php?checkemail=registered';
|
1155 |
+
wp_safe_redirect( $redirect_to );
|
1156 |
+
exit();
|
1157 |
+
}
|
1158 |
+
else if ((count($errors->errors) == 1) && (isset($errors->errors["register_confirmation"]))) {
|
1159 |
+
$confirmation = true;
|
1160 |
+
}
|
1161 |
+
}
|
1162 |
+
if ($confirmation) {
|
1163 |
+
global $cimy_uef_domain;
|
1164 |
+
$redirect_to = apply_filters( 'registration_redirect', !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '' );
|
1165 |
+
$message = new WP_Error();
|
1166 |
+
$message->add('confirmation', __('Confirm your registration', $cimy_uef_domain), 'message');
|
1167 |
+
|
1168 |
+
login_header(__("Confirm your registration", $cimy_uef_domain), "", $message);
|
1169 |
+
?>
|
1170 |
+
<form name="registerform" id="registerform" action="<?php echo site_url('wp-login.php?action=register', 'login_post') ?>" method="post">
|
1171 |
+
<?php
|
1172 |
+
cimy_registration_form(null, 2);
|
1173 |
+
?>
|
1174 |
+
<p id="reg_passmail"><?php _e('A password will be e-mailed to you.') ?></p>
|
1175 |
+
<br class="clear" />
|
1176 |
+
<input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
|
1177 |
+
<p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="<?php esc_attr_e('Register'); ?>" tabindex="100" /></p>
|
1178 |
+
</form>
|
1179 |
+
|
1180 |
+
<p id="nav">
|
1181 |
+
<a href="javascript: history.go(-1)"><?php _e('← Back', $cimy_uef_domain) ?></a>
|
1182 |
+
</p>
|
1183 |
+
<?php
|
1184 |
+
login_footer("");
|
1185 |
+
exit(0);
|
1186 |
+
}
|
1187 |
+
}
|
1188 |
+
|
1189 |
+
?>
|
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 |
Plugin Description: Add some useful fields to registration and user's info
|
6 |
-
Version: 2.0
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
*/
|
@@ -170,6 +170,7 @@ $cuef_js_webpath = plugins_url($cimy_uef_plugins_dirprefix."js", __FILE__);
|
|
170 |
$cuef_securimage_webpath = plugins_url($cimy_uef_plugins_dirprefix."securimage", __FILE__);
|
171 |
|
172 |
wp_register_script("cimy_uef_upload_file", $cuef_js_webpath."/upload_file.js", false, false);
|
|
|
173 |
wp_register_style("cimy_uef_register", $cuef_css_webpath."/cimy_uef_register.css", false, false);
|
174 |
|
175 |
function cimy_uef_admin_init() {
|
@@ -189,7 +190,7 @@ require_once($cuef_plugin_dir.'/cimy_uef_options.php');
|
|
189 |
require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
|
190 |
|
191 |
$cimy_uef_name = "Cimy User Extra Fields";
|
192 |
-
$cimy_uef_version = "2.0
|
193 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
194 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
195 |
|
@@ -528,6 +529,9 @@ else {
|
|
528 |
// add custom login/registration logo
|
529 |
add_action('login_head', 'cimy_change_login_registration_logo');
|
530 |
|
|
|
|
|
|
|
531 |
// add filter for email activation
|
532 |
add_filter('login_message', 'cimy_uef_activate');
|
533 |
|
@@ -620,7 +624,7 @@ function cimy_uef_avatar_filter($avatar, $id_or_email, $size, $default, $alt="")
|
|
620 |
if (!isset($field_id))
|
621 |
return $avatar;
|
622 |
|
623 |
-
if ($overwrite_default
|
624 |
$overwrite_default = "<img alt='{$safe_alt}' src='{$overwrite_default}' class='avatar avatar-{$size} photo avatar-default' height='{$size}' width='{$size}' />";
|
625 |
|
626 |
$email = '';
|
@@ -765,7 +769,7 @@ function cimy_admin_menu_custom() {
|
|
765 |
add_action('admin_print_scripts-'.$aue_page, 'cimy_uef_admin_ajax_edit');
|
766 |
}
|
767 |
|
768 |
-
function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $delete_file=false, $type="") {
|
769 |
global $cuef_upload_path, $cuef_upload_webpath, $cuef_plugin_dir, $cimy_uef_plugins_dir;
|
770 |
|
771 |
$type_path = "";
|
@@ -800,7 +804,10 @@ function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $
|
|
800 |
$user_path = $blog_path;
|
801 |
$file_path = $blog_path.$type_path."/";
|
802 |
}
|
803 |
-
|
|
|
|
|
|
|
804 |
|
805 |
// protect from site traversing
|
806 |
$file_name = str_replace('../', '', $file_name);
|
@@ -887,8 +894,8 @@ function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $
|
|
887 |
if ($file_size > (intval($rules['max_length'])))
|
888 |
$file_error = 1;
|
889 |
|
890 |
-
// if there are no errors and filename is empty
|
891 |
-
if (($file_error == 0) && ($file_name
|
892 |
if (move_uploaded_file($file_tmp_name, $file_full_path)) {
|
893 |
// change file permissions for broken servers
|
894 |
if (defined("FS_CHMOD_FILE"))
|
@@ -927,7 +934,7 @@ function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $
|
|
927 |
}
|
928 |
else
|
929 |
$data = "";
|
930 |
-
|
931 |
return $data;
|
932 |
}
|
933 |
|
3 |
Plugin Name: Cimy User Extra Fields
|
4 |
Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Plugin Description: Add some useful fields to registration and user's info
|
6 |
+
Version: 2.1.0
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
*/
|
170 |
$cuef_securimage_webpath = plugins_url($cimy_uef_plugins_dirprefix."securimage", __FILE__);
|
171 |
|
172 |
wp_register_script("cimy_uef_upload_file", $cuef_js_webpath."/upload_file.js", false, false);
|
173 |
+
wp_register_script("cimy_uef_img_selection", $cuef_js_webpath."/img_selection.js", false, false);
|
174 |
wp_register_style("cimy_uef_register", $cuef_css_webpath."/cimy_uef_register.css", false, false);
|
175 |
|
176 |
function cimy_uef_admin_init() {
|
190 |
require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
|
191 |
|
192 |
$cimy_uef_name = "Cimy User Extra Fields";
|
193 |
+
$cimy_uef_version = "2.1.0";
|
194 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
195 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
196 |
|
529 |
// add custom login/registration logo
|
530 |
add_action('login_head', 'cimy_change_login_registration_logo');
|
531 |
|
532 |
+
// add confirmation form
|
533 |
+
add_action('login_form_register', 'cimy_confirmation_form');
|
534 |
+
|
535 |
// add filter for email activation
|
536 |
add_filter('login_message', 'cimy_uef_activate');
|
537 |
|
624 |
if (!isset($field_id))
|
625 |
return $avatar;
|
626 |
|
627 |
+
if (!empty($overwrite_default))
|
628 |
$overwrite_default = "<img alt='{$safe_alt}' src='{$overwrite_default}' class='avatar avatar-{$size} photo avatar-default' height='{$size}' width='{$size}' />";
|
629 |
|
630 |
$email = '';
|
769 |
add_action('admin_print_scripts-'.$aue_page, 'cimy_uef_admin_ajax_edit');
|
770 |
}
|
771 |
|
772 |
+
function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $delete_file=false, $type="", $new_filename="") {
|
773 |
global $cuef_upload_path, $cuef_upload_webpath, $cuef_plugin_dir, $cimy_uef_plugins_dir;
|
774 |
|
775 |
$type_path = "";
|
804 |
$user_path = $blog_path;
|
805 |
$file_path = $blog_path.$type_path."/";
|
806 |
}
|
807 |
+
if (!empty($new_filename))
|
808 |
+
$file_name = $new_filename;
|
809 |
+
else
|
810 |
+
$file_name = $_FILES[$input_name]['name'];
|
811 |
|
812 |
// protect from site traversing
|
813 |
$file_name = str_replace('../', '', $file_name);
|
894 |
if ($file_size > (intval($rules['max_length'])))
|
895 |
$file_error = 1;
|
896 |
|
897 |
+
// if there are no errors and filename is NOT empty
|
898 |
+
if (($file_error == 0) && (!empty($file_name))) {
|
899 |
if (move_uploaded_file($file_tmp_name, $file_full_path)) {
|
900 |
// change file permissions for broken servers
|
901 |
if (defined("FS_CHMOD_FILE"))
|
934 |
}
|
935 |
else
|
936 |
$data = "";
|
937 |
+
|
938 |
return $data;
|
939 |
}
|
940 |
|
js/img_selection.js
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
function preview(img, selection) {
|
2 |
+
if (!selection.width || !selection.height)
|
3 |
+
return;
|
4 |
+
|
5 |
+
var scaleX = 100 / selection.width;
|
6 |
+
var scaleY = 100 / selection.height;
|
7 |
+
|
8 |
+
jQuery('#preview img').css({
|
9 |
+
width: Math.round(scaleX * 300),
|
10 |
+
height: Math.round(scaleY * 300),
|
11 |
+
marginLeft: -Math.round(scaleX * selection.x1),
|
12 |
+
marginTop: -Math.round(scaleY * selection.y1)
|
13 |
+
});
|
14 |
+
|
15 |
+
jQuery('#'+img.id+'_x1').val(selection.x1);
|
16 |
+
jQuery('#'+img.id+'_y1').val(selection.y1);
|
17 |
+
jQuery('#'+img.id+'_x2').val(selection.x2);
|
18 |
+
jQuery('#'+img.id+'_y2').val(selection.y2);
|
19 |
+
jQuery('#'+img.id+'_w').val(selection.width);
|
20 |
+
jQuery('#'+img.id+'_h').val(selection.height);
|
21 |
+
}
|
langs/cimy_uef-bg_BG.mo
CHANGED
Binary file
|
langs/cimy_uef-bg_BG.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,116 +16,145 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "ГРЕШКА"
|
36 |
|
37 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "няма правилен email синтаксис."
|
44 |
|
45 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "не може да е празно."
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "не е правилно"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
55 |
msgid "YES"
|
56 |
msgstr "ДА"
|
57 |
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
59 |
msgid "NO"
|
60 |
msgstr "НЕ"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
msgid "should be"
|
64 |
msgstr "трябва да е"
|
65 |
|
66 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
67 |
msgid "should be an image."
|
68 |
msgstr "трябва да е снимка."
|
69 |
|
70 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "не може да е с по-малък размер от"
|
73 |
|
74 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "не може да има по-малка дължина от"
|
77 |
|
78 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "не може да има размер различен от"
|
81 |
|
82 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "не може да има дължина различна от"
|
85 |
|
86 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "не може да има размер по-голям от"
|
89 |
|
90 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "не може да има дължина по-голяма от"
|
93 |
|
94 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
95 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Моля качете снимка с някое от тези разширения"
|
104 |
|
105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Моля качете снимка с някое от тези разширения"
|
110 |
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
113 |
msgid "Strength indicator"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
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 ! \" ? $ % ^ & )."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
121 |
#, fuzzy
|
122 |
msgid "Change image"
|
123 |
msgstr "Смени реда"
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
126 |
msgid "Insert the code:"
|
127 |
msgstr ""
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
130 |
#, fuzzy
|
131 |
msgid "no fieldset"
|
@@ -135,342 +164,358 @@ msgstr "Опции по колекция"
|
|
135 |
msgid "All"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
139 |
msgid "WordPress Fields table emptied"
|
140 |
msgstr "Таблицата с WordPress полета е изпразнена"
|
141 |
|
142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
143 |
msgid "WordPress Fields table deleted"
|
144 |
msgstr "Таблицата с WordPress полета е изтрита"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
147 |
msgid "Extra Fields table emptied"
|
148 |
msgstr "Таблицата с допълнителни полета е изпразнена"
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
151 |
msgid "Extra Fields table deleted"
|
152 |
msgstr "Таблицата с допълнителни полета е изтрита"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
155 |
msgid "Users Data table emptied"
|
156 |
msgstr "Таблицата с потребителски данни е изпразнена"
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
159 |
msgid "Users Data table deleted"
|
160 |
msgstr "Таблицата с потребителски данни е изтрита"
|
161 |
|
162 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
163 |
msgid "Options set to default values"
|
164 |
msgstr "Вариантите са сменени по подразбиране"
|
165 |
|
166 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
167 |
msgid "Options deleted"
|
168 |
msgstr "Вариантите са изтрити"
|
169 |
|
170 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
171 |
msgid "Options changed"
|
172 |
msgstr "Вариантите са променени"
|
173 |
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
175 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
180 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
181 |
msgid "Options"
|
182 |
msgstr "Настройки"
|
183 |
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
185 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
186 |
msgid "Add a new Field"
|
187 |
msgstr "Добави друго поле"
|
188 |
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
190 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
191 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
195 |
msgid "Extra Fields"
|
196 |
msgstr "Допълнителни полета"
|
197 |
|
198 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
199 |
msgid "Support the Cimy Project"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
203 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
207 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
208 |
msgid "SUCCESSFUL"
|
209 |
msgstr "УСПЕХ"
|
210 |
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
213 |
msgid "Save Changes"
|
214 |
msgstr "Запази промените"
|
215 |
|
216 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
217 |
msgid "General"
|
218 |
msgstr "Общи"
|
219 |
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
221 |
msgid "installed is"
|
222 |
msgstr "инсталирано е"
|
223 |
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
225 |
msgid "OPTIONS DELETED!"
|
226 |
msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
230 |
msgid "Fix the problem"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
234 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
235 |
msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
|
236 |
|
237 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
238 |
msgid "Picture/Avatar upload"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
242 |
msgid "is created and writable"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
246 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
250 |
#, fuzzy
|
251 |
msgid "Show all fields in the welcome email"
|
252 |
msgstr "Покажи полето при регистрация"
|
253 |
|
254 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
255 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
259 |
msgid "Enable email confirmation"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
263 |
msgid "user that registers should confirm its email address via a link click"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
267 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
msgid "Redirect to the source"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
275 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
279 |
msgid "No captcha"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
283 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
287 |
msgid "Public KEY"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
291 |
msgid "Private KEY"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
295 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
299 |
msgid "This captcha is probably weaker, but is easier for users"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
303 |
#, php-format
|
304 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
308 |
msgid "Change login/registration page logo"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
313 |
#, fuzzy
|
314 |
msgid "Delete the picture"
|
315 |
msgstr "Изтрий поле"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
318 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
322 |
msgid "Database"
|
323 |
msgstr "База данни"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
327 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
328 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
329 |
msgid "select action"
|
330 |
msgstr "избери действие"
|
331 |
|
332 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
333 |
msgid "Default values"
|
334 |
msgstr "Стойност по подразбиране"
|
335 |
|
336 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
339 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
340 |
msgid "Delete"
|
341 |
msgstr "Изтрий"
|
342 |
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
344 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
347 |
msgid "NOT PRESENT"
|
348 |
msgstr "НЕ СЪЩЕСТВУВА"
|
349 |
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
351 |
msgid "WordPress Fields table"
|
352 |
msgstr "Таблица с WordPress полета"
|
353 |
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
357 |
msgid "Empty"
|
358 |
msgstr "Празно"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
361 |
msgid "Extra Fields table"
|
362 |
msgstr "Таблица с допълнителни полета"
|
363 |
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
365 |
msgid "Users Data table"
|
366 |
msgstr "Таблица с потребителски данни"
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
369 |
msgid "all data inserted by users in all and only extra fields"
|
370 |
msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
373 |
msgid "Force tables creation"
|
374 |
msgstr "Задължително създаване на таблица"
|
375 |
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
377 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
381 |
msgid "User Profile"
|
382 |
msgstr "Потребителски профил"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
385 |
#, fuzzy
|
386 |
msgid "Extra Fields section title"
|
387 |
msgstr "Таблица с допълнителни полета"
|
388 |
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
390 |
msgid "Fieldset's titles, separates with comma"
|
391 |
msgstr "Заглавията на колекция разделени със запетайка"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
394 |
msgid "example: title1,title2,title3"
|
395 |
msgstr "пример: заглавие1,заглавие2,заглавие3"
|
396 |
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
398 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
402 |
msgid "Authors & Users Extended"
|
403 |
msgstr "Автори & Потребители с разширения"
|
404 |
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
406 |
msgid "Hide username field"
|
407 |
msgstr "Скрий полето за потребителско име"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
410 |
msgid "Hide name field"
|
411 |
msgstr "Скрий полето за име"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
414 |
msgid "Hide email field"
|
415 |
msgstr "Скрий полето за email"
|
416 |
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
418 |
msgid "Hide role field"
|
419 |
msgstr "Скрий полето за роля"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
422 |
msgid "Hide website field"
|
423 |
msgstr "Скрий полето за интернет сайт"
|
424 |
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
426 |
msgid "Hide n. posts field"
|
427 |
msgstr "Скрий полето за брой постове"
|
428 |
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
430 |
msgid "WordPress hidden fields"
|
431 |
msgstr "Скрити полета на WordPress"
|
432 |
|
433 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
434 |
msgid "Show password"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
438 |
msgid "Show confirmation password"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
442 |
msgid "Show password strength meter"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
446 |
msgid "Show first name"
|
447 |
msgstr "Покажи първото име"
|
448 |
|
449 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
450 |
msgid "Show last name"
|
451 |
msgstr "Покажи второто име"
|
452 |
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
454 |
msgid "Show nickname"
|
455 |
msgstr "Покажи потребителското име"
|
456 |
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
458 |
msgid "Show website"
|
459 |
msgstr "Покажи интернет сайта"
|
460 |
|
461 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
462 |
msgid "Show AIM"
|
463 |
msgstr "Покажи AIM"
|
464 |
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
466 |
msgid "Show Yahoo IM"
|
467 |
msgstr "Покажи Yahoo IM"
|
468 |
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
470 |
msgid "Show Jabber / Google Talk"
|
471 |
msgstr "Покажи Jabber / Google Talk"
|
472 |
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
474 |
msgid "Show Biographical Info"
|
475 |
msgstr ""
|
476 |
|
@@ -496,62 +541,62 @@ msgstr ""
|
|
496 |
msgid "Mismatch"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
500 |
msgid "Password"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
504 |
msgid "Password confirmation"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
508 |
#, fuzzy
|
509 |
msgid "First name"
|
510 |
msgstr "Покажи първото име"
|
511 |
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
513 |
#, fuzzy
|
514 |
msgid "Last name"
|
515 |
msgstr "Покажи второто име"
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
518 |
#, fuzzy
|
519 |
msgid "Nickname"
|
520 |
msgstr "Име"
|
521 |
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
525 |
msgid "Website"
|
526 |
msgstr "Интернет сайт"
|
527 |
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
529 |
msgid "AIM"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
533 |
#, fuzzy
|
534 |
msgid "Yahoo IM"
|
535 |
msgstr "Покажи Yahoo IM"
|
536 |
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
538 |
#, fuzzy
|
539 |
msgid "Jabber / Google Talk"
|
540 |
msgstr "Покажи Jabber / Google Talk"
|
541 |
|
542 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
543 |
msgid "Biographical Info"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
547 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
548 |
msgid "Fields"
|
549 |
msgstr "Полета"
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:752
|
552 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
553 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
554 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
555 |
#, fuzzy
|
556 |
msgid "Users Extended"
|
557 |
msgstr "Разширен списък с Автори & Потребители"
|
@@ -570,31 +615,31 @@ msgstr ""
|
|
570 |
msgid "File '%s' is not an image."
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
574 |
#, fuzzy
|
575 |
msgid "Delete the file"
|
576 |
msgstr "Изтрий поле"
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
579 |
#, fuzzy
|
580 |
msgid "Update the file"
|
581 |
msgstr "Поднови поле"
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
584 |
#, fuzzy
|
585 |
msgid "Update the picture"
|
586 |
msgstr "Поднови поле"
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
589 |
msgid "Picture URL:"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
593 |
#, php-format
|
594 |
msgid "%s previous value: %s new value: %s"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
598 |
#, php-format
|
599 |
msgid "%s (%s) has changed one or more fields"
|
600 |
msgstr ""
|
@@ -605,8 +650,9 @@ msgid "New user registration on your site %s:"
|
|
605 |
msgstr ""
|
606 |
|
607 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
609 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
|
|
|
|
610 |
#, fuzzy, php-format
|
611 |
msgid "Username: %s"
|
612 |
msgstr "Потребителско име"
|
@@ -621,12 +667,6 @@ msgstr "e-mail: %s"
|
|
621 |
msgid "[%s] New User Registration"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
625 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
626 |
-
#, php-format
|
627 |
-
msgid "Password: %s"
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
631 |
#, php-format
|
632 |
msgid "[%s] Your username and password"
|
@@ -665,6 +705,13 @@ msgstr ""
|
|
665 |
msgid "An error occurred during the activation"
|
666 |
msgstr ""
|
667 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
668 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
669 |
msgid "Invalid activation key."
|
670 |
msgstr ""
|
@@ -693,446 +740,447 @@ msgstr ""
|
|
693 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
697 |
msgid "Add field"
|
698 |
msgstr "Добави поле"
|
699 |
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
701 |
msgid "Update field"
|
702 |
msgstr "Поднови поле"
|
703 |
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
705 |
msgid "Delete field"
|
706 |
msgstr "Изтрий поле"
|
707 |
|
708 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
709 |
msgid "Delete selected fields"
|
710 |
msgstr "Изтрий маркираните полета"
|
711 |
|
712 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
713 |
msgid "Change order"
|
714 |
msgstr "Смени реда"
|
715 |
|
716 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
717 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
718 |
msgid "Min length"
|
719 |
msgstr "Минимална дължина"
|
720 |
|
721 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
723 |
msgid "Exact length"
|
724 |
msgstr "Точна дължина"
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
727 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
728 |
msgid "Max length"
|
729 |
msgstr "Максимална дължина"
|
730 |
|
731 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
732 |
msgid "Exact or Max length"
|
733 |
msgstr "Точна или максимална дължина"
|
734 |
|
735 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
736 |
msgid "changed to"
|
737 |
msgstr "променен на"
|
738 |
|
739 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
740 |
msgid "You cannot give an order that misses some numbers"
|
741 |
msgstr "Не може да даваш ред, в който липсват числа"
|
742 |
|
743 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
744 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
745 |
msgid "Nothing selected"
|
746 |
msgstr "Нищо не е избрано"
|
747 |
|
748 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
749 |
msgid "Field(s)"
|
750 |
msgstr "Поле(та)"
|
751 |
|
752 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
753 |
msgid "deleted correctly"
|
754 |
msgstr "изтрит успешно"
|
755 |
|
756 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
757 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
758 |
msgid "Min size"
|
759 |
msgstr "Минимален размер"
|
760 |
|
761 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
762 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
763 |
msgid "Exact size"
|
764 |
msgstr "Точен размер"
|
765 |
|
766 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
767 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
768 |
msgid "Max size"
|
769 |
msgstr "Максимален размер"
|
770 |
|
771 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
772 |
msgid "Exact or Max size"
|
773 |
msgstr "Точен или максимален размер"
|
774 |
|
775 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
776 |
msgid "Name not specified"
|
777 |
msgstr "Не е определено име"
|
778 |
|
779 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
780 |
msgid "Name cannot contains spaces"
|
781 |
msgstr "Името не може да съдържа шпации"
|
782 |
|
783 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
784 |
msgid "Label not specified"
|
785 |
msgstr "Не е определен етикет"
|
786 |
|
787 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
788 |
msgid "not selected (with this type is necessary)"
|
789 |
msgstr "не е избрано (задължително за този тип)"
|
790 |
|
791 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
792 |
msgid "If you select"
|
793 |
msgstr "Ако избра"
|
794 |
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
796 |
msgid "you cannot select Min or Max"
|
797 |
msgstr "не можеш да избереш минимума или максимума"
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
800 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
801 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
802 |
msgid "should be in the range of"
|
803 |
msgstr "трябва да е в рамките на"
|
804 |
|
805 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
807 |
msgid "Equal TO not specified"
|
808 |
msgstr "Равно НА не е определено"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
msgid "With checkbox type Equal TO can only be"
|
812 |
msgstr "С отметка от тип Равно НА може да е само"
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
msgid "With radio type Equal TO can only be"
|
816 |
msgstr "С радио бутон от тип Равно НА може да е само"
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
819 |
msgid "With checkbox type Value can only be"
|
820 |
msgstr "С отметка от тип Стойност може да е само"
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
msgid "With radio type Value can only be"
|
824 |
msgstr "С радио бутон от тип Стойност може да е само"
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
827 |
msgid "Field inserted correctly"
|
828 |
msgstr "Полето е добавено успешно"
|
829 |
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
msgid "Field #"
|
832 |
msgstr "Поле #"
|
833 |
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
msgid "updated correctly"
|
836 |
msgstr "подновено успешно"
|
837 |
|
838 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
839 |
msgid "Name inserted is just in the database, change to another one"
|
840 |
msgstr "Въведеното име е в базата данни, променето го"
|
841 |
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
843 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
844 |
msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
|
845 |
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
848 |
msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
|
849 |
|
850 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
851 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
852 |
msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
|
853 |
|
854 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
855 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
856 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
857 |
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
860 |
msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
|
861 |
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
863 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
864 |
msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
|
865 |
|
866 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
867 |
#, fuzzy
|
868 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
869 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
870 |
|
871 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
872 |
#, fuzzy
|
873 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
874 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
875 |
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
877 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
882 |
msgid "Name"
|
883 |
msgstr "Име"
|
884 |
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
886 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
887 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
891 |
msgid "Value"
|
892 |
msgstr "Стойност"
|
893 |
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
895 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
898 |
msgid "Type"
|
899 |
msgstr "Тип"
|
900 |
|
901 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
902 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
903 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
905 |
msgid "Label"
|
906 |
msgstr "Етикет"
|
907 |
|
908 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
910 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
911 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
912 |
msgid "Description"
|
913 |
msgstr "Описание"
|
914 |
|
915 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
917 |
msgid "Rules"
|
918 |
msgstr "Правила"
|
919 |
|
920 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
921 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
922 |
msgid "Actions"
|
923 |
msgstr "Действия"
|
924 |
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
926 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
927 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
928 |
#, fuzzy
|
929 |
msgid "Fieldset"
|
930 |
msgstr "Полета"
|
931 |
|
932 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
934 |
msgid "Can be empty"
|
935 |
msgstr "Може да е празно"
|
936 |
|
937 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
938 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
939 |
msgid "Check for E-mail syntax"
|
940 |
msgstr "Провери за Email синтаксис"
|
941 |
|
942 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
944 |
msgid "Can be modified"
|
945 |
msgstr "Може да бъде променяно"
|
946 |
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
949 |
msgid "Can be modified only if empty"
|
950 |
msgstr "Може да бъде променяно само ако е празно"
|
951 |
|
952 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
954 |
msgid "Can be modified only by admin"
|
955 |
msgstr "Може да бъде променяно само от администратора"
|
956 |
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
959 |
msgid "Can be modified only by admin or if empty"
|
960 |
msgstr "Може да бъде променяно само от администратора или ако е празно"
|
961 |
|
962 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
964 |
msgid "Cannot be modified"
|
965 |
msgstr "Не може да бъде променяно"
|
966 |
|
967 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
969 |
msgid "Should be equal TO"
|
970 |
msgstr "Би трябвало да е равно НА"
|
971 |
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
974 |
msgid "Case sensitive"
|
975 |
msgstr "Различават се големи и малко букви"
|
976 |
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
979 |
msgid "Regular Expression"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
983 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
984 |
msgid "Show the field in the registration"
|
985 |
msgstr "Покажи полето при регистрация"
|
986 |
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
988 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
989 |
msgid "Show the field in User's profile"
|
990 |
msgstr "Покажи полето в профила на потребителя"
|
991 |
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
993 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
994 |
-
|
|
|
995 |
msgstr "Покажи полето в A&П разширеното меню"
|
996 |
|
997 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
999 |
#, fuzzy
|
1000 |
msgid "Show the field in the search engine"
|
1001 |
msgstr "Покажи полето при регистрация"
|
1002 |
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1005 |
#, fuzzy
|
1006 |
msgid "Show the field in the blog"
|
1007 |
msgstr "Покажи полето при регистрация"
|
1008 |
|
1009 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1010 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1011 |
#, fuzzy
|
1012 |
msgid "Show the field if the role is at least:"
|
1013 |
msgstr "Покажи полето при регистрация"
|
1014 |
|
1015 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1017 |
msgid "Anonymous"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1022 |
msgid "Send an email to the admin if the user changes its value"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1026 |
msgid "Clear"
|
1027 |
msgstr "Изчисти"
|
1028 |
|
1029 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1030 |
msgid "Invert selection"
|
1031 |
msgstr "Обърни избора"
|
1032 |
|
1033 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1034 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1035 |
msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
|
1036 |
|
1037 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1038 |
msgid "WordPress Fields"
|
1039 |
msgstr "WordPress полета"
|
1040 |
|
1041 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1042 |
msgid "None!"
|
1043 |
msgstr "Няма!"
|
1044 |
|
1045 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1046 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1047 |
msgid "Order"
|
1048 |
msgstr "Подреди"
|
1049 |
|
1050 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1051 |
msgid "Reset"
|
1052 |
msgstr "Отмени"
|
1053 |
|
1054 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1055 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1056 |
#, fuzzy
|
1057 |
msgid "select"
|
1058 |
msgstr "Изтрий"
|
1059 |
|
1060 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1061 |
#, php-format
|
1062 |
msgid "Search results for “%s”"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1066 |
#, php-format
|
1067 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1071 |
msgid "Search Users"
|
1072 |
msgstr "Търсене на потребители"
|
1073 |
|
1074 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1075 |
msgid "« Back to All Users"
|
1076 |
msgstr "« Назад към Всички потребители"
|
1077 |
|
1078 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1079 |
#, fuzzy
|
1080 |
msgid "Users per page"
|
1081 |
msgstr "Таблица с потребителски данни"
|
1082 |
|
1083 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1084 |
msgid "Apply"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1088 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1089 |
-
msgid "Username"
|
1090 |
-
msgstr "Потребителско име"
|
1091 |
-
|
1092 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1515
|
1093 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1094 |
-
msgid "E-mail"
|
1095 |
-
msgstr "E-mail"
|
1096 |
-
|
1097 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1098 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1099 |
msgid "Role"
|
1100 |
msgstr "Роля"
|
1101 |
|
1102 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1103 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1104 |
msgid "Posts"
|
1105 |
msgstr "Постове"
|
1106 |
|
1107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1108 |
msgid "View posts by this author"
|
1109 |
msgstr "Виж постовете на този автор"
|
1110 |
|
1111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1112 |
#, php-format
|
1113 |
msgid "e-mail: %s"
|
1114 |
msgstr "e-mail: %s"
|
1115 |
|
1116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1117 |
#, fuzzy
|
1118 |
msgid "Change"
|
1119 |
msgstr "Смени реда"
|
1120 |
|
1121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1122 |
#, fuzzy
|
1123 |
msgid "Update selected users"
|
1124 |
msgstr "Изтрий маркираните полета"
|
1125 |
|
1126 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1127 |
#, fuzzy
|
1128 |
msgid "Update"
|
1129 |
msgstr "Поднови поле"
|
1130 |
|
1131 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1132 |
msgid "OK"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1136 |
msgid "Cancel"
|
1137 |
msgstr ""
|
1138 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-06-19 16:32+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-06-19 16:32+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:453
|
|
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1241
|
34 |
msgid "ERROR"
|
35 |
msgstr "ГРЕШКА"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "няма правилен email синтаксис."
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "не може да е празно."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "не е правилно"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
57 |
msgid "YES"
|
58 |
msgstr "ДА"
|
59 |
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
63 |
msgid "NO"
|
64 |
msgstr "НЕ"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:463
|
67 |
msgid "should be"
|
68 |
msgstr "трябва да е"
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "should be an image."
|
72 |
msgstr "трябва да е снимка."
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
75 |
msgid "couldn’t have size less than"
|
76 |
msgstr "не може да е с по-малък размер от"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
79 |
msgid "couldn’t have length less than"
|
80 |
msgstr "не може да има по-малка дължина от"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
83 |
msgid "couldn’t have size different than"
|
84 |
msgstr "не може да има размер различен от"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
87 |
msgid "couldn’t have length different than"
|
88 |
msgstr "не може да има дължина различна от"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
91 |
msgid "couldn’t have size more than"
|
92 |
msgstr "не може да има размер по-голям от"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
95 |
msgid "couldn’t have length more than"
|
96 |
msgstr "не може да има дължина по-голяма от"
|
97 |
|
98 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
100 |
msgid "Typed code is not correct."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:636
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1528
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1529
|
106 |
+
msgid "Username"
|
107 |
+
msgstr "Потребителско име"
|
108 |
+
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:639
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1538
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
|
112 |
+
msgid "E-mail"
|
113 |
+
msgstr "E-mail"
|
114 |
+
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:889
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:302
|
117 |
#, fuzzy
|
118 |
msgid "Please upload a file with one of the following extensions"
|
119 |
msgstr "Моля качете снимка с някое от тези разширения"
|
120 |
|
121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:895
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:308
|
124 |
msgid "Please upload an image with one of the following extensions"
|
125 |
msgstr "Моля качете снимка с някое от тези разширения"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1052
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
129 |
msgid "Strength indicator"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1053
|
133 |
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 ! \" ? $ % ^ & )."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1099
|
137 |
#, fuzzy
|
138 |
msgid "Change image"
|
139 |
msgstr "Смени реда"
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1102
|
142 |
msgid "Insert the code:"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1163
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1165
|
147 |
+
msgid "Confirm your registration"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1171
|
151 |
+
msgid "A password will be e-mailed to you."
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1178
|
155 |
+
msgid "← Back"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
159 |
#, fuzzy
|
160 |
msgid "no fieldset"
|
164 |
msgid "All"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:44
|
168 |
msgid "WordPress Fields table emptied"
|
169 |
msgstr "Таблицата с WordPress полета е изпразнена"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:49
|
172 |
msgid "WordPress Fields table deleted"
|
173 |
msgstr "Таблицата с WordPress полета е изтрита"
|
174 |
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:58
|
176 |
msgid "Extra Fields table emptied"
|
177 |
msgstr "Таблицата с допълнителни полета е изпразнена"
|
178 |
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:63
|
180 |
msgid "Extra Fields table deleted"
|
181 |
msgstr "Таблицата с допълнителни полета е изтрита"
|
182 |
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:72
|
184 |
msgid "Users Data table emptied"
|
185 |
msgstr "Таблицата с потребителски данни е изпразнена"
|
186 |
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:77
|
188 |
msgid "Users Data table deleted"
|
189 |
msgstr "Таблицата с потребителски данни е изтрита"
|
190 |
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:88
|
192 |
msgid "Options set to default values"
|
193 |
msgstr "Вариантите са сменени по подразбиране"
|
194 |
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:94
|
196 |
msgid "Options deleted"
|
197 |
msgstr "Вариантите са изтрити"
|
198 |
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:349
|
200 |
msgid "Options changed"
|
201 |
msgstr "Вариантите са променени"
|
202 |
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
204 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:489
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:754
|
210 |
msgid "Options"
|
211 |
msgstr "Настройки"
|
212 |
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
214 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:442
|
215 |
msgid "Add a new Field"
|
216 |
msgstr "Добави друго поле"
|
217 |
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:809
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
222 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
223 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:294
|
224 |
msgid "Extra Fields"
|
225 |
msgstr "Допълнителни полета"
|
226 |
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
228 |
msgid "Support the Cimy Project"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
|
232 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:516
|
236 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1259
|
237 |
msgid "SUCCESSFUL"
|
238 |
msgstr "УСПЕХ"
|
239 |
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:856
|
242 |
msgid "Save Changes"
|
243 |
msgstr "Запази промените"
|
244 |
|
245 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:531
|
246 |
msgid "General"
|
247 |
msgstr "Общи"
|
248 |
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:539
|
250 |
msgid "installed is"
|
251 |
msgstr "инсталирано е"
|
252 |
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
254 |
msgid "OPTIONS DELETED!"
|
255 |
msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
|
256 |
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
258 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
259 |
msgid "Fix the problem"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
263 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
264 |
msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
|
265 |
|
266 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
267 |
msgid "Picture/Avatar upload"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
271 |
msgid "is created and writable"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
275 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
279 |
#, fuzzy
|
280 |
msgid "Show all fields in the welcome email"
|
281 |
msgstr "Покажи полето при регистрация"
|
282 |
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
284 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
288 |
msgid "Enable email confirmation"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
292 |
msgid "user that registers should confirm its email address via a link click"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
|
296 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:595
|
300 |
+
msgid "Enable form confirmation"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
304 |
+
msgid "a summary of the registration form will be presented to the user"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
308 |
+
msgid "Customize welcome email sent to the new user"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
312 |
+
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
316 |
msgid "Redirect to the source"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
|
320 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
|
324 |
msgid "No captcha"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
328 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
332 |
msgid "Public KEY"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
336 |
msgid "Private KEY"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:651
|
340 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:654
|
344 |
msgid "This captcha is probably weaker, but is easier for users"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
348 |
#, php-format
|
349 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
353 |
msgid "Change login/registration page logo"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:450
|
358 |
#, fuzzy
|
359 |
msgid "Delete the picture"
|
360 |
msgstr "Изтрий поле"
|
361 |
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
363 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
367 |
msgid "Database"
|
368 |
msgstr "База данни"
|
369 |
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:688
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:706
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
374 |
msgid "select action"
|
375 |
msgstr "избери действие"
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
378 |
msgid "Default values"
|
379 |
msgstr "Стойност по подразбиране"
|
380 |
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:708
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:727
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
385 |
msgid "Delete"
|
386 |
msgstr "Изтрий"
|
387 |
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:694
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:749
|
392 |
msgid "NOT PRESENT"
|
393 |
msgstr "НЕ СЪЩЕСТВУВА"
|
394 |
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
396 |
msgid "WordPress Fields table"
|
397 |
msgstr "Таблица с WordPress полета"
|
398 |
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:726
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:743
|
402 |
msgid "Empty"
|
403 |
msgstr "Празно"
|
404 |
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:719
|
406 |
msgid "Extra Fields table"
|
407 |
msgstr "Таблица с допълнителни полета"
|
408 |
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:736
|
410 |
msgid "Users Data table"
|
411 |
msgstr "Таблица с потребителски данни"
|
412 |
|
413 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:746
|
414 |
msgid "all data inserted by users in all and only extra fields"
|
415 |
msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
|
416 |
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
418 |
msgid "Force tables creation"
|
419 |
msgstr "Задължително създаване на таблица"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
422 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:763
|
426 |
msgid "User Profile"
|
427 |
msgstr "Потребителски профил"
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
430 |
#, fuzzy
|
431 |
msgid "Extra Fields section title"
|
432 |
msgstr "Таблица с допълнителни полета"
|
433 |
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
435 |
msgid "Fieldset's titles, separates with comma"
|
436 |
msgstr "Заглавията на колекция разделени със запетайка"
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
439 |
msgid "example: title1,title2,title3"
|
440 |
msgstr "пример: заглавие1,заглавие2,заглавие3"
|
441 |
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:771
|
443 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:776
|
447 |
msgid "Authors & Users Extended"
|
448 |
msgstr "Автори & Потребители с разширения"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:780
|
451 |
msgid "Hide username field"
|
452 |
msgstr "Скрий полето за потребителско име"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
455 |
msgid "Hide name field"
|
456 |
msgstr "Скрий полето за име"
|
457 |
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:791
|
459 |
msgid "Hide email field"
|
460 |
msgstr "Скрий полето за email"
|
461 |
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:795
|
463 |
msgid "Hide role field"
|
464 |
msgstr "Скрий полето за роля"
|
465 |
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
|
467 |
msgid "Hide website field"
|
468 |
msgstr "Скрий полето за интернет сайт"
|
469 |
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:803
|
471 |
msgid "Hide n. posts field"
|
472 |
msgstr "Скрий полето за брой постове"
|
473 |
|
474 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:808
|
475 |
msgid "WordPress hidden fields"
|
476 |
msgstr "Скрити полета на WordPress"
|
477 |
|
478 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:811
|
479 |
msgid "Show password"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:815
|
483 |
msgid "Show confirmation password"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:819
|
487 |
msgid "Show password strength meter"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:823
|
491 |
msgid "Show first name"
|
492 |
msgstr "Покажи първото име"
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
495 |
msgid "Show last name"
|
496 |
msgstr "Покажи второто име"
|
497 |
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:831
|
499 |
msgid "Show nickname"
|
500 |
msgstr "Покажи потребителското име"
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:835
|
503 |
msgid "Show website"
|
504 |
msgstr "Покажи интернет сайта"
|
505 |
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:839
|
507 |
msgid "Show AIM"
|
508 |
msgstr "Покажи AIM"
|
509 |
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:843
|
511 |
msgid "Show Yahoo IM"
|
512 |
msgstr "Покажи Yahoo IM"
|
513 |
|
514 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:847
|
515 |
msgid "Show Jabber / Google Talk"
|
516 |
msgstr "Покажи Jabber / Google Talk"
|
517 |
|
518 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:851
|
519 |
msgid "Show Biographical Info"
|
520 |
msgstr ""
|
521 |
|
541 |
msgid "Mismatch"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:221
|
545 |
msgid "Password"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:241
|
549 |
msgid "Password confirmation"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:261
|
553 |
#, fuzzy
|
554 |
msgid "First name"
|
555 |
msgstr "Покажи първото име"
|
556 |
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:281
|
558 |
#, fuzzy
|
559 |
msgid "Last name"
|
560 |
msgstr "Покажи второто име"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:301
|
563 |
#, fuzzy
|
564 |
msgid "Nickname"
|
565 |
msgstr "Име"
|
566 |
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:321
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1548
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
|
570 |
msgid "Website"
|
571 |
msgstr "Интернет сайт"
|
572 |
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:341
|
574 |
msgid "AIM"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:361
|
578 |
#, fuzzy
|
579 |
msgid "Yahoo IM"
|
580 |
msgstr "Покажи Yahoo IM"
|
581 |
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:381
|
583 |
#, fuzzy
|
584 |
msgid "Jabber / Google Talk"
|
585 |
msgstr "Покажи Jabber / Google Talk"
|
586 |
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:401
|
588 |
msgid "Biographical Info"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
593 |
msgid "Fields"
|
594 |
msgstr "Полета"
|
595 |
|
|
|
596 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:765
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1421
|
600 |
#, fuzzy
|
601 |
msgid "Users Extended"
|
602 |
msgstr "Разширен списък с Автори & Потребители"
|
615 |
msgid "File '%s' is not an image."
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:446
|
619 |
#, fuzzy
|
620 |
msgid "Delete the file"
|
621 |
msgstr "Изтрий поле"
|
622 |
|
623 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
624 |
#, fuzzy
|
625 |
msgid "Update the file"
|
626 |
msgstr "Поднови поле"
|
627 |
|
628 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:451
|
629 |
#, fuzzy
|
630 |
msgid "Update the picture"
|
631 |
msgstr "Поднови поле"
|
632 |
|
633 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:471
|
634 |
msgid "Picture URL:"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:712
|
638 |
#, php-format
|
639 |
msgid "%s previous value: %s new value: %s"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:727
|
643 |
#, php-format
|
644 |
msgid "%s (%s) has changed one or more fields"
|
645 |
msgstr ""
|
650 |
msgstr ""
|
651 |
|
652 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
|
|
653 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
654 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:213
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:289
|
656 |
#, fuzzy, php-format
|
657 |
msgid "Username: %s"
|
658 |
msgstr "Потребителско име"
|
667 |
msgid "[%s] New User Registration"
|
668 |
msgstr ""
|
669 |
|
|
|
|
|
|
|
|
|
|
|
|
|
670 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
671 |
#, php-format
|
672 |
msgid "[%s] Your username and password"
|
705 |
msgid "An error occurred during the activation"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
709 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
710 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:290
|
711 |
+
#, php-format
|
712 |
+
msgid "Password: %s"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
716 |
msgid "Invalid activation key."
|
717 |
msgstr ""
|
740 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
744 |
msgid "Add field"
|
745 |
msgstr "Добави поле"
|
746 |
|
747 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
748 |
msgid "Update field"
|
749 |
msgstr "Поднови поле"
|
750 |
|
751 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
|
752 |
msgid "Delete field"
|
753 |
msgstr "Изтрий поле"
|
754 |
|
755 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
|
756 |
msgid "Delete selected fields"
|
757 |
msgstr "Изтрий маркираните полета"
|
758 |
|
759 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
|
760 |
msgid "Change order"
|
761 |
msgstr "Смени реда"
|
762 |
|
763 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
764 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
|
765 |
msgid "Min length"
|
766 |
msgstr "Минимална дължина"
|
767 |
|
768 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
770 |
msgid "Exact length"
|
771 |
msgstr "Точна дължина"
|
772 |
|
773 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
774 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
775 |
msgid "Max length"
|
776 |
msgstr "Максимална дължина"
|
777 |
|
778 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
|
779 |
msgid "Exact or Max length"
|
780 |
msgstr "Точна или максимална дължина"
|
781 |
|
782 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
783 |
msgid "changed to"
|
784 |
msgstr "променен на"
|
785 |
|
786 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
787 |
msgid "You cannot give an order that misses some numbers"
|
788 |
msgstr "Не може да даваш ред, в който липсват числа"
|
789 |
|
790 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
791 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:210
|
792 |
msgid "Nothing selected"
|
793 |
msgstr "Нищо не е избрано"
|
794 |
|
795 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
796 |
msgid "Field(s)"
|
797 |
msgstr "Поле(та)"
|
798 |
|
799 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
800 |
msgid "deleted correctly"
|
801 |
msgstr "изтрит успешно"
|
802 |
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:239
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1056
|
805 |
msgid "Min size"
|
806 |
msgstr "Минимален размер"
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
809 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
810 |
msgid "Exact size"
|
811 |
msgstr "Точен размер"
|
812 |
|
813 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:241
|
814 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
815 |
msgid "Max size"
|
816 |
msgstr "Максимален размер"
|
817 |
|
818 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
819 |
msgid "Exact or Max size"
|
820 |
msgstr "Точен или максимален размер"
|
821 |
|
822 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:299
|
823 |
msgid "Name not specified"
|
824 |
msgstr "Не е определено име"
|
825 |
|
826 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
827 |
msgid "Name cannot contains spaces"
|
828 |
msgstr "Името не може да съдържа шпации"
|
829 |
|
830 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
|
831 |
msgid "Label not specified"
|
832 |
msgstr "Не е определен етикет"
|
833 |
|
834 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
|
835 |
msgid "not selected (with this type is necessary)"
|
836 |
msgstr "не е избрано (задължително за този тип)"
|
837 |
|
838 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
839 |
msgid "If you select"
|
840 |
msgstr "Ако избра"
|
841 |
|
842 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
843 |
msgid "you cannot select Min or Max"
|
844 |
msgstr "не можеш да избереш минимума или максимума"
|
845 |
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:330
|
849 |
msgid "should be in the range of"
|
850 |
msgstr "трябва да е в рамките на"
|
851 |
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:340
|
|
|
853 |
msgid "Equal TO not specified"
|
854 |
msgstr "Равно НА не е определено"
|
855 |
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:343
|
857 |
msgid "With checkbox type Equal TO can only be"
|
858 |
msgstr "С отметка от тип Равно НА може да е само"
|
859 |
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:346
|
861 |
msgid "With radio type Equal TO can only be"
|
862 |
msgstr "С радио бутон от тип Равно НА може да е само"
|
863 |
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:362
|
865 |
msgid "With checkbox type Value can only be"
|
866 |
msgstr "С отметка от тип Стойност може да е само"
|
867 |
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:365
|
869 |
msgid "With radio type Value can only be"
|
870 |
msgstr "С радио бутон от тип Стойност може да е само"
|
871 |
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
873 |
msgid "Field inserted correctly"
|
874 |
msgstr "Полето е добавено успешно"
|
875 |
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
877 |
msgid "Field #"
|
878 |
msgstr "Поле #"
|
879 |
|
880 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
881 |
msgid "updated correctly"
|
882 |
msgstr "подновено успешно"
|
883 |
|
884 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
885 |
msgid "Name inserted is just in the database, change to another one"
|
886 |
msgstr "Въведеното име е в базата данни, променето го"
|
887 |
|
888 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
889 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
890 |
msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
|
891 |
|
892 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
893 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
894 |
msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
|
895 |
|
896 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
897 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
898 |
msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
|
899 |
|
900 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
901 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
902 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
903 |
|
904 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
905 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
906 |
msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
|
907 |
|
908 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
909 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
910 |
msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
|
911 |
|
912 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
913 |
#, fuzzy
|
914 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
915 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
916 |
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
918 |
#, fuzzy
|
919 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
920 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
921 |
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:648
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1089
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1533
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
|
928 |
msgid "Name"
|
929 |
msgstr "Име"
|
930 |
|
|
|
931 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1092
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
937 |
msgid "Value"
|
938 |
msgstr "Стойност"
|
939 |
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:639
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1095
|
944 |
msgid "Type"
|
945 |
msgstr "Тип"
|
946 |
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
951 |
msgid "Label"
|
952 |
msgstr "Етикет"
|
953 |
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:672
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
958 |
msgid "Description"
|
959 |
msgstr "Описание"
|
960 |
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
963 |
msgid "Rules"
|
964 |
msgstr "Правила"
|
965 |
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
968 |
msgid "Actions"
|
969 |
msgstr "Действия"
|
970 |
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
974 |
#, fuzzy
|
975 |
msgid "Fieldset"
|
976 |
msgstr "Полета"
|
977 |
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
980 |
msgid "Can be empty"
|
981 |
msgstr "Може да е празно"
|
982 |
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
985 |
msgid "Check for E-mail syntax"
|
986 |
msgstr "Провери за Email синтаксис"
|
987 |
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:688
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
990 |
msgid "Can be modified"
|
991 |
msgstr "Може да бъде променяно"
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1139
|
995 |
msgid "Can be modified only if empty"
|
996 |
msgstr "Може да бъде променяно само ако е празно"
|
997 |
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
1000 |
msgid "Can be modified only by admin"
|
1001 |
msgstr "Може да бъде променяно само от администратора"
|
1002 |
|
1003 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
1004 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
1005 |
msgid "Can be modified only by admin or if empty"
|
1006 |
msgstr "Може да бъде променяно само от администратора или ако е празно"
|
1007 |
|
1008 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:692
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
1010 |
msgid "Cannot be modified"
|
1011 |
msgstr "Не може да бъде променяно"
|
1012 |
|
1013 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
1015 |
msgid "Should be equal TO"
|
1016 |
msgstr "Би трябвало да е равно НА"
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
1020 |
msgid "Case sensitive"
|
1021 |
msgstr "Различават се големи и малко букви"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
1025 |
msgid "Regular Expression"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1155
|
1030 |
msgid "Show the field in the registration"
|
1031 |
msgstr "Покажи полето при регистрация"
|
1032 |
|
1033 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
1034 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
1035 |
msgid "Show the field in User's profile"
|
1036 |
msgstr "Покажи полето в профила на потребителя"
|
1037 |
|
1038 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1167
|
1040 |
+
#, fuzzy
|
1041 |
+
msgid "Show the field in Users Extended menu"
|
1042 |
msgstr "Покажи полето в A&П разширеното меню"
|
1043 |
|
1044 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1170
|
1046 |
#, fuzzy
|
1047 |
msgid "Show the field in the search engine"
|
1048 |
msgstr "Покажи полето при регистрация"
|
1049 |
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1173
|
1052 |
#, fuzzy
|
1053 |
msgid "Show the field in the blog"
|
1054 |
msgstr "Покажи полето при регистрация"
|
1055 |
|
1056 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:723
|
1057 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1176
|
1058 |
#, fuzzy
|
1059 |
msgid "Show the field if the role is at least:"
|
1060 |
msgstr "Покажи полето при регистрация"
|
1061 |
|
1062 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:725
|
1063 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1064 |
msgid "Anonymous"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1184
|
1069 |
+
msgid "User has 'view_cimy_extra_fields' capability"
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:736
|
1073 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
1074 |
msgid "Send an email to the admin if the user changes its value"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:738
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1197
|
1079 |
+
#, fuzzy
|
1080 |
+
msgid "Advanced options"
|
1081 |
+
msgstr "Действия"
|
1082 |
+
|
1083 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
1084 |
msgid "Clear"
|
1085 |
msgstr "Изчисти"
|
1086 |
|
1087 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
|
1088 |
msgid "Invert selection"
|
1089 |
msgstr "Обърни избора"
|
1090 |
|
1091 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
|
1092 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1093 |
msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
|
1094 |
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1096 |
msgid "WordPress Fields"
|
1097 |
msgstr "WordPress полета"
|
1098 |
|
1099 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
1100 |
msgid "None!"
|
1101 |
msgstr "Няма!"
|
1102 |
|
1103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
|
1104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1077
|
1105 |
msgid "Order"
|
1106 |
msgstr "Подреди"
|
1107 |
|
1108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1201
|
1109 |
msgid "Reset"
|
1110 |
msgstr "Отмени"
|
1111 |
|
1112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1288
|
1113 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1903
|
1114 |
#, fuzzy
|
1115 |
msgid "select"
|
1116 |
msgstr "Изтрий"
|
1117 |
|
1118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1429
|
1119 |
#, php-format
|
1120 |
msgid "Search results for “%s”"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
|
1124 |
#, php-format
|
1125 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1465
|
1129 |
msgid "Search Users"
|
1130 |
msgstr "Търсене на потребители"
|
1131 |
|
1132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
1133 |
msgid "« Back to All Users"
|
1134 |
msgstr "« Назад към Всички потребители"
|
1135 |
|
1136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1501
|
1137 |
#, fuzzy
|
1138 |
msgid "Users per page"
|
1139 |
msgstr "Таблица с потребителски данни"
|
1140 |
|
1141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1142 |
msgid "Apply"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1543
|
1146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1147 |
msgid "Role"
|
1148 |
msgstr "Роля"
|
1149 |
|
1150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1553
|
1151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
|
1152 |
msgid "Posts"
|
1153 |
msgstr "Постове"
|
1154 |
|
1155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1691
|
1156 |
msgid "View posts by this author"
|
1157 |
msgstr "Виж постовете на този автор"
|
1158 |
|
1159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1725
|
1160 |
#, php-format
|
1161 |
msgid "e-mail: %s"
|
1162 |
msgstr "e-mail: %s"
|
1163 |
|
1164 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1847
|
1165 |
#, fuzzy
|
1166 |
msgid "Change"
|
1167 |
msgstr "Смени реда"
|
1168 |
|
1169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1872
|
1170 |
#, fuzzy
|
1171 |
msgid "Update selected users"
|
1172 |
msgstr "Изтрий маркираните полета"
|
1173 |
|
1174 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1175 |
#, fuzzy
|
1176 |
msgid "Update"
|
1177 |
msgstr "Поднови поле"
|
1178 |
|
1179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1908
|
1180 |
msgid "OK"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1909
|
1184 |
msgid "Cancel"
|
1185 |
msgstr ""
|
1186 |
|
langs/cimy_uef-da_DK.mo
CHANGED
Binary file
|
langs/cimy_uef-da_DK.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,116 +16,145 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "FEJL"
|
36 |
|
37 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "E-mail adresse angivet forkert. "
|
44 |
|
45 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "Må ikke være tomt."
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "er forkert"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
55 |
msgid "YES"
|
56 |
msgstr "JA"
|
57 |
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
59 |
msgid "NO"
|
60 |
msgstr "NEJ"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
msgid "should be"
|
64 |
msgstr "skulle være"
|
65 |
|
66 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
67 |
msgid "should be an image."
|
68 |
msgstr "burde være et billede."
|
69 |
|
70 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "Størrelse må ikke være mindre end"
|
73 |
|
74 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "Længden må ikke være mindre end"
|
77 |
|
78 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "Størrelse må ikke afvige fra"
|
81 |
|
82 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "Længde må ikke afvige fra"
|
85 |
|
86 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "Størrelse må ikke overstige"
|
89 |
|
90 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "Længde må ikke overstige"
|
93 |
|
94 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
95 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
104 |
|
105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
110 |
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
113 |
msgid "Strength indicator"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
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 ! \" ? $ % ^ & )."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
121 |
#, fuzzy
|
122 |
msgid "Change image"
|
123 |
msgstr "Ændre rækkefølge"
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
126 |
msgid "Insert the code:"
|
127 |
msgstr ""
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
130 |
#, fuzzy
|
131 |
msgid "no fieldset"
|
@@ -135,343 +164,359 @@ msgstr "Objekter pr. feltrække"
|
|
135 |
msgid "All"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
139 |
msgid "WordPress Fields table emptied"
|
140 |
msgstr "WordPress tabel tømt"
|
141 |
|
142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
143 |
msgid "WordPress Fields table deleted"
|
144 |
msgstr "WordPress tabel slettet"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
147 |
msgid "Extra Fields table emptied"
|
148 |
msgstr "Tabel med ekstra felter tømt"
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
151 |
msgid "Extra Fields table deleted"
|
152 |
msgstr "Tabel med ekstra felter slettet"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
155 |
msgid "Users Data table emptied"
|
156 |
msgstr "Tabellen med brugerdata er blevet tømt"
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
159 |
msgid "Users Data table deleted"
|
160 |
msgstr "Tabellen med brugerdata er blevet slettet"
|
161 |
|
162 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
163 |
msgid "Options set to default values"
|
164 |
msgstr "Indstillinger nulstillet"
|
165 |
|
166 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
167 |
msgid "Options deleted"
|
168 |
msgstr "Indstillinger slettet"
|
169 |
|
170 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
171 |
msgid "Options changed"
|
172 |
msgstr "Indstillinger ændret"
|
173 |
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
175 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
180 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
181 |
msgid "Options"
|
182 |
msgstr "Indstillinger"
|
183 |
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
185 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
186 |
msgid "Add a new Field"
|
187 |
msgstr "Tilføj et nyt felt"
|
188 |
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
190 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
191 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
195 |
msgid "Extra Fields"
|
196 |
msgstr "Ekstra felter"
|
197 |
|
198 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
199 |
msgid "Support the Cimy Project"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
203 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
207 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
208 |
msgid "SUCCESSFUL"
|
209 |
msgstr "GENNEMFØRT"
|
210 |
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
213 |
msgid "Save Changes"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
217 |
msgid "General"
|
218 |
msgstr "Generelle indstillinger"
|
219 |
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
221 |
msgid "installed is"
|
222 |
msgstr "installeret er"
|
223 |
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
225 |
msgid "OPTIONS DELETED!"
|
226 |
msgstr "INDSTILLINGER SLETTET!"
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
230 |
msgid "Fix the problem"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
234 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
235 |
msgstr "VERSIONSKONFLIKT! Husk at deaktivere og genaktivere plugin'et efter opdatering!"
|
236 |
|
237 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
238 |
msgid "Picture/Avatar upload"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
242 |
msgid "is created and writable"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
246 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
250 |
#, fuzzy
|
251 |
msgid "Show all fields in the welcome email"
|
252 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
253 |
|
254 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
255 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
259 |
msgid "Enable email confirmation"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
263 |
msgid "user that registers should confirm its email address via a link click"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
267 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
msgid "Redirect to the source"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
275 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
279 |
msgid "No captcha"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
283 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
287 |
msgid "Public KEY"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
291 |
msgid "Private KEY"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
295 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
299 |
msgid "This captcha is probably weaker, but is easier for users"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
303 |
#, php-format
|
304 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
308 |
msgid "Change login/registration page logo"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
313 |
#, fuzzy
|
314 |
msgid "Delete the picture"
|
315 |
msgstr "Slet felt"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
318 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
322 |
msgid "Database"
|
323 |
msgstr "Database administration"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
327 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
328 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
329 |
msgid "select action"
|
330 |
msgstr "Vælg handling"
|
331 |
|
332 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
333 |
msgid "Default values"
|
334 |
msgstr "Standard værdier"
|
335 |
|
336 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
339 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
340 |
msgid "Delete"
|
341 |
msgstr "Slet"
|
342 |
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
344 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
347 |
msgid "NOT PRESENT"
|
348 |
msgstr "FINDES IKKE"
|
349 |
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
351 |
msgid "WordPress Fields table"
|
352 |
msgstr "WordPress tabel"
|
353 |
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
357 |
msgid "Empty"
|
358 |
msgstr "Tøm"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
361 |
msgid "Extra Fields table"
|
362 |
msgstr "Tabel med ekstra felter"
|
363 |
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
365 |
msgid "Users Data table"
|
366 |
msgstr "Tabel for brugerdata"
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
369 |
msgid "all data inserted by users in all and only extra fields"
|
370 |
msgstr "al brugerdata i alle ekstra felter"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
373 |
msgid "Force tables creation"
|
374 |
msgstr "Gennemtving oprettelse af tabeller"
|
375 |
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
377 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
381 |
msgid "User Profile"
|
382 |
msgstr "Brugerprofil"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
385 |
#, fuzzy
|
386 |
msgid "Extra Fields section title"
|
387 |
msgstr "Tabel med ekstra felter"
|
388 |
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
390 |
msgid "Fieldset's titles, separates with comma"
|
391 |
msgstr "Feltrækkernes titel, adkilt med komma"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
394 |
msgid "example: title1,title2,title3"
|
395 |
msgstr "F. eks.: Titel1,Titel2,Titel3"
|
396 |
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
398 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
402 |
msgid "Authors & Users Extended"
|
403 |
msgstr "Bruger liste"
|
404 |
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
406 |
msgid "Hide username field"
|
407 |
msgstr "Skjul brugernavn"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
410 |
msgid "Hide name field"
|
411 |
msgstr "Skjul fornavn"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
414 |
msgid "Hide email field"
|
415 |
msgstr "Skjul e-mailadresse"
|
416 |
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
418 |
#, fuzzy
|
419 |
msgid "Hide role field"
|
420 |
msgstr "Skjul fornavn"
|
421 |
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
423 |
msgid "Hide website field"
|
424 |
msgstr "Skjul website"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
427 |
msgid "Hide n. posts field"
|
428 |
msgstr "Skjul angivelse af antal af brugerindlæg"
|
429 |
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
431 |
msgid "WordPress hidden fields"
|
432 |
msgstr "Wordpress skjulte felter"
|
433 |
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
435 |
msgid "Show password"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
439 |
msgid "Show confirmation password"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
443 |
msgid "Show password strength meter"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
447 |
msgid "Show first name"
|
448 |
msgstr "Vis fornavn"
|
449 |
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
451 |
msgid "Show last name"
|
452 |
msgstr "Vis Efternavn"
|
453 |
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
455 |
msgid "Show nickname"
|
456 |
msgstr "Vis Kaldenavn"
|
457 |
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
459 |
msgid "Show website"
|
460 |
msgstr "Website"
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
463 |
msgid "Show AIM"
|
464 |
msgstr "Vis AIM"
|
465 |
|
466 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
467 |
msgid "Show Yahoo IM"
|
468 |
msgstr "Vis Yahoo IM"
|
469 |
|
470 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
471 |
msgid "Show Jabber / Google Talk"
|
472 |
msgstr "Vis Jabber / Google Talk"
|
473 |
|
474 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
475 |
msgid "Show Biographical Info"
|
476 |
msgstr ""
|
477 |
|
@@ -497,62 +542,62 @@ msgstr ""
|
|
497 |
msgid "Mismatch"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
501 |
msgid "Password"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
505 |
msgid "Password confirmation"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
509 |
#, fuzzy
|
510 |
msgid "First name"
|
511 |
msgstr "Vis fornavn"
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
514 |
#, fuzzy
|
515 |
msgid "Last name"
|
516 |
msgstr "Vis Efternavn"
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
519 |
#, fuzzy
|
520 |
msgid "Nickname"
|
521 |
msgstr "Navn"
|
522 |
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
525 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
526 |
msgid "Website"
|
527 |
msgstr "Website"
|
528 |
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
530 |
msgid "AIM"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
534 |
#, fuzzy
|
535 |
msgid "Yahoo IM"
|
536 |
msgstr "Vis Yahoo IM"
|
537 |
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
539 |
#, fuzzy
|
540 |
msgid "Jabber / Google Talk"
|
541 |
msgstr "Vis Jabber / Google Talk"
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
544 |
msgid "Biographical Info"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
549 |
msgid "Fields"
|
550 |
msgstr "Felter"
|
551 |
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:752
|
553 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
554 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
556 |
#, fuzzy
|
557 |
msgid "Users Extended"
|
558 |
msgstr "Vis alle brugere"
|
@@ -571,31 +616,31 @@ msgstr ""
|
|
571 |
msgid "File '%s' is not an image."
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
575 |
#, fuzzy
|
576 |
msgid "Delete the file"
|
577 |
msgstr "Slet felt"
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
580 |
#, fuzzy
|
581 |
msgid "Update the file"
|
582 |
msgstr "Opdater felt"
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
585 |
#, fuzzy
|
586 |
msgid "Update the picture"
|
587 |
msgstr "Opdater felt"
|
588 |
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
590 |
msgid "Picture URL:"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
594 |
#, php-format
|
595 |
msgid "%s previous value: %s new value: %s"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
599 |
#, php-format
|
600 |
msgid "%s (%s) has changed one or more fields"
|
601 |
msgstr ""
|
@@ -606,8 +651,9 @@ msgid "New user registration on your site %s:"
|
|
606 |
msgstr ""
|
607 |
|
608 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
610 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
|
|
|
|
611 |
#, fuzzy, php-format
|
612 |
msgid "Username: %s"
|
613 |
msgstr "Brugernavn"
|
@@ -622,12 +668,6 @@ msgstr "e-mail: %s"
|
|
622 |
msgid "[%s] New User Registration"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
627 |
-
#, php-format
|
628 |
-
msgid "Password: %s"
|
629 |
-
msgstr ""
|
630 |
-
|
631 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
632 |
#, php-format
|
633 |
msgid "[%s] Your username and password"
|
@@ -666,6 +706,13 @@ msgstr ""
|
|
666 |
msgid "An error occurred during the activation"
|
667 |
msgstr ""
|
668 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
669 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
670 |
msgid "Invalid activation key."
|
671 |
msgstr ""
|
@@ -694,447 +741,448 @@ msgstr ""
|
|
694 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
698 |
msgid "Add field"
|
699 |
msgstr "Tilføj felt"
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
702 |
msgid "Update field"
|
703 |
msgstr "Opdater felt"
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
706 |
msgid "Delete field"
|
707 |
msgstr "Slet felt"
|
708 |
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
710 |
msgid "Delete selected fields"
|
711 |
msgstr "Slet valgte felter"
|
712 |
|
713 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
714 |
msgid "Change order"
|
715 |
msgstr "Ændre rækkefølge"
|
716 |
|
717 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
719 |
msgid "Min length"
|
720 |
msgstr "Min. længde"
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
723 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
724 |
msgid "Exact length"
|
725 |
msgstr "Eksakt længde"
|
726 |
|
727 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
729 |
msgid "Max length"
|
730 |
msgstr "Max. længde"
|
731 |
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
733 |
msgid "Exact or Max length"
|
734 |
msgstr "Eksakt eller max. længde"
|
735 |
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
737 |
msgid "changed to"
|
738 |
msgstr "ændret til"
|
739 |
|
740 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
741 |
msgid "You cannot give an order that misses some numbers"
|
742 |
msgstr "Ved angivelse af rækkefølge skal hele talrækken med."
|
743 |
|
744 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
745 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
746 |
msgid "Nothing selected"
|
747 |
msgstr "Ingenting valgt "
|
748 |
|
749 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
750 |
msgid "Field(s)"
|
751 |
msgstr "Felt(er)"
|
752 |
|
753 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
754 |
msgid "deleted correctly"
|
755 |
msgstr "Sletning gennemført"
|
756 |
|
757 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
758 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
759 |
msgid "Min size"
|
760 |
msgstr "Min. størrelse"
|
761 |
|
762 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
763 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
764 |
msgid "Exact size"
|
765 |
msgstr "Eksakt størrelse"
|
766 |
|
767 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
768 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
769 |
msgid "Max size"
|
770 |
msgstr "Max. størrelse"
|
771 |
|
772 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
773 |
msgid "Exact or Max size"
|
774 |
msgstr "Eksakt eller Max. størrelse"
|
775 |
|
776 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
777 |
msgid "Name not specified"
|
778 |
msgstr "Navn ikke angivet"
|
779 |
|
780 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
781 |
msgid "Name cannot contains spaces"
|
782 |
msgstr "Navnet må ikke indeholde mellemrum"
|
783 |
|
784 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
785 |
msgid "Label not specified"
|
786 |
msgstr "Betegnelse ikke angivet"
|
787 |
|
788 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
789 |
msgid "not selected (with this type is necessary)"
|
790 |
msgstr "ikke valgt (kræves ved denne Type)"
|
791 |
|
792 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
793 |
msgid "If you select"
|
794 |
msgstr "Ved valg"
|
795 |
|
796 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
797 |
msgid "you cannot select Min or Max"
|
798 |
msgstr "Min eller Max kan ikke vælges"
|
799 |
|
800 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
801 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
803 |
msgid "should be in the range of"
|
804 |
msgstr "skal angives indenfor følgende talrække"
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
808 |
msgid "Equal TO not specified"
|
809 |
msgstr "LIG MED ikke angivet"
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
msgid "With checkbox type Equal TO can only be"
|
813 |
msgstr "Ved 'Type' - 'checkbox' kan LIG MED kun være"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
msgid "With radio type Equal TO can only be"
|
817 |
msgstr "Ved 'Type' - 'radio' kan LIG MED kun være"
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
820 |
msgid "With checkbox type Value can only be"
|
821 |
msgstr "Ved 'Type' - 'checkbox' kan 'Værdi' kun være"
|
822 |
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
msgid "With radio type Value can only be"
|
825 |
msgstr "Ved 'Type' - 'radio' kan 'Værdi' kun være"
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
msgid "Field inserted correctly"
|
829 |
msgstr "Felt indsat"
|
830 |
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
832 |
msgid "Field #"
|
833 |
msgstr "Felt #"
|
834 |
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
msgid "updated correctly"
|
837 |
msgstr "Opdatering gennemført"
|
838 |
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
840 |
msgid "Name inserted is just in the database, change to another one"
|
841 |
msgstr "Det valgte navn findes allerede, vælg venligst et andet"
|
842 |
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
844 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
845 |
msgstr "For at tilføje et nyt felt kræves angivelse af navn, type og betegnelse; værdi og beskrivelse kan fravælges. Reglerne anvendes under brugerregistrering."
|
846 |
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
849 |
msgstr "<strong>radio</strong> og <strong>checkbox</strong>: <em>Værdi</em> og <em>LIG MED</em> kan kun have værdierne 'Yes' eller 'No', dvs. valgt eller ikke valgt."
|
850 |
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
852 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
853 |
msgstr "<strong>drop-down</strong>: Du skal angive de mulige valgmuligheder under 'betegnelse' i følgende format: Betegnelse/værdi1,værdi2. F. eks.: Køn/mand,kvinde"
|
854 |
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
857 |
msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
|
858 |
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
860 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
861 |
msgstr "<strong>picture-url</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; <em>er LIG MED</em> betegner billedets maksimale pixelbredde (højden reguleres proportionelt)."
|
862 |
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
864 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
865 |
msgstr "<strong>registration-date</strong>: <em>LIG MED</em> henviser til dato- og tidsformat."
|
866 |
|
867 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
868 |
#, fuzzy
|
869 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
870 |
msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
|
871 |
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
873 |
#, fuzzy
|
874 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
875 |
msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
|
876 |
|
877 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
882 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
883 |
msgid "Name"
|
884 |
msgstr "Navn"
|
885 |
|
886 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
887 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
891 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
892 |
msgid "Value"
|
893 |
msgstr "Værdi"
|
894 |
|
895 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
898 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
899 |
msgid "Type"
|
900 |
msgstr "Type"
|
901 |
|
902 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
903 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
906 |
msgid "Label"
|
907 |
msgstr "Betegnelse"
|
908 |
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
910 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
911 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
912 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
913 |
msgid "Description"
|
914 |
msgstr "Beskrivelse"
|
915 |
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
917 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
918 |
msgid "Rules"
|
919 |
msgstr "Regler"
|
920 |
|
921 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
922 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
923 |
msgid "Actions"
|
924 |
msgstr "Handlinger"
|
925 |
|
926 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
927 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
929 |
#, fuzzy
|
930 |
msgid "Fieldset"
|
931 |
msgstr "Felter"
|
932 |
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
msgid "Can be empty"
|
936 |
msgstr "Kan være tomt"
|
937 |
|
938 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
msgid "Check for E-mail syntax"
|
941 |
msgstr "Kontroller venligst e-mailadressen"
|
942 |
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
944 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
945 |
msgid "Can be modified"
|
946 |
msgstr "Kan ændres"
|
947 |
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
950 |
msgid "Can be modified only if empty"
|
951 |
msgstr "Kan kun ændres hvis feltet er tomt"
|
952 |
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
955 |
msgid "Can be modified only by admin"
|
956 |
msgstr "Kan kun ændres af Administrator"
|
957 |
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
msgid "Can be modified only by admin or if empty"
|
961 |
msgstr "Kan kun ændres hvis det er tomt"
|
962 |
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
msgid "Cannot be modified"
|
966 |
msgstr "Kan ikke ændres"
|
967 |
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
970 |
msgid "Should be equal TO"
|
971 |
msgstr "Skal være LIG MED"
|
972 |
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
975 |
msgid "Case sensitive"
|
976 |
msgstr "Forskel på store og små bogstaver"
|
977 |
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
979 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
980 |
msgid "Regular Expression"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
984 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
985 |
msgid "Show the field in the registration"
|
986 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
987 |
|
988 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
989 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
990 |
msgid "Show the field in User's profile"
|
991 |
msgstr "Vis felt i 'Brugerprofil'"
|
992 |
|
993 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
994 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
995 |
-
|
|
|
996 |
msgstr "Vis felt under 'Vis alle brugere'"
|
997 |
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1000 |
#, fuzzy
|
1001 |
msgid "Show the field in the search engine"
|
1002 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
1003 |
|
1004 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1005 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1006 |
#, fuzzy
|
1007 |
msgid "Show the field in the blog"
|
1008 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
1009 |
|
1010 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1011 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1012 |
#, fuzzy
|
1013 |
msgid "Show the field if the role is at least:"
|
1014 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1018 |
msgid "Anonymous"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1023 |
msgid "Send an email to the admin if the user changes its value"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1027 |
msgid "Clear"
|
1028 |
msgstr "Slet"
|
1029 |
|
1030 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1031 |
msgid "Invert selection"
|
1032 |
msgstr "Omvend markering"
|
1033 |
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1035 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1036 |
msgstr "Er du sikker på at du vil slette dette/disse felt(er) og al tilknyttet brugerdata?"
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1039 |
msgid "WordPress Fields"
|
1040 |
msgstr "WordPress felter"
|
1041 |
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1043 |
msgid "None!"
|
1044 |
msgstr "Ingen!"
|
1045 |
|
1046 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1047 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1048 |
msgid "Order"
|
1049 |
msgstr "Rækkefølge"
|
1050 |
|
1051 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1052 |
msgid "Reset"
|
1053 |
msgstr "Nulstil"
|
1054 |
|
1055 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1056 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1057 |
#, fuzzy
|
1058 |
msgid "select"
|
1059 |
msgstr "Slet"
|
1060 |
|
1061 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1062 |
#, php-format
|
1063 |
msgid "Search results for “%s”"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1067 |
#, php-format
|
1068 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1072 |
msgid "Search Users"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1076 |
msgid "« Back to All Users"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1080 |
#, fuzzy
|
1081 |
msgid "Users per page"
|
1082 |
msgstr "Tabel for brugerdata"
|
1083 |
|
1084 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1085 |
msgid "Apply"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1089 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1090 |
-
msgid "Username"
|
1091 |
-
msgstr "Brugernavn"
|
1092 |
-
|
1093 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1515
|
1094 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1095 |
-
msgid "E-mail"
|
1096 |
-
msgstr "E-mail"
|
1097 |
-
|
1098 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1099 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1100 |
#, fuzzy
|
1101 |
msgid "Role"
|
1102 |
msgstr "Regler"
|
1103 |
|
1104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1106 |
msgid "Posts"
|
1107 |
msgstr "Indlæg"
|
1108 |
|
1109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1110 |
msgid "View posts by this author"
|
1111 |
msgstr "Vis denne brugers indlæg"
|
1112 |
|
1113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1114 |
#, php-format
|
1115 |
msgid "e-mail: %s"
|
1116 |
msgstr "e-mail: %s"
|
1117 |
|
1118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1119 |
#, fuzzy
|
1120 |
msgid "Change"
|
1121 |
msgstr "Ændre rækkefølge"
|
1122 |
|
1123 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1124 |
#, fuzzy
|
1125 |
msgid "Update selected users"
|
1126 |
msgstr "Slet valgte felter"
|
1127 |
|
1128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1129 |
#, fuzzy
|
1130 |
msgid "Update"
|
1131 |
msgstr "Opdater felt"
|
1132 |
|
1133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1134 |
msgid "OK"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1138 |
msgid "Cancel"
|
1139 |
msgstr ""
|
1140 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-06-19 16:33+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-06-19 16:33+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:453
|
|
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1241
|
34 |
msgid "ERROR"
|
35 |
msgstr "FEJL"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "E-mail adresse angivet forkert. "
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "Må ikke være tomt."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "er forkert"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
57 |
msgid "YES"
|
58 |
msgstr "JA"
|
59 |
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
63 |
msgid "NO"
|
64 |
msgstr "NEJ"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:463
|
67 |
msgid "should be"
|
68 |
msgstr "skulle være"
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "should be an image."
|
72 |
msgstr "burde være et billede."
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
75 |
msgid "couldn’t have size less than"
|
76 |
msgstr "Størrelse må ikke være mindre end"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
79 |
msgid "couldn’t have length less than"
|
80 |
msgstr "Længden må ikke være mindre end"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
83 |
msgid "couldn’t have size different than"
|
84 |
msgstr "Størrelse må ikke afvige fra"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
87 |
msgid "couldn’t have length different than"
|
88 |
msgstr "Længde må ikke afvige fra"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
91 |
msgid "couldn’t have size more than"
|
92 |
msgstr "Størrelse må ikke overstige"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
95 |
msgid "couldn’t have length more than"
|
96 |
msgstr "Længde må ikke overstige"
|
97 |
|
98 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
100 |
msgid "Typed code is not correct."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:636
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1528
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1529
|
106 |
+
msgid "Username"
|
107 |
+
msgstr "Brugernavn"
|
108 |
+
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:639
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1538
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
|
112 |
+
msgid "E-mail"
|
113 |
+
msgstr "E-mail"
|
114 |
+
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:889
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:302
|
117 |
#, fuzzy
|
118 |
msgid "Please upload a file with one of the following extensions"
|
119 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
120 |
|
121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:895
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:308
|
124 |
msgid "Please upload an image with one of the following extensions"
|
125 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1052
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
129 |
msgid "Strength indicator"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1053
|
133 |
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 ! \" ? $ % ^ & )."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1099
|
137 |
#, fuzzy
|
138 |
msgid "Change image"
|
139 |
msgstr "Ændre rækkefølge"
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1102
|
142 |
msgid "Insert the code:"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1163
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1165
|
147 |
+
msgid "Confirm your registration"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1171
|
151 |
+
msgid "A password will be e-mailed to you."
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1178
|
155 |
+
msgid "← Back"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
159 |
#, fuzzy
|
160 |
msgid "no fieldset"
|
164 |
msgid "All"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:44
|
168 |
msgid "WordPress Fields table emptied"
|
169 |
msgstr "WordPress tabel tømt"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:49
|
172 |
msgid "WordPress Fields table deleted"
|
173 |
msgstr "WordPress tabel slettet"
|
174 |
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:58
|
176 |
msgid "Extra Fields table emptied"
|
177 |
msgstr "Tabel med ekstra felter tømt"
|
178 |
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:63
|
180 |
msgid "Extra Fields table deleted"
|
181 |
msgstr "Tabel med ekstra felter slettet"
|
182 |
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:72
|
184 |
msgid "Users Data table emptied"
|
185 |
msgstr "Tabellen med brugerdata er blevet tømt"
|
186 |
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:77
|
188 |
msgid "Users Data table deleted"
|
189 |
msgstr "Tabellen med brugerdata er blevet slettet"
|
190 |
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:88
|
192 |
msgid "Options set to default values"
|
193 |
msgstr "Indstillinger nulstillet"
|
194 |
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:94
|
196 |
msgid "Options deleted"
|
197 |
msgstr "Indstillinger slettet"
|
198 |
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:349
|
200 |
msgid "Options changed"
|
201 |
msgstr "Indstillinger ændret"
|
202 |
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
204 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:489
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:754
|
210 |
msgid "Options"
|
211 |
msgstr "Indstillinger"
|
212 |
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
214 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:442
|
215 |
msgid "Add a new Field"
|
216 |
msgstr "Tilføj et nyt felt"
|
217 |
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:809
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
222 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
223 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:294
|
224 |
msgid "Extra Fields"
|
225 |
msgstr "Ekstra felter"
|
226 |
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
228 |
msgid "Support the Cimy Project"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
|
232 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:516
|
236 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1259
|
237 |
msgid "SUCCESSFUL"
|
238 |
msgstr "GENNEMFØRT"
|
239 |
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:856
|
242 |
msgid "Save Changes"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:531
|
246 |
msgid "General"
|
247 |
msgstr "Generelle indstillinger"
|
248 |
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:539
|
250 |
msgid "installed is"
|
251 |
msgstr "installeret er"
|
252 |
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
254 |
msgid "OPTIONS DELETED!"
|
255 |
msgstr "INDSTILLINGER SLETTET!"
|
256 |
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
258 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
259 |
msgid "Fix the problem"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
263 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
264 |
msgstr "VERSIONSKONFLIKT! Husk at deaktivere og genaktivere plugin'et efter opdatering!"
|
265 |
|
266 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
267 |
msgid "Picture/Avatar upload"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
271 |
msgid "is created and writable"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
275 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
279 |
#, fuzzy
|
280 |
msgid "Show all fields in the welcome email"
|
281 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
282 |
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
284 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
288 |
msgid "Enable email confirmation"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
292 |
msgid "user that registers should confirm its email address via a link click"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
|
296 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:595
|
300 |
+
msgid "Enable form confirmation"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
304 |
+
msgid "a summary of the registration form will be presented to the user"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
308 |
+
msgid "Customize welcome email sent to the new user"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
312 |
+
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
316 |
msgid "Redirect to the source"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
|
320 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
|
324 |
msgid "No captcha"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
328 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
332 |
msgid "Public KEY"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
336 |
msgid "Private KEY"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:651
|
340 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:654
|
344 |
msgid "This captcha is probably weaker, but is easier for users"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
348 |
#, php-format
|
349 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
353 |
msgid "Change login/registration page logo"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:450
|
358 |
#, fuzzy
|
359 |
msgid "Delete the picture"
|
360 |
msgstr "Slet felt"
|
361 |
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
363 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
367 |
msgid "Database"
|
368 |
msgstr "Database administration"
|
369 |
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:688
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:706
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
374 |
msgid "select action"
|
375 |
msgstr "Vælg handling"
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
378 |
msgid "Default values"
|
379 |
msgstr "Standard værdier"
|
380 |
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:708
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:727
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
385 |
msgid "Delete"
|
386 |
msgstr "Slet"
|
387 |
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:694
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:749
|
392 |
msgid "NOT PRESENT"
|
393 |
msgstr "FINDES IKKE"
|
394 |
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
396 |
msgid "WordPress Fields table"
|
397 |
msgstr "WordPress tabel"
|
398 |
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:726
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:743
|
402 |
msgid "Empty"
|
403 |
msgstr "Tøm"
|
404 |
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:719
|
406 |
msgid "Extra Fields table"
|
407 |
msgstr "Tabel med ekstra felter"
|
408 |
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:736
|
410 |
msgid "Users Data table"
|
411 |
msgstr "Tabel for brugerdata"
|
412 |
|
413 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:746
|
414 |
msgid "all data inserted by users in all and only extra fields"
|
415 |
msgstr "al brugerdata i alle ekstra felter"
|
416 |
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
418 |
msgid "Force tables creation"
|
419 |
msgstr "Gennemtving oprettelse af tabeller"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
422 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:763
|
426 |
msgid "User Profile"
|
427 |
msgstr "Brugerprofil"
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
430 |
#, fuzzy
|
431 |
msgid "Extra Fields section title"
|
432 |
msgstr "Tabel med ekstra felter"
|
433 |
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
435 |
msgid "Fieldset's titles, separates with comma"
|
436 |
msgstr "Feltrækkernes titel, adkilt med komma"
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
439 |
msgid "example: title1,title2,title3"
|
440 |
msgstr "F. eks.: Titel1,Titel2,Titel3"
|
441 |
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:771
|
443 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:776
|
447 |
msgid "Authors & Users Extended"
|
448 |
msgstr "Bruger liste"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:780
|
451 |
msgid "Hide username field"
|
452 |
msgstr "Skjul brugernavn"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
455 |
msgid "Hide name field"
|
456 |
msgstr "Skjul fornavn"
|
457 |
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:791
|
459 |
msgid "Hide email field"
|
460 |
msgstr "Skjul e-mailadresse"
|
461 |
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:795
|
463 |
#, fuzzy
|
464 |
msgid "Hide role field"
|
465 |
msgstr "Skjul fornavn"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
|
468 |
msgid "Hide website field"
|
469 |
msgstr "Skjul website"
|
470 |
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:803
|
472 |
msgid "Hide n. posts field"
|
473 |
msgstr "Skjul angivelse af antal af brugerindlæg"
|
474 |
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:808
|
476 |
msgid "WordPress hidden fields"
|
477 |
msgstr "Wordpress skjulte felter"
|
478 |
|
479 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:811
|
480 |
msgid "Show password"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:815
|
484 |
msgid "Show confirmation password"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:819
|
488 |
msgid "Show password strength meter"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:823
|
492 |
msgid "Show first name"
|
493 |
msgstr "Vis fornavn"
|
494 |
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
496 |
msgid "Show last name"
|
497 |
msgstr "Vis Efternavn"
|
498 |
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:831
|
500 |
msgid "Show nickname"
|
501 |
msgstr "Vis Kaldenavn"
|
502 |
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:835
|
504 |
msgid "Show website"
|
505 |
msgstr "Website"
|
506 |
|
507 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:839
|
508 |
msgid "Show AIM"
|
509 |
msgstr "Vis AIM"
|
510 |
|
511 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:843
|
512 |
msgid "Show Yahoo IM"
|
513 |
msgstr "Vis Yahoo IM"
|
514 |
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:847
|
516 |
msgid "Show Jabber / Google Talk"
|
517 |
msgstr "Vis Jabber / Google Talk"
|
518 |
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:851
|
520 |
msgid "Show Biographical Info"
|
521 |
msgstr ""
|
522 |
|
542 |
msgid "Mismatch"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:221
|
546 |
msgid "Password"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:241
|
550 |
msgid "Password confirmation"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:261
|
554 |
#, fuzzy
|
555 |
msgid "First name"
|
556 |
msgstr "Vis fornavn"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:281
|
559 |
#, fuzzy
|
560 |
msgid "Last name"
|
561 |
msgstr "Vis Efternavn"
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:301
|
564 |
#, fuzzy
|
565 |
msgid "Nickname"
|
566 |
msgstr "Navn"
|
567 |
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:321
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1548
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
|
571 |
msgid "Website"
|
572 |
msgstr "Website"
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:341
|
575 |
msgid "AIM"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:361
|
579 |
#, fuzzy
|
580 |
msgid "Yahoo IM"
|
581 |
msgstr "Vis Yahoo IM"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:381
|
584 |
#, fuzzy
|
585 |
msgid "Jabber / Google Talk"
|
586 |
msgstr "Vis Jabber / Google Talk"
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:401
|
589 |
msgid "Biographical Info"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
594 |
msgid "Fields"
|
595 |
msgstr "Felter"
|
596 |
|
|
|
597 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:765
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1421
|
601 |
#, fuzzy
|
602 |
msgid "Users Extended"
|
603 |
msgstr "Vis alle brugere"
|
616 |
msgid "File '%s' is not an image."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:446
|
620 |
#, fuzzy
|
621 |
msgid "Delete the file"
|
622 |
msgstr "Slet felt"
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
625 |
#, fuzzy
|
626 |
msgid "Update the file"
|
627 |
msgstr "Opdater felt"
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:451
|
630 |
#, fuzzy
|
631 |
msgid "Update the picture"
|
632 |
msgstr "Opdater felt"
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:471
|
635 |
msgid "Picture URL:"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:712
|
639 |
#, php-format
|
640 |
msgid "%s previous value: %s new value: %s"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:727
|
644 |
#, php-format
|
645 |
msgid "%s (%s) has changed one or more fields"
|
646 |
msgstr ""
|
651 |
msgstr ""
|
652 |
|
653 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
|
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:213
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:289
|
657 |
#, fuzzy, php-format
|
658 |
msgid "Username: %s"
|
659 |
msgstr "Brugernavn"
|
668 |
msgid "[%s] New User Registration"
|
669 |
msgstr ""
|
670 |
|
|
|
|
|
|
|
|
|
|
|
|
|
671 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
672 |
#, php-format
|
673 |
msgid "[%s] Your username and password"
|
706 |
msgid "An error occurred during the activation"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
710 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:290
|
712 |
+
#, php-format
|
713 |
+
msgid "Password: %s"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
717 |
msgid "Invalid activation key."
|
718 |
msgstr ""
|
741 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
745 |
msgid "Add field"
|
746 |
msgstr "Tilføj felt"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
749 |
msgid "Update field"
|
750 |
msgstr "Opdater felt"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
|
753 |
msgid "Delete field"
|
754 |
msgstr "Slet felt"
|
755 |
|
756 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
|
757 |
msgid "Delete selected fields"
|
758 |
msgstr "Slet valgte felter"
|
759 |
|
760 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
|
761 |
msgid "Change order"
|
762 |
msgstr "Ændre rækkefølge"
|
763 |
|
764 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
765 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
|
766 |
msgid "Min length"
|
767 |
msgstr "Min. længde"
|
768 |
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
770 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
771 |
msgid "Exact length"
|
772 |
msgstr "Eksakt længde"
|
773 |
|
774 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
776 |
msgid "Max length"
|
777 |
msgstr "Max. længde"
|
778 |
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
|
780 |
msgid "Exact or Max length"
|
781 |
msgstr "Eksakt eller max. længde"
|
782 |
|
783 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
784 |
msgid "changed to"
|
785 |
msgstr "ændret til"
|
786 |
|
787 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
788 |
msgid "You cannot give an order that misses some numbers"
|
789 |
msgstr "Ved angivelse af rækkefølge skal hele talrækken med."
|
790 |
|
791 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:210
|
793 |
msgid "Nothing selected"
|
794 |
msgstr "Ingenting valgt "
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
797 |
msgid "Field(s)"
|
798 |
msgstr "Felt(er)"
|
799 |
|
800 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
801 |
msgid "deleted correctly"
|
802 |
msgstr "Sletning gennemført"
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:239
|
805 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1056
|
806 |
msgid "Min size"
|
807 |
msgstr "Min. størrelse"
|
808 |
|
809 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
810 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
811 |
msgid "Exact size"
|
812 |
msgstr "Eksakt størrelse"
|
813 |
|
814 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:241
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
816 |
msgid "Max size"
|
817 |
msgstr "Max. størrelse"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
820 |
msgid "Exact or Max size"
|
821 |
msgstr "Eksakt eller Max. størrelse"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:299
|
824 |
msgid "Name not specified"
|
825 |
msgstr "Navn ikke angivet"
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
828 |
msgid "Name cannot contains spaces"
|
829 |
msgstr "Navnet må ikke indeholde mellemrum"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
|
832 |
msgid "Label not specified"
|
833 |
msgstr "Betegnelse ikke angivet"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
|
836 |
msgid "not selected (with this type is necessary)"
|
837 |
msgstr "ikke valgt (kræves ved denne Type)"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
840 |
msgid "If you select"
|
841 |
msgstr "Ved valg"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
844 |
msgid "you cannot select Min or Max"
|
845 |
msgstr "Min eller Max kan ikke vælges"
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:330
|
850 |
msgid "should be in the range of"
|
851 |
msgstr "skal angives indenfor følgende talrække"
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:340
|
|
|
854 |
msgid "Equal TO not specified"
|
855 |
msgstr "LIG MED ikke angivet"
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:343
|
858 |
msgid "With checkbox type Equal TO can only be"
|
859 |
msgstr "Ved 'Type' - 'checkbox' kan LIG MED kun være"
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:346
|
862 |
msgid "With radio type Equal TO can only be"
|
863 |
msgstr "Ved 'Type' - 'radio' kan LIG MED kun være"
|
864 |
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:362
|
866 |
msgid "With checkbox type Value can only be"
|
867 |
msgstr "Ved 'Type' - 'checkbox' kan 'Værdi' kun være"
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:365
|
870 |
msgid "With radio type Value can only be"
|
871 |
msgstr "Ved 'Type' - 'radio' kan 'Værdi' kun være"
|
872 |
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
874 |
msgid "Field inserted correctly"
|
875 |
msgstr "Felt indsat"
|
876 |
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
878 |
msgid "Field #"
|
879 |
msgstr "Felt #"
|
880 |
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
882 |
msgid "updated correctly"
|
883 |
msgstr "Opdatering gennemført"
|
884 |
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
886 |
msgid "Name inserted is just in the database, change to another one"
|
887 |
msgstr "Det valgte navn findes allerede, vælg venligst et andet"
|
888 |
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
890 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
891 |
msgstr "For at tilføje et nyt felt kræves angivelse af navn, type og betegnelse; værdi og beskrivelse kan fravælges. Reglerne anvendes under brugerregistrering."
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
894 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
895 |
msgstr "<strong>radio</strong> og <strong>checkbox</strong>: <em>Værdi</em> og <em>LIG MED</em> kan kun have værdierne 'Yes' eller 'No', dvs. valgt eller ikke valgt."
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
898 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
899 |
msgstr "<strong>drop-down</strong>: Du skal angive de mulige valgmuligheder under 'betegnelse' i følgende format: Betegnelse/værdi1,værdi2. F. eks.: Køn/mand,kvinde"
|
900 |
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
902 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
903 |
msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
|
904 |
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
906 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
907 |
msgstr "<strong>picture-url</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; <em>er LIG MED</em> betegner billedets maksimale pixelbredde (højden reguleres proportionelt)."
|
908 |
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
910 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
911 |
msgstr "<strong>registration-date</strong>: <em>LIG MED</em> henviser til dato- og tidsformat."
|
912 |
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
914 |
#, fuzzy
|
915 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
916 |
msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
|
917 |
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
919 |
#, fuzzy
|
920 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
921 |
msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
|
922 |
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:648
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1089
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1533
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
|
929 |
msgid "Name"
|
930 |
msgstr "Navn"
|
931 |
|
|
|
932 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1092
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
938 |
msgid "Value"
|
939 |
msgstr "Værdi"
|
940 |
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:639
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1095
|
945 |
msgid "Type"
|
946 |
msgstr "Type"
|
947 |
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
952 |
msgid "Label"
|
953 |
msgstr "Betegnelse"
|
954 |
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:672
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
959 |
msgid "Description"
|
960 |
msgstr "Beskrivelse"
|
961 |
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
964 |
msgid "Rules"
|
965 |
msgstr "Regler"
|
966 |
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
969 |
msgid "Actions"
|
970 |
msgstr "Handlinger"
|
971 |
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
975 |
#, fuzzy
|
976 |
msgid "Fieldset"
|
977 |
msgstr "Felter"
|
978 |
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
981 |
msgid "Can be empty"
|
982 |
msgstr "Kan være tomt"
|
983 |
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
986 |
msgid "Check for E-mail syntax"
|
987 |
msgstr "Kontroller venligst e-mailadressen"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:688
|
990 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
991 |
msgid "Can be modified"
|
992 |
msgstr "Kan ændres"
|
993 |
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
995 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1139
|
996 |
msgid "Can be modified only if empty"
|
997 |
msgstr "Kan kun ændres hvis feltet er tomt"
|
998 |
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
|
1000 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
1001 |
msgid "Can be modified only by admin"
|
1002 |
msgstr "Kan kun ændres af Administrator"
|
1003 |
|
1004 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
1006 |
msgid "Can be modified only by admin or if empty"
|
1007 |
msgstr "Kan kun ændres hvis det er tomt"
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:692
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
1011 |
msgid "Cannot be modified"
|
1012 |
msgstr "Kan ikke ændres"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
1016 |
msgid "Should be equal TO"
|
1017 |
msgstr "Skal være LIG MED"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
1020 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
1021 |
msgid "Case sensitive"
|
1022 |
msgstr "Forskel på store og små bogstaver"
|
1023 |
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
1025 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
1026 |
msgid "Regular Expression"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
1030 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1155
|
1031 |
msgid "Show the field in the registration"
|
1032 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
1033 |
|
1034 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
1036 |
msgid "Show the field in User's profile"
|
1037 |
msgstr "Vis felt i 'Brugerprofil'"
|
1038 |
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
1040 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1167
|
1041 |
+
#, fuzzy
|
1042 |
+
msgid "Show the field in Users Extended menu"
|
1043 |
msgstr "Vis felt under 'Vis alle brugere'"
|
1044 |
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
1046 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1170
|
1047 |
#, fuzzy
|
1048 |
msgid "Show the field in the search engine"
|
1049 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
1050 |
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
1052 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1173
|
1053 |
#, fuzzy
|
1054 |
msgid "Show the field in the blog"
|
1055 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
1056 |
|
1057 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:723
|
1058 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1176
|
1059 |
#, fuzzy
|
1060 |
msgid "Show the field if the role is at least:"
|
1061 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
1062 |
|
1063 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:725
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1065 |
msgid "Anonymous"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1184
|
1070 |
+
msgid "User has 'view_cimy_extra_fields' capability"
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:736
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
1075 |
msgid "Send an email to the admin if the user changes its value"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:738
|
1079 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1197
|
1080 |
+
#, fuzzy
|
1081 |
+
msgid "Advanced options"
|
1082 |
+
msgstr "Handlinger"
|
1083 |
+
|
1084 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
1085 |
msgid "Clear"
|
1086 |
msgstr "Slet"
|
1087 |
|
1088 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
|
1089 |
msgid "Invert selection"
|
1090 |
msgstr "Omvend markering"
|
1091 |
|
1092 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
|
1093 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1094 |
msgstr "Er du sikker på at du vil slette dette/disse felt(er) og al tilknyttet brugerdata?"
|
1095 |
|
1096 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1097 |
msgid "WordPress Fields"
|
1098 |
msgstr "WordPress felter"
|
1099 |
|
1100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
1101 |
msgid "None!"
|
1102 |
msgstr "Ingen!"
|
1103 |
|
1104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
|
1105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1077
|
1106 |
msgid "Order"
|
1107 |
msgstr "Rækkefølge"
|
1108 |
|
1109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1201
|
1110 |
msgid "Reset"
|
1111 |
msgstr "Nulstil"
|
1112 |
|
1113 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1288
|
1114 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1903
|
1115 |
#, fuzzy
|
1116 |
msgid "select"
|
1117 |
msgstr "Slet"
|
1118 |
|
1119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1429
|
1120 |
#, php-format
|
1121 |
msgid "Search results for “%s”"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
|
1125 |
#, php-format
|
1126 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1465
|
1130 |
msgid "Search Users"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
1134 |
msgid "« Back to All Users"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1501
|
1138 |
#, fuzzy
|
1139 |
msgid "Users per page"
|
1140 |
msgstr "Tabel for brugerdata"
|
1141 |
|
1142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1143 |
msgid "Apply"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1543
|
1147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1148 |
#, fuzzy
|
1149 |
msgid "Role"
|
1150 |
msgstr "Regler"
|
1151 |
|
1152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1553
|
1153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
|
1154 |
msgid "Posts"
|
1155 |
msgstr "Indlæg"
|
1156 |
|
1157 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1691
|
1158 |
msgid "View posts by this author"
|
1159 |
msgstr "Vis denne brugers indlæg"
|
1160 |
|
1161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1725
|
1162 |
#, php-format
|
1163 |
msgid "e-mail: %s"
|
1164 |
msgstr "e-mail: %s"
|
1165 |
|
1166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1847
|
1167 |
#, fuzzy
|
1168 |
msgid "Change"
|
1169 |
msgstr "Ændre rækkefølge"
|
1170 |
|
1171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1872
|
1172 |
#, fuzzy
|
1173 |
msgid "Update selected users"
|
1174 |
msgstr "Slet valgte felter"
|
1175 |
|
1176 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1177 |
#, fuzzy
|
1178 |
msgid "Update"
|
1179 |
msgstr "Opdater felt"
|
1180 |
|
1181 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1908
|
1182 |
msgid "OK"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1909
|
1186 |
msgid "Cancel"
|
1187 |
msgstr ""
|
1188 |
|
langs/cimy_uef-de_DE.mo
CHANGED
Binary file
|
langs/cimy_uef-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,116 +16,145 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "FEHLER"
|
36 |
|
37 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "hat eine fehlerhafte Email-Syntax. "
|
44 |
|
45 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "darf nicht leer sein."
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "ist nicht richtig"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
55 |
msgid "YES"
|
56 |
msgstr "JA"
|
57 |
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
59 |
msgid "NO"
|
60 |
msgstr "NEIN"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
msgid "should be"
|
64 |
msgstr "sollte sein"
|
65 |
|
66 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
67 |
msgid "should be an image."
|
68 |
msgstr "sollte ein Bild sein."
|
69 |
|
70 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "darf keine Größe haben unter"
|
73 |
|
74 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "darf keine Länge haben unter"
|
77 |
|
78 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "darf keine Größe haben, die um mehr abweicht als"
|
81 |
|
82 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "darf keine Länge habe, die um mehr abweicht als"
|
85 |
|
86 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "darf keine Größe haben über"
|
89 |
|
90 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "darf keine Länge haben über"
|
93 |
|
94 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
95 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
104 |
|
105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
110 |
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
113 |
msgid "Strength indicator"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
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 ! \" ? $ % ^ & )."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
121 |
#, fuzzy
|
122 |
msgid "Change image"
|
123 |
msgstr "Reihenfolge ändern "
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
126 |
msgid "Insert the code:"
|
127 |
msgstr ""
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
130 |
#, fuzzy
|
131 |
msgid "no fieldset"
|
@@ -135,342 +164,358 @@ msgstr "\"Benutzerdefinierte Felder\" pro Abschnitt"
|
|
135 |
msgid "All"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
139 |
msgid "WordPress Fields table emptied"
|
140 |
msgstr "WP-Datenbank-Tabelle Zusatzfelder geleert"
|
141 |
|
142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
143 |
msgid "WordPress Fields table deleted"
|
144 |
msgstr "WP-Datenbank-Tabelle Zusatzfelder gelöscht"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
147 |
msgid "Extra Fields table emptied"
|
148 |
msgstr "Tabelle \"Benutzerdefinierte Felder\" geleert"
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
151 |
msgid "Extra Fields table deleted"
|
152 |
msgstr "Tabelle \"Benutzerdefinierte Felder\" gelöscht"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
155 |
msgid "Users Data table emptied"
|
156 |
msgstr "Tabelle \"Benutzerdaten\" geleert"
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
159 |
msgid "Users Data table deleted"
|
160 |
msgstr "Tabelle \"Benutzerdaten\" gelöscht"
|
161 |
|
162 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
163 |
msgid "Options set to default values"
|
164 |
msgstr "Einstellungen auf Grundeinstellungen zurück gesetzt"
|
165 |
|
166 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
167 |
msgid "Options deleted"
|
168 |
msgstr "Einstellungen gelöscht"
|
169 |
|
170 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
171 |
msgid "Options changed"
|
172 |
msgstr "Einstellungen aktualisiert"
|
173 |
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
175 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
180 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
181 |
msgid "Options"
|
182 |
msgstr "Einstellungen"
|
183 |
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
185 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
186 |
msgid "Add a new Field"
|
187 |
msgstr "Ein neues Feld hinzufügen"
|
188 |
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
190 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
191 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
195 |
msgid "Extra Fields"
|
196 |
msgstr "Benutzerdefinierte Felder"
|
197 |
|
198 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
199 |
msgid "Support the Cimy Project"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
203 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
207 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
208 |
msgid "SUCCESSFUL"
|
209 |
msgstr "ERFOLGREICH"
|
210 |
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
213 |
msgid "Save Changes"
|
214 |
msgstr "Einstellungen aktualisieren"
|
215 |
|
216 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
217 |
msgid "General"
|
218 |
msgstr "Allgemein"
|
219 |
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
221 |
msgid "installed is"
|
222 |
msgstr "installiert ist"
|
223 |
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
225 |
msgid "OPTIONS DELETED!"
|
226 |
msgstr "EINSTELLUNGEN GELÖSCHT!"
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
230 |
msgid "Fix the problem"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
234 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
235 |
msgstr "VERSIONEN NICHT KOMPATIBEL! Du hast das Plugin nach dem Update nicht deaktiviert und anschließend reaktiviert. Das könnte Probleme geben..."
|
236 |
|
237 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
238 |
msgid "Picture/Avatar upload"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
242 |
msgid "is created and writable"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
246 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
250 |
#, fuzzy
|
251 |
msgid "Show all fields in the welcome email"
|
252 |
msgstr "Zeige das Feld bei der Registrierung"
|
253 |
|
254 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
255 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
259 |
msgid "Enable email confirmation"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
263 |
msgid "user that registers should confirm its email address via a link click"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
267 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
msgid "Redirect to the source"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
275 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
279 |
msgid "No captcha"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
283 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
287 |
msgid "Public KEY"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
291 |
msgid "Private KEY"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
295 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
299 |
msgid "This captcha is probably weaker, but is easier for users"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
303 |
#, php-format
|
304 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
308 |
msgid "Change login/registration page logo"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
313 |
msgid "Delete the picture"
|
314 |
msgstr "Bild löschen"
|
315 |
|
316 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
317 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
321 |
msgid "Database"
|
322 |
msgstr "Datenbank"
|
323 |
|
324 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
327 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
328 |
msgid "select action"
|
329 |
msgstr "Wähle Aktion"
|
330 |
|
331 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
332 |
msgid "Default values"
|
333 |
msgstr "Werte: Grundeinstellung"
|
334 |
|
335 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
336 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
339 |
msgid "Delete"
|
340 |
msgstr "Löschen"
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
344 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
346 |
msgid "NOT PRESENT"
|
347 |
msgstr "NICHT VORHANDEN"
|
348 |
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
350 |
msgid "WordPress Fields table"
|
351 |
msgstr "WP-Datenbank-Tabelle"
|
352 |
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
356 |
msgid "Empty"
|
357 |
msgstr "Leer"
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
360 |
msgid "Extra Fields table"
|
361 |
msgstr "Tabelle \"Benutzerdefinierte Felder\""
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
364 |
msgid "Users Data table"
|
365 |
msgstr "Tabelle \"Benutzerdaten\""
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
368 |
msgid "all data inserted by users in all and only extra fields"
|
369 |
msgstr "alle von \"Benutzern\" in die Cimy-Zusatzfelder eingetragenen Daten"
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
372 |
msgid "Force tables creation"
|
373 |
msgstr "Erzwingt die Erstellung der Datenbanktabellen"
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
376 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
377 |
msgstr "Achtung: Mit dieser Einstellung zwingen Sie das PlugIn die Datenbanktabellen zu erstellen. Dieser Schritt wird auch bei (De-)Aktivierung des PlugIns durchgeführt."
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
380 |
msgid "User Profile"
|
381 |
msgstr "\"Benutzer\" Profil"
|
382 |
|
383 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
384 |
msgid "Extra Fields section title"
|
385 |
msgstr "Titel für \"Benutzerdefinierte Felder\""
|
386 |
|
387 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
388 |
msgid "Fieldset's titles, separates with comma"
|
389 |
msgstr "Titel des Abschnitts der \"Benutzerdefinierten Felder\", abgetrennt durch Kommata (',')"
|
390 |
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
392 |
msgid "example: title1,title2,title3"
|
393 |
msgstr "Beispiel: Titel1, Titel2, Titel3"
|
394 |
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
396 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
400 |
msgid "Authors & Users Extended"
|
401 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
402 |
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
404 |
msgid "Hide username field"
|
405 |
msgstr "Feld: \"'Benutzer'-Name\" nicht anzeigen"
|
406 |
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
408 |
msgid "Hide name field"
|
409 |
msgstr "Feld: \"Name\" nicht anzeigen"
|
410 |
|
411 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
412 |
msgid "Hide email field"
|
413 |
msgstr "Feld: \"E-mail Adresse\" nicht anzeigen"
|
414 |
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
416 |
msgid "Hide role field"
|
417 |
msgstr "Feld: \"Rolle\" des \"Benutzers\" nicht anzeigen"
|
418 |
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
420 |
msgid "Hide website field"
|
421 |
msgstr "Feld: \"Webseite\" nicht anzeigen"
|
422 |
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
424 |
msgid "Hide n. posts field"
|
425 |
msgstr "Feld: Anzahl der von \"Benutzer(n)\" erstellten Artikel nicht anzeigen"
|
426 |
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
428 |
msgid "WordPress hidden fields"
|
429 |
msgstr "Feld: \"Wordpress hidden fields\" (verborgene Felder)"
|
430 |
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
432 |
msgid "Show password"
|
433 |
msgstr "\"Passwort\" anzeigen"
|
434 |
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
436 |
#, fuzzy
|
437 |
msgid "Show confirmation password"
|
438 |
msgstr "\"Passwort\" anzeigen"
|
439 |
|
440 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
441 |
#, fuzzy
|
442 |
msgid "Show password strength meter"
|
443 |
msgstr "\"Passwort\" anzeigen"
|
444 |
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
446 |
msgid "Show first name"
|
447 |
msgstr "Zeige \"Vornamen\""
|
448 |
|
449 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
450 |
msgid "Show last name"
|
451 |
msgstr "Zeige \"Nachnamen\""
|
452 |
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
454 |
msgid "Show nickname"
|
455 |
msgstr "Zeige \"Nicknamen\"/Spitznamen"
|
456 |
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
458 |
msgid "Show website"
|
459 |
msgstr "Zeige \"Webseite\""
|
460 |
|
461 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
462 |
msgid "Show AIM"
|
463 |
msgstr "Zeige \"AIM\""
|
464 |
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
466 |
msgid "Show Yahoo IM"
|
467 |
msgstr "Zeige \"Yahoo IM\""
|
468 |
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
470 |
msgid "Show Jabber / Google Talk"
|
471 |
msgstr "Zeige \"Jabber / Google Talk\""
|
472 |
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
474 |
msgid "Show Biographical Info"
|
475 |
msgstr "\"Weitere Informationen\" anzeigen"
|
476 |
|
@@ -496,57 +541,57 @@ msgstr ""
|
|
496 |
msgid "Mismatch"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
500 |
msgid "Password"
|
501 |
msgstr "Passwort"
|
502 |
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
504 |
msgid "Password confirmation"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
508 |
msgid "First name"
|
509 |
msgstr "Vorname"
|
510 |
|
511 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
512 |
msgid "Last name"
|
513 |
msgstr "Nachname"
|
514 |
|
515 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
516 |
msgid "Nickname"
|
517 |
msgstr "Spitzname"
|
518 |
|
519 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
520 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
522 |
msgid "Website"
|
523 |
msgstr "Webseite"
|
524 |
|
525 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
526 |
msgid "AIM"
|
527 |
msgstr "AIM"
|
528 |
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
530 |
msgid "Yahoo IM"
|
531 |
msgstr "Yahoo IM"
|
532 |
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
534 |
msgid "Jabber / Google Talk"
|
535 |
msgstr "Jabber / Google Talk"
|
536 |
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
538 |
msgid "Biographical Info"
|
539 |
msgstr "Weitere Informationen"
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
542 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
543 |
msgid "Fields"
|
544 |
msgstr "Felder"
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:752
|
547 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
549 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
550 |
#, fuzzy
|
551 |
msgid "Users Extended"
|
552 |
msgstr "Liste aller \"Benutzer\""
|
@@ -565,30 +610,30 @@ msgstr "Die \"GD image library\" ist nicht installiert"
|
|
565 |
msgid "File '%s' is not an image."
|
566 |
msgstr "Datei '%s' muss Bild-Datei sein"
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
569 |
#, fuzzy
|
570 |
msgid "Delete the file"
|
571 |
msgstr "Bild löschen"
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
574 |
#, fuzzy
|
575 |
msgid "Update the file"
|
576 |
msgstr "Bild aktualisieren"
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
579 |
msgid "Update the picture"
|
580 |
msgstr "Bild aktualisieren"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
583 |
msgid "Picture URL:"
|
584 |
msgstr "URL für Bild:"
|
585 |
|
586 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
587 |
#, php-format
|
588 |
msgid "%s previous value: %s new value: %s"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
592 |
#, php-format
|
593 |
msgid "%s (%s) has changed one or more fields"
|
594 |
msgstr ""
|
@@ -599,8 +644,9 @@ msgid "New user registration on your site %s:"
|
|
599 |
msgstr ""
|
600 |
|
601 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
603 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
|
|
|
|
604 |
#, fuzzy, php-format
|
605 |
msgid "Username: %s"
|
606 |
msgstr "\"Benutzer\"name"
|
@@ -615,12 +661,6 @@ msgstr "E-Mail: %s"
|
|
615 |
msgid "[%s] New User Registration"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
619 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
620 |
-
#, fuzzy, php-format
|
621 |
-
msgid "Password: %s"
|
622 |
-
msgstr "Passwort"
|
623 |
-
|
624 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
625 |
#, php-format
|
626 |
msgid "[%s] Your username and password"
|
@@ -659,6 +699,13 @@ msgstr ""
|
|
659 |
msgid "An error occurred during the activation"
|
660 |
msgstr ""
|
661 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
662 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
663 |
msgid "Invalid activation key."
|
664 |
msgstr ""
|
@@ -687,444 +734,445 @@ msgstr ""
|
|
687 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
691 |
msgid "Add field"
|
692 |
msgstr "Feld hinzufügen"
|
693 |
|
694 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
695 |
msgid "Update field"
|
696 |
msgstr "Feld aktualisieren"
|
697 |
|
698 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
699 |
msgid "Delete field"
|
700 |
msgstr "Feld löschen"
|
701 |
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
703 |
msgid "Delete selected fields"
|
704 |
msgstr "Ausgewählte Felder löschen"
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
707 |
msgid "Change order"
|
708 |
msgstr "Reihenfolge ändern "
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
711 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
712 |
msgid "Min length"
|
713 |
msgstr "Minimale Länge"
|
714 |
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
716 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
717 |
msgid "Exact length"
|
718 |
msgstr "Exakte Länge"
|
719 |
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
721 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
722 |
msgid "Max length"
|
723 |
msgstr "Maximale Länge"
|
724 |
|
725 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
726 |
msgid "Exact or Max length"
|
727 |
msgstr "Exakte oder maximale Länge"
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
730 |
msgid "changed to"
|
731 |
msgstr "geändert in"
|
732 |
|
733 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
734 |
msgid "You cannot give an order that misses some numbers"
|
735 |
msgstr "Die Ordnungnummern müssen fortlaufen & durchgängig sein."
|
736 |
|
737 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
738 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
739 |
msgid "Nothing selected"
|
740 |
msgstr "Nichts ausgewählt"
|
741 |
|
742 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
743 |
msgid "Field(s)"
|
744 |
msgstr "Feld(er)"
|
745 |
|
746 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
747 |
msgid "deleted correctly"
|
748 |
msgstr "erfolgreich gelöscht"
|
749 |
|
750 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
751 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
752 |
msgid "Min size"
|
753 |
msgstr "Minimale Größe"
|
754 |
|
755 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
756 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
757 |
msgid "Exact size"
|
758 |
msgstr "Exakte Größe"
|
759 |
|
760 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
761 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
762 |
msgid "Max size"
|
763 |
msgstr "Maximale Größe"
|
764 |
|
765 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
766 |
msgid "Exact or Max size"
|
767 |
msgstr "Exakte oder maximale Größe"
|
768 |
|
769 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
770 |
msgid "Name not specified"
|
771 |
msgstr "Name nicht ausgefüllt"
|
772 |
|
773 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
774 |
msgid "Name cannot contains spaces"
|
775 |
msgstr "Der Name darf keine Leerstellen enthalten."
|
776 |
|
777 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
778 |
msgid "Label not specified"
|
779 |
msgstr "\"label\"/Feld-Titel nicht ausgefüllt"
|
780 |
|
781 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
782 |
msgid "not selected (with this type is necessary)"
|
783 |
msgstr "nicht ausgewählt (für diesen Typ notwendig)"
|
784 |
|
785 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
786 |
msgid "If you select"
|
787 |
msgstr "Wenn Sie folgendes auswählen"
|
788 |
|
789 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
790 |
msgid "you cannot select Min or Max"
|
791 |
msgstr "Sie dürfen \"Min\" oder \"Max\" nicht festlegen"
|
792 |
|
793 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
796 |
msgid "should be in the range of"
|
797 |
msgstr "sollte im Bereich sein (von/bis)"
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
800 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
801 |
msgid "Equal TO not specified"
|
802 |
msgstr "ENTSPRICHT (equal TO) nicht spezifiziert"
|
803 |
|
804 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
805 |
msgid "With checkbox type Equal TO can only be"
|
806 |
msgstr "Beim Typ <strong>checkbox</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
807 |
|
808 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
809 |
msgid "With radio type Equal TO can only be"
|
810 |
msgstr "Beim Typ <strong>radio</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
811 |
|
812 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
813 |
msgid "With checkbox type Value can only be"
|
814 |
msgstr "Beim Typ <strong>checkbox</strong> kann der Wert/$value nur folgendes sein"
|
815 |
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
817 |
msgid "With radio type Value can only be"
|
818 |
msgstr "Beim Typ <strong>radio</strong> kann der Wert/$value nur folgendes sein"
|
819 |
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
821 |
msgid "Field inserted correctly"
|
822 |
msgstr "Feld richtig eingefügt."
|
823 |
|
824 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
825 |
msgid "Field #"
|
826 |
msgstr "Feld #"
|
827 |
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
829 |
msgid "updated correctly"
|
830 |
msgstr "Update erfolgreich"
|
831 |
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
833 |
msgid "Name inserted is just in the database, change to another one"
|
834 |
msgstr "Dieser Name ist in der Datenbank bereits vorhanden, bitte wähle einen anderen"
|
835 |
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
837 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
838 |
msgstr "Um ein neues Feld hinzuzufügen, musst Du einen Namen, einen Typ und eine Bezeichnung/\"label\" angeben. Wert/$value und Beschreibung sind optional. Die Regeln werden bei der User-Registrierung angewandt."
|
839 |
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
841 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
842 |
msgstr "Bei <strong>radio</strong> und <strong>checkbox</strong> gilt: <em>Wert/$value</em> und <em>ENTSRPICHT(equal TO)</em> können nur \"Yes\" oder \"No\" beinhalten, was \"ausgewählt\" oder \"nicht ausgewählt\" bedeutet."
|
843 |
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
845 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
846 |
msgstr "Bei <strong>drop-down</strong> gilt: Du musst alle möglichen Werte in das Feld Bezeichnung/\"label\" schreiben. Beispiel: Bezeichnung/Wert1,Wert2. Pseudocode: Benutzerdefinierter Schlüssel/Wert,Wert; Code: $key/$value,$value; Spezifiziertes Beispiel: Geschlecht/männlich,weiblich"
|
847 |
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
850 |
msgstr "Bei <strong>picture</strong> gilt: Du kannst ein Bild hochladen, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT(equal TO)</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
|
851 |
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
853 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
854 |
msgstr "Bei <strong>picture-url</strong> gilt: Du kannst ein Bild einstellen, indem Du die Bildadresse (Url) in <em>Wert/$value</em> eingibst; <em>ENTSPRICHT(equal TO)</em> meint die maximale Breite in Pixel (die Höhe wird proportional angepasst)."
|
855 |
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
857 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
858 |
msgstr "Bei <strong>registration-date</strong> gilt: <em>ENTSRPICHT(equal TO)</em> meint das Format für Datum und Zeit."
|
859 |
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
861 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
862 |
msgstr "Für <strong>Avatar</strong>: Du kannst einen Standardavatar laden, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
|
863 |
|
864 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
865 |
#, fuzzy
|
866 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
867 |
msgstr "Bei <strong>picture</strong> gilt: Du kannst ein Bild hochladen, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT(equal TO)</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
|
868 |
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
870 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
871 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
873 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
874 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
875 |
msgid "Name"
|
876 |
msgstr "Name"
|
877 |
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
879 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
882 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
883 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
884 |
msgid "Value"
|
885 |
msgstr "Wert/$value"
|
886 |
|
887 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
891 |
msgid "Type"
|
892 |
msgstr "Typ"
|
893 |
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
895 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
898 |
msgid "Label"
|
899 |
msgstr "Bezeichnung/\"label\""
|
900 |
|
901 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
902 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
903 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
905 |
msgid "Description"
|
906 |
msgstr "Beschreibung"
|
907 |
|
908 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
910 |
msgid "Rules"
|
911 |
msgstr "Regeln"
|
912 |
|
913 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
914 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
915 |
msgid "Actions"
|
916 |
msgstr "Aktion"
|
917 |
|
918 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
919 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
920 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
921 |
#, fuzzy
|
922 |
msgid "Fieldset"
|
923 |
msgstr "Felder"
|
924 |
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
926 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
927 |
msgid "Can be empty"
|
928 |
msgstr "Kann leer sein"
|
929 |
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
931 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
932 |
msgid "Check for E-mail syntax"
|
933 |
msgstr "Kontrollieren Sie bitte die E-Mail-Syntax"
|
934 |
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
937 |
msgid "Can be modified"
|
938 |
msgstr "Änderung des Feldes möglich"
|
939 |
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
942 |
msgid "Can be modified only if empty"
|
943 |
msgstr "Änderung des Feldes möglich wenn leer"
|
944 |
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
946 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
947 |
msgid "Can be modified only by admin"
|
948 |
msgstr "Änderung des Feldes nur durch Admin möglich"
|
949 |
|
950 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
951 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
952 |
msgid "Can be modified only by admin or if empty"
|
953 |
msgstr "Änderung des Feldes nur durch Admin, oder wenn leer"
|
954 |
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
957 |
msgid "Cannot be modified"
|
958 |
msgstr "Änderung des Feldes nicht möglich"
|
959 |
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
961 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
962 |
msgid "Should be equal TO"
|
963 |
msgstr "ENTSPRICHT (equal TO) folgendem"
|
964 |
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
966 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
967 |
msgid "Case sensitive"
|
968 |
msgstr "Groß-/Kleinschreibung beachten"
|
969 |
|
970 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
971 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
972 |
msgid "Regular Expression"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
977 |
msgid "Show the field in the registration"
|
978 |
msgstr "Zeige das Feld bei der Registrierung"
|
979 |
|
980 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
982 |
msgid "Show the field in User's profile"
|
983 |
msgstr "Zeige das Feld im \"Benutzer\"profil"
|
984 |
|
985 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
987 |
-
|
|
|
988 |
msgstr "Zeige das Feld in der \"Liste aller Benutzer\""
|
989 |
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
992 |
#, fuzzy
|
993 |
msgid "Show the field in the search engine"
|
994 |
msgstr "Zeige das Feld bei der Registrierung"
|
995 |
|
996 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
997 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
998 |
#, fuzzy
|
999 |
msgid "Show the field in the blog"
|
1000 |
msgstr "Zeige das Feld bei der Registrierung"
|
1001 |
|
1002 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
#, fuzzy
|
1005 |
msgid "Show the field if the role is at least:"
|
1006 |
msgstr "Zeige das Feld bei der Registrierung"
|
1007 |
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1009 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1010 |
msgid "Anonymous"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1014 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1015 |
msgid "Send an email to the admin if the user changes its value"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1019 |
msgid "Clear"
|
1020 |
msgstr "Löschen"
|
1021 |
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1023 |
msgid "Invert selection"
|
1024 |
msgstr "Auswahl umkehren"
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1027 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1028 |
msgstr "Bist Du sicher, dass du diese(s) Feld(er) und alle Daten, die von \"Benutzer\"n angelegt wurden, löschen möchtest?"
|
1029 |
|
1030 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1031 |
msgid "WordPress Fields"
|
1032 |
msgstr "WordPress Felder"
|
1033 |
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1035 |
msgid "None!"
|
1036 |
msgstr "Keine!"
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1039 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1040 |
msgid "Order"
|
1041 |
msgstr "Reihenfolge"
|
1042 |
|
1043 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1044 |
msgid "Reset"
|
1045 |
msgstr "Reset"
|
1046 |
|
1047 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1048 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1049 |
#, fuzzy
|
1050 |
msgid "select"
|
1051 |
msgstr "Löschen"
|
1052 |
|
1053 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1054 |
#, php-format
|
1055 |
msgid "Search results for “%s”"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1059 |
#, php-format
|
1060 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1064 |
msgid "Search Users"
|
1065 |
msgstr "Suche \"Benutzer\""
|
1066 |
|
1067 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1068 |
msgid "« Back to All Users"
|
1069 |
msgstr "« Zurück zu \"Alle Benutzer\""
|
1070 |
|
1071 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1072 |
msgid "Users per page"
|
1073 |
msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
|
1074 |
|
1075 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1076 |
msgid "Apply"
|
1077 |
msgstr "anwenden"
|
1078 |
|
1079 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1080 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1081 |
-
msgid "Username"
|
1082 |
-
msgstr "\"Benutzer\"name"
|
1083 |
-
|
1084 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1515
|
1085 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1086 |
-
msgid "E-mail"
|
1087 |
-
msgstr "E-Mail"
|
1088 |
-
|
1089 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1090 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1091 |
msgid "Role"
|
1092 |
msgstr "\"Benutzer\"-Rollen"
|
1093 |
|
1094 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1095 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1096 |
msgid "Posts"
|
1097 |
msgstr "Artikel"
|
1098 |
|
1099 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1100 |
msgid "View posts by this author"
|
1101 |
msgstr "Zeige Artikel dieses Autors"
|
1102 |
|
1103 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1104 |
#, php-format
|
1105 |
msgid "e-mail: %s"
|
1106 |
msgstr "E-Mail: %s"
|
1107 |
|
1108 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1109 |
#, fuzzy
|
1110 |
msgid "Change"
|
1111 |
msgstr "Reihenfolge ändern "
|
1112 |
|
1113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1114 |
#, fuzzy
|
1115 |
msgid "Update selected users"
|
1116 |
msgstr "Ausgewählte Felder löschen"
|
1117 |
|
1118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1119 |
#, fuzzy
|
1120 |
msgid "Update"
|
1121 |
msgstr "Feld aktualisieren"
|
1122 |
|
1123 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1124 |
msgid "OK"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1128 |
msgid "Cancel"
|
1129 |
msgstr ""
|
1130 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-06-19 16:33+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-06-19 16:33+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:453
|
|
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1241
|
34 |
msgid "ERROR"
|
35 |
msgstr "FEHLER"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "hat eine fehlerhafte Email-Syntax. "
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "darf nicht leer sein."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "ist nicht richtig"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
57 |
msgid "YES"
|
58 |
msgstr "JA"
|
59 |
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
63 |
msgid "NO"
|
64 |
msgstr "NEIN"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:463
|
67 |
msgid "should be"
|
68 |
msgstr "sollte sein"
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "should be an image."
|
72 |
msgstr "sollte ein Bild sein."
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
75 |
msgid "couldn’t have size less than"
|
76 |
msgstr "darf keine Größe haben unter"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
79 |
msgid "couldn’t have length less than"
|
80 |
msgstr "darf keine Länge haben unter"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
83 |
msgid "couldn’t have size different than"
|
84 |
msgstr "darf keine Größe haben, die um mehr abweicht als"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
87 |
msgid "couldn’t have length different than"
|
88 |
msgstr "darf keine Länge habe, die um mehr abweicht als"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
91 |
msgid "couldn’t have size more than"
|
92 |
msgstr "darf keine Größe haben über"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
95 |
msgid "couldn’t have length more than"
|
96 |
msgstr "darf keine Länge haben über"
|
97 |
|
98 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
100 |
msgid "Typed code is not correct."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:636
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1528
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1529
|
106 |
+
msgid "Username"
|
107 |
+
msgstr "\"Benutzer\"name"
|
108 |
+
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:639
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1538
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
|
112 |
+
msgid "E-mail"
|
113 |
+
msgstr "E-Mail"
|
114 |
+
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:889
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:302
|
117 |
#, fuzzy
|
118 |
msgid "Please upload a file with one of the following extensions"
|
119 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
120 |
|
121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:895
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:308
|
124 |
msgid "Please upload an image with one of the following extensions"
|
125 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1052
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
129 |
msgid "Strength indicator"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1053
|
133 |
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 ! \" ? $ % ^ & )."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1099
|
137 |
#, fuzzy
|
138 |
msgid "Change image"
|
139 |
msgstr "Reihenfolge ändern "
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1102
|
142 |
msgid "Insert the code:"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1163
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1165
|
147 |
+
msgid "Confirm your registration"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1171
|
151 |
+
msgid "A password will be e-mailed to you."
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1178
|
155 |
+
msgid "← Back"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
159 |
#, fuzzy
|
160 |
msgid "no fieldset"
|
164 |
msgid "All"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:44
|
168 |
msgid "WordPress Fields table emptied"
|
169 |
msgstr "WP-Datenbank-Tabelle Zusatzfelder geleert"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:49
|
172 |
msgid "WordPress Fields table deleted"
|
173 |
msgstr "WP-Datenbank-Tabelle Zusatzfelder gelöscht"
|
174 |
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:58
|
176 |
msgid "Extra Fields table emptied"
|
177 |
msgstr "Tabelle \"Benutzerdefinierte Felder\" geleert"
|
178 |
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:63
|
180 |
msgid "Extra Fields table deleted"
|
181 |
msgstr "Tabelle \"Benutzerdefinierte Felder\" gelöscht"
|
182 |
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:72
|
184 |
msgid "Users Data table emptied"
|
185 |
msgstr "Tabelle \"Benutzerdaten\" geleert"
|
186 |
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:77
|
188 |
msgid "Users Data table deleted"
|
189 |
msgstr "Tabelle \"Benutzerdaten\" gelöscht"
|
190 |
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:88
|
192 |
msgid "Options set to default values"
|
193 |
msgstr "Einstellungen auf Grundeinstellungen zurück gesetzt"
|
194 |
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:94
|
196 |
msgid "Options deleted"
|
197 |
msgstr "Einstellungen gelöscht"
|
198 |
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:349
|
200 |
msgid "Options changed"
|
201 |
msgstr "Einstellungen aktualisiert"
|
202 |
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
204 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:489
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:754
|
210 |
msgid "Options"
|
211 |
msgstr "Einstellungen"
|
212 |
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
214 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:442
|
215 |
msgid "Add a new Field"
|
216 |
msgstr "Ein neues Feld hinzufügen"
|
217 |
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:809
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
222 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
223 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:294
|
224 |
msgid "Extra Fields"
|
225 |
msgstr "Benutzerdefinierte Felder"
|
226 |
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
228 |
msgid "Support the Cimy Project"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
|
232 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:516
|
236 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1259
|
237 |
msgid "SUCCESSFUL"
|
238 |
msgstr "ERFOLGREICH"
|
239 |
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:856
|
242 |
msgid "Save Changes"
|
243 |
msgstr "Einstellungen aktualisieren"
|
244 |
|
245 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:531
|
246 |
msgid "General"
|
247 |
msgstr "Allgemein"
|
248 |
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:539
|
250 |
msgid "installed is"
|
251 |
msgstr "installiert ist"
|
252 |
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
254 |
msgid "OPTIONS DELETED!"
|
255 |
msgstr "EINSTELLUNGEN GELÖSCHT!"
|
256 |
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
258 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
259 |
msgid "Fix the problem"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
263 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
264 |
msgstr "VERSIONEN NICHT KOMPATIBEL! Du hast das Plugin nach dem Update nicht deaktiviert und anschließend reaktiviert. Das könnte Probleme geben..."
|
265 |
|
266 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
267 |
msgid "Picture/Avatar upload"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
271 |
msgid "is created and writable"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
275 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
279 |
#, fuzzy
|
280 |
msgid "Show all fields in the welcome email"
|
281 |
msgstr "Zeige das Feld bei der Registrierung"
|
282 |
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
284 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
288 |
msgid "Enable email confirmation"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
292 |
msgid "user that registers should confirm its email address via a link click"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
|
296 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:595
|
300 |
+
msgid "Enable form confirmation"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
304 |
+
msgid "a summary of the registration form will be presented to the user"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
308 |
+
msgid "Customize welcome email sent to the new user"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
312 |
+
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
316 |
msgid "Redirect to the source"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
|
320 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
|
324 |
msgid "No captcha"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
328 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
332 |
msgid "Public KEY"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
336 |
msgid "Private KEY"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:651
|
340 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:654
|
344 |
msgid "This captcha is probably weaker, but is easier for users"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
348 |
#, php-format
|
349 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
353 |
msgid "Change login/registration page logo"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:450
|
358 |
msgid "Delete the picture"
|
359 |
msgstr "Bild löschen"
|
360 |
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
362 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
366 |
msgid "Database"
|
367 |
msgstr "Datenbank"
|
368 |
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:688
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:706
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
373 |
msgid "select action"
|
374 |
msgstr "Wähle Aktion"
|
375 |
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
377 |
msgid "Default values"
|
378 |
msgstr "Werte: Grundeinstellung"
|
379 |
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:708
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:727
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
384 |
msgid "Delete"
|
385 |
msgstr "Löschen"
|
386 |
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:694
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:749
|
391 |
msgid "NOT PRESENT"
|
392 |
msgstr "NICHT VORHANDEN"
|
393 |
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
395 |
msgid "WordPress Fields table"
|
396 |
msgstr "WP-Datenbank-Tabelle"
|
397 |
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:726
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:743
|
401 |
msgid "Empty"
|
402 |
msgstr "Leer"
|
403 |
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:719
|
405 |
msgid "Extra Fields table"
|
406 |
msgstr "Tabelle \"Benutzerdefinierte Felder\""
|
407 |
|
408 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:736
|
409 |
msgid "Users Data table"
|
410 |
msgstr "Tabelle \"Benutzerdaten\""
|
411 |
|
412 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:746
|
413 |
msgid "all data inserted by users in all and only extra fields"
|
414 |
msgstr "alle von \"Benutzern\" in die Cimy-Zusatzfelder eingetragenen Daten"
|
415 |
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
417 |
msgid "Force tables creation"
|
418 |
msgstr "Erzwingt die Erstellung der Datenbanktabellen"
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
421 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
422 |
msgstr "Achtung: Mit dieser Einstellung zwingen Sie das PlugIn die Datenbanktabellen zu erstellen. Dieser Schritt wird auch bei (De-)Aktivierung des PlugIns durchgeführt."
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:763
|
425 |
msgid "User Profile"
|
426 |
msgstr "\"Benutzer\" Profil"
|
427 |
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
429 |
msgid "Extra Fields section title"
|
430 |
msgstr "Titel für \"Benutzerdefinierte Felder\""
|
431 |
|
432 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
433 |
msgid "Fieldset's titles, separates with comma"
|
434 |
msgstr "Titel des Abschnitts der \"Benutzerdefinierten Felder\", abgetrennt durch Kommata (',')"
|
435 |
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
437 |
msgid "example: title1,title2,title3"
|
438 |
msgstr "Beispiel: Titel1, Titel2, Titel3"
|
439 |
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:771
|
441 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:776
|
445 |
msgid "Authors & Users Extended"
|
446 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
447 |
|
448 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:780
|
449 |
msgid "Hide username field"
|
450 |
msgstr "Feld: \"'Benutzer'-Name\" nicht anzeigen"
|
451 |
|
452 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
453 |
msgid "Hide name field"
|
454 |
msgstr "Feld: \"Name\" nicht anzeigen"
|
455 |
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:791
|
457 |
msgid "Hide email field"
|
458 |
msgstr "Feld: \"E-mail Adresse\" nicht anzeigen"
|
459 |
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:795
|
461 |
msgid "Hide role field"
|
462 |
msgstr "Feld: \"Rolle\" des \"Benutzers\" nicht anzeigen"
|
463 |
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
|
465 |
msgid "Hide website field"
|
466 |
msgstr "Feld: \"Webseite\" nicht anzeigen"
|
467 |
|
468 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:803
|
469 |
msgid "Hide n. posts field"
|
470 |
msgstr "Feld: Anzahl der von \"Benutzer(n)\" erstellten Artikel nicht anzeigen"
|
471 |
|
472 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:808
|
473 |
msgid "WordPress hidden fields"
|
474 |
msgstr "Feld: \"Wordpress hidden fields\" (verborgene Felder)"
|
475 |
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:811
|
477 |
msgid "Show password"
|
478 |
msgstr "\"Passwort\" anzeigen"
|
479 |
|
480 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:815
|
481 |
#, fuzzy
|
482 |
msgid "Show confirmation password"
|
483 |
msgstr "\"Passwort\" anzeigen"
|
484 |
|
485 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:819
|
486 |
#, fuzzy
|
487 |
msgid "Show password strength meter"
|
488 |
msgstr "\"Passwort\" anzeigen"
|
489 |
|
490 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:823
|
491 |
msgid "Show first name"
|
492 |
msgstr "Zeige \"Vornamen\""
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
495 |
msgid "Show last name"
|
496 |
msgstr "Zeige \"Nachnamen\""
|
497 |
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:831
|
499 |
msgid "Show nickname"
|
500 |
msgstr "Zeige \"Nicknamen\"/Spitznamen"
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:835
|
503 |
msgid "Show website"
|
504 |
msgstr "Zeige \"Webseite\""
|
505 |
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:839
|
507 |
msgid "Show AIM"
|
508 |
msgstr "Zeige \"AIM\""
|
509 |
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:843
|
511 |
msgid "Show Yahoo IM"
|
512 |
msgstr "Zeige \"Yahoo IM\""
|
513 |
|
514 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:847
|
515 |
msgid "Show Jabber / Google Talk"
|
516 |
msgstr "Zeige \"Jabber / Google Talk\""
|
517 |
|
518 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:851
|
519 |
msgid "Show Biographical Info"
|
520 |
msgstr "\"Weitere Informationen\" anzeigen"
|
521 |
|
541 |
msgid "Mismatch"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:221
|
545 |
msgid "Password"
|
546 |
msgstr "Passwort"
|
547 |
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:241
|
549 |
msgid "Password confirmation"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:261
|
553 |
msgid "First name"
|
554 |
msgstr "Vorname"
|
555 |
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:281
|
557 |
msgid "Last name"
|
558 |
msgstr "Nachname"
|
559 |
|
560 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:301
|
561 |
msgid "Nickname"
|
562 |
msgstr "Spitzname"
|
563 |
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:321
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1548
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
|
567 |
msgid "Website"
|
568 |
msgstr "Webseite"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:341
|
571 |
msgid "AIM"
|
572 |
msgstr "AIM"
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:361
|
575 |
msgid "Yahoo IM"
|
576 |
msgstr "Yahoo IM"
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:381
|
579 |
msgid "Jabber / Google Talk"
|
580 |
msgstr "Jabber / Google Talk"
|
581 |
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:401
|
583 |
msgid "Biographical Info"
|
584 |
msgstr "Weitere Informationen"
|
585 |
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
588 |
msgid "Fields"
|
589 |
msgstr "Felder"
|
590 |
|
|
|
591 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:765
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1421
|
595 |
#, fuzzy
|
596 |
msgid "Users Extended"
|
597 |
msgstr "Liste aller \"Benutzer\""
|
610 |
msgid "File '%s' is not an image."
|
611 |
msgstr "Datei '%s' muss Bild-Datei sein"
|
612 |
|
613 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:446
|
614 |
#, fuzzy
|
615 |
msgid "Delete the file"
|
616 |
msgstr "Bild löschen"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
619 |
#, fuzzy
|
620 |
msgid "Update the file"
|
621 |
msgstr "Bild aktualisieren"
|
622 |
|
623 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:451
|
624 |
msgid "Update the picture"
|
625 |
msgstr "Bild aktualisieren"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:471
|
628 |
msgid "Picture URL:"
|
629 |
msgstr "URL für Bild:"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:712
|
632 |
#, php-format
|
633 |
msgid "%s previous value: %s new value: %s"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:727
|
637 |
#, php-format
|
638 |
msgid "%s (%s) has changed one or more fields"
|
639 |
msgstr ""
|
644 |
msgstr ""
|
645 |
|
646 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
|
|
647 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
648 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:213
|
649 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:289
|
650 |
#, fuzzy, php-format
|
651 |
msgid "Username: %s"
|
652 |
msgstr "\"Benutzer\"name"
|
661 |
msgid "[%s] New User Registration"
|
662 |
msgstr ""
|
663 |
|
|
|
|
|
|
|
|
|
|
|
|
|
664 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
665 |
#, php-format
|
666 |
msgid "[%s] Your username and password"
|
699 |
msgid "An error occurred during the activation"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:290
|
705 |
+
#, fuzzy, php-format
|
706 |
+
msgid "Password: %s"
|
707 |
+
msgstr "Passwort"
|
708 |
+
|
709 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
710 |
msgid "Invalid activation key."
|
711 |
msgstr ""
|
734 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
738 |
msgid "Add field"
|
739 |
msgstr "Feld hinzufügen"
|
740 |
|
741 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
742 |
msgid "Update field"
|
743 |
msgstr "Feld aktualisieren"
|
744 |
|
745 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
|
746 |
msgid "Delete field"
|
747 |
msgstr "Feld löschen"
|
748 |
|
749 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
|
750 |
msgid "Delete selected fields"
|
751 |
msgstr "Ausgewählte Felder löschen"
|
752 |
|
753 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
|
754 |
msgid "Change order"
|
755 |
msgstr "Reihenfolge ändern "
|
756 |
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
758 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
|
759 |
msgid "Min length"
|
760 |
msgstr "Minimale Länge"
|
761 |
|
762 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
763 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
764 |
msgid "Exact length"
|
765 |
msgstr "Exakte Länge"
|
766 |
|
767 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
768 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
769 |
msgid "Max length"
|
770 |
msgstr "Maximale Länge"
|
771 |
|
772 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
|
773 |
msgid "Exact or Max length"
|
774 |
msgstr "Exakte oder maximale Länge"
|
775 |
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
777 |
msgid "changed to"
|
778 |
msgstr "geändert in"
|
779 |
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
781 |
msgid "You cannot give an order that misses some numbers"
|
782 |
msgstr "Die Ordnungnummern müssen fortlaufen & durchgängig sein."
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:210
|
786 |
msgid "Nothing selected"
|
787 |
msgstr "Nichts ausgewählt"
|
788 |
|
789 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
790 |
msgid "Field(s)"
|
791 |
msgstr "Feld(er)"
|
792 |
|
793 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
794 |
msgid "deleted correctly"
|
795 |
msgstr "erfolgreich gelöscht"
|
796 |
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:239
|
798 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1056
|
799 |
msgid "Min size"
|
800 |
msgstr "Minimale Größe"
|
801 |
|
802 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
804 |
msgid "Exact size"
|
805 |
msgstr "Exakte Größe"
|
806 |
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:241
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
809 |
msgid "Max size"
|
810 |
msgstr "Maximale Größe"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
813 |
msgid "Exact or Max size"
|
814 |
msgstr "Exakte oder maximale Größe"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:299
|
817 |
msgid "Name not specified"
|
818 |
msgstr "Name nicht ausgefüllt"
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
821 |
msgid "Name cannot contains spaces"
|
822 |
msgstr "Der Name darf keine Leerstellen enthalten."
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
|
825 |
msgid "Label not specified"
|
826 |
msgstr "\"label\"/Feld-Titel nicht ausgefüllt"
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
|
829 |
msgid "not selected (with this type is necessary)"
|
830 |
msgstr "nicht ausgewählt (für diesen Typ notwendig)"
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
833 |
msgid "If you select"
|
834 |
msgstr "Wenn Sie folgendes auswählen"
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
837 |
msgid "you cannot select Min or Max"
|
838 |
msgstr "Sie dürfen \"Min\" oder \"Max\" nicht festlegen"
|
839 |
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
|
842 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:330
|
843 |
msgid "should be in the range of"
|
844 |
msgstr "sollte im Bereich sein (von/bis)"
|
845 |
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:340
|
|
|
847 |
msgid "Equal TO not specified"
|
848 |
msgstr "ENTSPRICHT (equal TO) nicht spezifiziert"
|
849 |
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:343
|
851 |
msgid "With checkbox type Equal TO can only be"
|
852 |
msgstr "Beim Typ <strong>checkbox</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
853 |
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:346
|
855 |
msgid "With radio type Equal TO can only be"
|
856 |
msgstr "Beim Typ <strong>radio</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
857 |
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:362
|
859 |
msgid "With checkbox type Value can only be"
|
860 |
msgstr "Beim Typ <strong>checkbox</strong> kann der Wert/$value nur folgendes sein"
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:365
|
863 |
msgid "With radio type Value can only be"
|
864 |
msgstr "Beim Typ <strong>radio</strong> kann der Wert/$value nur folgendes sein"
|
865 |
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
867 |
msgid "Field inserted correctly"
|
868 |
msgstr "Feld richtig eingefügt."
|
869 |
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
871 |
msgid "Field #"
|
872 |
msgstr "Feld #"
|
873 |
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
875 |
msgid "updated correctly"
|
876 |
msgstr "Update erfolgreich"
|
877 |
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
879 |
msgid "Name inserted is just in the database, change to another one"
|
880 |
msgstr "Dieser Name ist in der Datenbank bereits vorhanden, bitte wähle einen anderen"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
883 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
884 |
msgstr "Um ein neues Feld hinzuzufügen, musst Du einen Namen, einen Typ und eine Bezeichnung/\"label\" angeben. Wert/$value und Beschreibung sind optional. Die Regeln werden bei der User-Registrierung angewandt."
|
885 |
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
887 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
888 |
msgstr "Bei <strong>radio</strong> und <strong>checkbox</strong> gilt: <em>Wert/$value</em> und <em>ENTSRPICHT(equal TO)</em> können nur \"Yes\" oder \"No\" beinhalten, was \"ausgewählt\" oder \"nicht ausgewählt\" bedeutet."
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
891 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
892 |
msgstr "Bei <strong>drop-down</strong> gilt: Du musst alle möglichen Werte in das Feld Bezeichnung/\"label\" schreiben. Beispiel: Bezeichnung/Wert1,Wert2. Pseudocode: Benutzerdefinierter Schlüssel/Wert,Wert; Code: $key/$value,$value; Spezifiziertes Beispiel: Geschlecht/männlich,weiblich"
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
895 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
896 |
msgstr "Bei <strong>picture</strong> gilt: Du kannst ein Bild hochladen, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT(equal TO)</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
|
897 |
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
899 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
900 |
msgstr "Bei <strong>picture-url</strong> gilt: Du kannst ein Bild einstellen, indem Du die Bildadresse (Url) in <em>Wert/$value</em> eingibst; <em>ENTSPRICHT(equal TO)</em> meint die maximale Breite in Pixel (die Höhe wird proportional angepasst)."
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
903 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
904 |
msgstr "Bei <strong>registration-date</strong> gilt: <em>ENTSRPICHT(equal TO)</em> meint das Format für Datum und Zeit."
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
907 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
908 |
msgstr "Für <strong>Avatar</strong>: Du kannst einen Standardavatar laden, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
|
909 |
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
911 |
#, fuzzy
|
912 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
913 |
msgstr "Bei <strong>picture</strong> gilt: Du kannst ein Bild hochladen, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT(equal TO)</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
|
914 |
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:648
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1089
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1533
|
920 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
|
921 |
msgid "Name"
|
922 |
msgstr "Name"
|
923 |
|
|
|
924 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1092
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
930 |
msgid "Value"
|
931 |
msgstr "Wert/$value"
|
932 |
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:639
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1095
|
937 |
msgid "Type"
|
938 |
msgstr "Typ"
|
939 |
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
944 |
msgid "Label"
|
945 |
msgstr "Bezeichnung/\"label\""
|
946 |
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:672
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
951 |
msgid "Description"
|
952 |
msgstr "Beschreibung"
|
953 |
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
956 |
msgid "Rules"
|
957 |
msgstr "Regeln"
|
958 |
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
961 |
msgid "Actions"
|
962 |
msgstr "Aktion"
|
963 |
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
967 |
#, fuzzy
|
968 |
msgid "Fieldset"
|
969 |
msgstr "Felder"
|
970 |
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
973 |
msgid "Can be empty"
|
974 |
msgstr "Kann leer sein"
|
975 |
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
978 |
msgid "Check for E-mail syntax"
|
979 |
msgstr "Kontrollieren Sie bitte die E-Mail-Syntax"
|
980 |
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:688
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
983 |
msgid "Can be modified"
|
984 |
msgstr "Änderung des Feldes möglich"
|
985 |
|
986 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
987 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1139
|
988 |
msgid "Can be modified only if empty"
|
989 |
msgstr "Änderung des Feldes möglich wenn leer"
|
990 |
|
991 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
|
992 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
993 |
msgid "Can be modified only by admin"
|
994 |
msgstr "Änderung des Feldes nur durch Admin möglich"
|
995 |
|
996 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
998 |
msgid "Can be modified only by admin or if empty"
|
999 |
msgstr "Änderung des Feldes nur durch Admin, oder wenn leer"
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:692
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
1003 |
msgid "Cannot be modified"
|
1004 |
msgstr "Änderung des Feldes nicht möglich"
|
1005 |
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
1007 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
1008 |
msgid "Should be equal TO"
|
1009 |
msgstr "ENTSPRICHT (equal TO) folgendem"
|
1010 |
|
1011 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
1012 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
1013 |
msgid "Case sensitive"
|
1014 |
msgstr "Groß-/Kleinschreibung beachten"
|
1015 |
|
1016 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
1017 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
1018 |
msgid "Regular Expression"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
1022 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1155
|
1023 |
msgid "Show the field in the registration"
|
1024 |
msgstr "Zeige das Feld bei der Registrierung"
|
1025 |
|
1026 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
1028 |
msgid "Show the field in User's profile"
|
1029 |
msgstr "Zeige das Feld im \"Benutzer\"profil"
|
1030 |
|
1031 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1167
|
1033 |
+
#, fuzzy
|
1034 |
+
msgid "Show the field in Users Extended menu"
|
1035 |
msgstr "Zeige das Feld in der \"Liste aller Benutzer\""
|
1036 |
|
1037 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
1038 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1170
|
1039 |
#, fuzzy
|
1040 |
msgid "Show the field in the search engine"
|
1041 |
msgstr "Zeige das Feld bei der Registrierung"
|
1042 |
|
1043 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
1044 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1173
|
1045 |
#, fuzzy
|
1046 |
msgid "Show the field in the blog"
|
1047 |
msgstr "Zeige das Feld bei der Registrierung"
|
1048 |
|
1049 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:723
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1176
|
1051 |
#, fuzzy
|
1052 |
msgid "Show the field if the role is at least:"
|
1053 |
msgstr "Zeige das Feld bei der Registrierung"
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:725
|
1056 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1057 |
msgid "Anonymous"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
1061 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1184
|
1062 |
+
msgid "User has 'view_cimy_extra_fields' capability"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:736
|
1066 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
1067 |
msgid "Send an email to the admin if the user changes its value"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:738
|
1071 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1197
|
1072 |
+
#, fuzzy
|
1073 |
+
msgid "Advanced options"
|
1074 |
+
msgstr "Aktion"
|
1075 |
+
|
1076 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
1077 |
msgid "Clear"
|
1078 |
msgstr "Löschen"
|
1079 |
|
1080 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
|
1081 |
msgid "Invert selection"
|
1082 |
msgstr "Auswahl umkehren"
|
1083 |
|
1084 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
|
1085 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1086 |
msgstr "Bist Du sicher, dass du diese(s) Feld(er) und alle Daten, die von \"Benutzer\"n angelegt wurden, löschen möchtest?"
|
1087 |
|
1088 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1089 |
msgid "WordPress Fields"
|
1090 |
msgstr "WordPress Felder"
|
1091 |
|
1092 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
1093 |
msgid "None!"
|
1094 |
msgstr "Keine!"
|
1095 |
|
1096 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
|
1097 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1077
|
1098 |
msgid "Order"
|
1099 |
msgstr "Reihenfolge"
|
1100 |
|
1101 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1201
|
1102 |
msgid "Reset"
|
1103 |
msgstr "Reset"
|
1104 |
|
1105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1288
|
1106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1903
|
1107 |
#, fuzzy
|
1108 |
msgid "select"
|
1109 |
msgstr "Löschen"
|
1110 |
|
1111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1429
|
1112 |
#, php-format
|
1113 |
msgid "Search results for “%s”"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
|
1117 |
#, php-format
|
1118 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1465
|
1122 |
msgid "Search Users"
|
1123 |
msgstr "Suche \"Benutzer\""
|
1124 |
|
1125 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
1126 |
msgid "« Back to All Users"
|
1127 |
msgstr "« Zurück zu \"Alle Benutzer\""
|
1128 |
|
1129 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1501
|
1130 |
msgid "Users per page"
|
1131 |
msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
|
1132 |
|
1133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1134 |
msgid "Apply"
|
1135 |
msgstr "anwenden"
|
1136 |
|
1137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1543
|
1138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1139 |
msgid "Role"
|
1140 |
msgstr "\"Benutzer\"-Rollen"
|
1141 |
|
1142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1553
|
1143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
|
1144 |
msgid "Posts"
|
1145 |
msgstr "Artikel"
|
1146 |
|
1147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1691
|
1148 |
msgid "View posts by this author"
|
1149 |
msgstr "Zeige Artikel dieses Autors"
|
1150 |
|
1151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1725
|
1152 |
#, php-format
|
1153 |
msgid "e-mail: %s"
|
1154 |
msgstr "E-Mail: %s"
|
1155 |
|
1156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1847
|
1157 |
#, fuzzy
|
1158 |
msgid "Change"
|
1159 |
msgstr "Reihenfolge ändern "
|
1160 |
|
1161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1872
|
1162 |
#, fuzzy
|
1163 |
msgid "Update selected users"
|
1164 |
msgstr "Ausgewählte Felder löschen"
|
1165 |
|
1166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1167 |
#, fuzzy
|
1168 |
msgid "Update"
|
1169 |
msgstr "Feld aktualisieren"
|
1170 |
|
1171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1908
|
1172 |
msgid "OK"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1909
|
1176 |
msgid "Cancel"
|
1177 |
msgstr ""
|
1178 |
|
langs/cimy_uef-es_ES.mo
CHANGED
Binary file
|
langs/cimy_uef-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,116 +16,145 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERROR"
|
36 |
|
37 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "no está en el formato correcto de e-mail. "
|
44 |
|
45 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "no puede estar vacío."
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "no es correcto"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
55 |
msgid "YES"
|
56 |
msgstr "SI"
|
57 |
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
59 |
msgid "NO"
|
60 |
msgstr "NO"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
msgid "should be"
|
64 |
msgstr "no debe ser"
|
65 |
|
66 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
67 |
msgid "should be an image."
|
68 |
msgstr "no debe ser una imagen."
|
69 |
|
70 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "no puede tener un tamaño menor a"
|
73 |
|
74 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "no puede tener una longitud menor a"
|
77 |
|
78 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "no puede tener tamaño diferente a"
|
81 |
|
82 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "no puede tener longitud diferente a"
|
85 |
|
86 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "no puede tener tamaño mayor a"
|
89 |
|
90 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "no puede tener longitud mayor a"
|
93 |
|
94 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
95 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
104 |
|
105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
110 |
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
113 |
msgid "Strength indicator"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
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 ! \" ? $ % ^ & )."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
121 |
#, fuzzy
|
122 |
msgid "Change image"
|
123 |
msgstr "Cambiar orden"
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
126 |
msgid "Insert the code:"
|
127 |
msgstr ""
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
130 |
msgid "no fieldset"
|
131 |
msgstr "no hay grupo de campos"
|
@@ -134,342 +163,358 @@ msgstr "no hay grupo de campos"
|
|
134 |
msgid "All"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
138 |
msgid "WordPress Fields table emptied"
|
139 |
msgstr "Tabla de Campos WordPress vaciada"
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
142 |
msgid "WordPress Fields table deleted"
|
143 |
msgstr "Tabla de Campos WordPress borrada"
|
144 |
|
145 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
146 |
msgid "Extra Fields table emptied"
|
147 |
msgstr "Tabla de Campos Adicionales vaciada"
|
148 |
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
150 |
msgid "Extra Fields table deleted"
|
151 |
msgstr "Tabla de Campos Adicionales borrada"
|
152 |
|
153 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
154 |
msgid "Users Data table emptied"
|
155 |
msgstr "Tabla de Datos de Usuarios vaciada"
|
156 |
|
157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
158 |
msgid "Users Data table deleted"
|
159 |
msgstr "Tabla de Datos de Usuarios borrada"
|
160 |
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
162 |
msgid "Options set to default values"
|
163 |
msgstr "Opciones asignadas los valores por defecto"
|
164 |
|
165 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
166 |
msgid "Options deleted"
|
167 |
msgstr "Opciones borradas"
|
168 |
|
169 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
170 |
msgid "Options changed"
|
171 |
msgstr "Opciones cambiadas"
|
172 |
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
175 |
msgstr "Esta operación creará/actualizará todas las opciones/tablas faltantes ¿Desea continuar?"
|
176 |
|
177 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
180 |
msgid "Options"
|
181 |
msgstr "Opciones"
|
182 |
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
185 |
msgid "Add a new Field"
|
186 |
msgstr "Agregar un nuevo Campo"
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
192 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
194 |
msgid "Extra Fields"
|
195 |
msgstr "Campos Adicionales"
|
196 |
|
197 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
198 |
msgid "Support the Cimy Project"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
202 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
206 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
207 |
msgid "SUCCESSFUL"
|
208 |
msgstr "EXITOSO"
|
209 |
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
msgid "Save Changes"
|
213 |
msgstr "Salvar cambios"
|
214 |
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
216 |
msgid "General"
|
217 |
msgstr "General"
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
220 |
msgid "installed is"
|
221 |
msgstr "instalada es"
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
msgid "OPTIONS DELETED!"
|
225 |
msgstr "OPCIONES BORRADAS!"
|
226 |
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
229 |
msgid "Fix the problem"
|
230 |
msgstr "Arreglar el problema"
|
231 |
|
232 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
233 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
234 |
msgstr "NO CORRESPONDEN LAS VERSIONES! Esto es ocasionado porque no ha desactivado y reactivado el plug-in despues de la actualización! Esto puede ocasionar problemas..."
|
235 |
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
237 |
msgid "Picture/Avatar upload"
|
238 |
msgstr "Subida de foto/avatar"
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
241 |
msgid "is created and writable"
|
242 |
msgstr "existe y tiene permisos de escritura"
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
245 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
246 |
msgstr "no está creado o el servidor web no tiene permisos de escritura"
|
247 |
|
248 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
249 |
#, fuzzy
|
250 |
msgid "Show all fields in the welcome email"
|
251 |
msgstr "Mostrar el campo en el registro"
|
252 |
|
253 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
254 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
258 |
msgid "Enable email confirmation"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
262 |
msgid "user that registers should confirm its email address via a link click"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
266 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
msgid "Redirect to the source"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
274 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
278 |
msgid "No captcha"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
286 |
msgid "Public KEY"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
msgid "Private KEY"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
294 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
msgid "This captcha is probably weaker, but is easier for users"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
302 |
#, php-format
|
303 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
307 |
msgid "Change login/registration page logo"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
312 |
msgid "Delete the picture"
|
313 |
msgstr "Borrar la imagen"
|
314 |
|
315 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
316 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
320 |
msgid "Database"
|
321 |
msgstr "Base de Datos"
|
322 |
|
323 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
324 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
327 |
msgid "select action"
|
328 |
msgstr "seleccione acción"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
331 |
msgid "Default values"
|
332 |
msgstr "Valores por defecto"
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
335 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
336 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
338 |
msgid "Delete"
|
339 |
msgstr "Borrar"
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
344 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
345 |
msgid "NOT PRESENT"
|
346 |
msgstr "NO EXISTE"
|
347 |
|
348 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
349 |
msgid "WordPress Fields table"
|
350 |
msgstr "tabla de Campos WordPress"
|
351 |
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
355 |
msgid "Empty"
|
356 |
msgstr "Vacío"
|
357 |
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
359 |
msgid "Extra Fields table"
|
360 |
msgstr "Tabla de campos adicionales"
|
361 |
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
363 |
msgid "Users Data table"
|
364 |
msgstr "Tabla de datos del usuario"
|
365 |
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
367 |
msgid "all data inserted by users in all and only extra fields"
|
368 |
msgstr "todos las datos insertados por los usuarios en todos (y unicamente) los campos adicionales"
|
369 |
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
371 |
msgid "Force tables creation"
|
372 |
msgstr "Forzar la creación de tablas"
|
373 |
|
374 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
375 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
376 |
msgstr "Equivalente a desactivar y activar el plug-in. No se realizará otra operación."
|
377 |
|
378 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
379 |
msgid "User Profile"
|
380 |
msgstr "Perfil de usuario"
|
381 |
|
382 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
383 |
msgid "Extra Fields section title"
|
384 |
msgstr "Título de la sección de campos adicionales"
|
385 |
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
387 |
msgid "Fieldset's titles, separates with comma"
|
388 |
msgstr "Títulos de los grupos de campo, separar con coma"
|
389 |
|
390 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
391 |
msgid "example: title1,title2,title3"
|
392 |
msgstr "ejemplo: título 1, título 2, título 3"
|
393 |
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
395 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
396 |
msgstr "<strong>nota:</strong> si cambia el orden o quita grupos de campos posiblemente deba reasignar todos los campos adicionales a su grupo correspondiente"
|
397 |
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
399 |
msgid "Authors & Users Extended"
|
400 |
msgstr "Autores & Usuarios Extendido"
|
401 |
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
403 |
msgid "Hide username field"
|
404 |
msgstr "Esconder campo de nombre de usuario"
|
405 |
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
407 |
msgid "Hide name field"
|
408 |
msgstr "Esconder campo de nombre"
|
409 |
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
411 |
msgid "Hide email field"
|
412 |
msgstr "Esconder campo de correo electrónico"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
415 |
msgid "Hide role field"
|
416 |
msgstr "Esconder campo de rol"
|
417 |
|
418 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
419 |
msgid "Hide website field"
|
420 |
msgstr "Esconder el campo de sitio web"
|
421 |
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
423 |
msgid "Hide n. posts field"
|
424 |
msgstr "Esconder el campo de n. entradas"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
427 |
msgid "WordPress hidden fields"
|
428 |
msgstr "Campos escondidos WordPress"
|
429 |
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
431 |
msgid "Show password"
|
432 |
msgstr "Mostrar contraseña"
|
433 |
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
435 |
#, fuzzy
|
436 |
msgid "Show confirmation password"
|
437 |
msgstr "Mostrar contraseña"
|
438 |
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
440 |
#, fuzzy
|
441 |
msgid "Show password strength meter"
|
442 |
msgstr "Mostrar contraseña"
|
443 |
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
445 |
msgid "Show first name"
|
446 |
msgstr "Mostrar primer nombre"
|
447 |
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
449 |
msgid "Show last name"
|
450 |
msgstr "Mostrar apellido"
|
451 |
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
453 |
msgid "Show nickname"
|
454 |
msgstr "Mostrar sobrenombre"
|
455 |
|
456 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
457 |
msgid "Show website"
|
458 |
msgstr "Mostrar sitio web"
|
459 |
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
461 |
msgid "Show AIM"
|
462 |
msgstr "Mostrar AIM"
|
463 |
|
464 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
465 |
msgid "Show Yahoo IM"
|
466 |
msgstr "Mostrar mensajero Yahoo"
|
467 |
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
469 |
msgid "Show Jabber / Google Talk"
|
470 |
msgstr "Mostrar Jabber / Google Talk"
|
471 |
|
472 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
473 |
msgid "Show Biographical Info"
|
474 |
msgstr "Mostrar información biográfica"
|
475 |
|
@@ -495,57 +540,57 @@ msgstr ""
|
|
495 |
msgid "Mismatch"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
499 |
msgid "Password"
|
500 |
msgstr "Contraseña"
|
501 |
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
503 |
msgid "Password confirmation"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
507 |
msgid "First name"
|
508 |
msgstr "Primer nombre"
|
509 |
|
510 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
511 |
msgid "Last name"
|
512 |
msgstr "Apellido"
|
513 |
|
514 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
515 |
msgid "Nickname"
|
516 |
msgstr "Sobrenombre"
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
519 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
520 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
521 |
msgid "Website"
|
522 |
msgstr "Sitio Web"
|
523 |
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
525 |
msgid "AIM"
|
526 |
msgstr "AIM"
|
527 |
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
529 |
msgid "Yahoo IM"
|
530 |
msgstr "Yahoo IM"
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
533 |
msgid "Jabber / Google Talk"
|
534 |
msgstr "Jabber / Google Talk"
|
535 |
|
536 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
537 |
msgid "Biographical Info"
|
538 |
msgstr "Información Biográfica"
|
539 |
|
540 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
542 |
msgid "Fields"
|
543 |
msgstr "Campos"
|
544 |
|
545 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:752
|
546 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
547 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
549 |
#, fuzzy
|
550 |
msgid "Users Extended"
|
551 |
msgstr "Usuarios extendido"
|
@@ -564,30 +609,30 @@ msgstr "La librería GD image no está instalada."
|
|
564 |
msgid "File '%s' is not an image."
|
565 |
msgstr "El archivo '%s' no es una imagen."
|
566 |
|
567 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
568 |
#, fuzzy
|
569 |
msgid "Delete the file"
|
570 |
msgstr "Borrar la imagen"
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
573 |
#, fuzzy
|
574 |
msgid "Update the file"
|
575 |
msgstr "Actualizar la imagen"
|
576 |
|
577 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
578 |
msgid "Update the picture"
|
579 |
msgstr "Actualizar la imagen"
|
580 |
|
581 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
582 |
msgid "Picture URL:"
|
583 |
msgstr "URL de la imagen:"
|
584 |
|
585 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
586 |
#, php-format
|
587 |
msgid "%s previous value: %s new value: %s"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
591 |
#, php-format
|
592 |
msgid "%s (%s) has changed one or more fields"
|
593 |
msgstr ""
|
@@ -598,8 +643,9 @@ msgid "New user registration on your site %s:"
|
|
598 |
msgstr ""
|
599 |
|
600 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
601 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
602 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
|
|
|
|
603 |
#, fuzzy, php-format
|
604 |
msgid "Username: %s"
|
605 |
msgstr "Nombre de usuario"
|
@@ -614,12 +660,6 @@ msgstr "correo electrónico: %s"
|
|
614 |
msgid "[%s] New User Registration"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
618 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
619 |
-
#, fuzzy, php-format
|
620 |
-
msgid "Password: %s"
|
621 |
-
msgstr "Contraseña"
|
622 |
-
|
623 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
624 |
#, php-format
|
625 |
msgid "[%s] Your username and password"
|
@@ -658,6 +698,13 @@ msgstr ""
|
|
658 |
msgid "An error occurred during the activation"
|
659 |
msgstr ""
|
660 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
661 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
662 |
msgid "Invalid activation key."
|
663 |
msgstr ""
|
@@ -686,443 +733,444 @@ msgstr ""
|
|
686 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
690 |
msgid "Add field"
|
691 |
msgstr "Agregar campo"
|
692 |
|
693 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
694 |
msgid "Update field"
|
695 |
msgstr "Actualizar campo"
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
698 |
msgid "Delete field"
|
699 |
msgstr "Borrar campo"
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
702 |
msgid "Delete selected fields"
|
703 |
msgstr "Borrar campos seleccionados"
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
706 |
msgid "Change order"
|
707 |
msgstr "Cambiar orden"
|
708 |
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
711 |
msgid "Min length"
|
712 |
msgstr "Longitud mínima"
|
713 |
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
716 |
msgid "Exact length"
|
717 |
msgstr "Longitud exacta"
|
718 |
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
721 |
msgid "Max length"
|
722 |
msgstr "Longitud máxima"
|
723 |
|
724 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
725 |
msgid "Exact or Max length"
|
726 |
msgstr "Longitud máxima o exacta"
|
727 |
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
729 |
msgid "changed to"
|
730 |
msgstr "cambiado a"
|
731 |
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
733 |
msgid "You cannot give an order that misses some numbers"
|
734 |
msgstr "No se puede poner un orden que se salte algunos números"
|
735 |
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
737 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
738 |
msgid "Nothing selected"
|
739 |
msgstr "Nada seleccionado"
|
740 |
|
741 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
742 |
msgid "Field(s)"
|
743 |
msgstr "Campo(s)"
|
744 |
|
745 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
746 |
msgid "deleted correctly"
|
747 |
msgstr "borrado correctamente"
|
748 |
|
749 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
750 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
751 |
msgid "Min size"
|
752 |
msgstr "Tamaño mínimo"
|
753 |
|
754 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
755 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
756 |
msgid "Exact size"
|
757 |
msgstr "Tamaño exacto"
|
758 |
|
759 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
760 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
761 |
msgid "Max size"
|
762 |
msgstr "Tamaño máximo"
|
763 |
|
764 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
765 |
msgid "Exact or Max size"
|
766 |
msgstr "Tamaño máximo o exacto"
|
767 |
|
768 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
769 |
msgid "Name not specified"
|
770 |
msgstr "Nombre no especificado"
|
771 |
|
772 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
773 |
msgid "Name cannot contains spaces"
|
774 |
msgstr "El nombre no puede contener espacios"
|
775 |
|
776 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
777 |
msgid "Label not specified"
|
778 |
msgstr "Etiqueta no especificada"
|
779 |
|
780 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
781 |
msgid "not selected (with this type is necessary)"
|
782 |
msgstr "no seleccionado (necesario para este tipo)"
|
783 |
|
784 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
785 |
msgid "If you select"
|
786 |
msgstr "Si usted selecciona"
|
787 |
|
788 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
789 |
msgid "you cannot select Min or Max"
|
790 |
msgstr "usted no puede seleccionar mínimo o máximo"
|
791 |
|
792 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
793 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
msgid "should be in the range of"
|
796 |
msgstr "debe estar en el rango de"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
800 |
msgid "Equal TO not specified"
|
801 |
msgstr "Igual a no especificado"
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
804 |
msgid "With checkbox type Equal TO can only be"
|
805 |
msgstr "Con tipo casilla de verificación \"igual a\" solo puede ser"
|
806 |
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
808 |
msgid "With radio type Equal TO can only be"
|
809 |
msgstr "Con tipo radio \"igual a\" solo puede ser"
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
msgid "With checkbox type Value can only be"
|
813 |
msgstr "Con tipo casilla de verificación \"Valor\" solo puede ser"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
msgid "With radio type Value can only be"
|
817 |
msgstr "Con tipo radio \"Valor\" solo puede ser"
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
820 |
msgid "Field inserted correctly"
|
821 |
msgstr "Campo insertado correctamente"
|
822 |
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
msgid "Field #"
|
825 |
msgstr "Campo #"
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
msgid "updated correctly"
|
829 |
msgstr "Actualizado correctamente"
|
830 |
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
832 |
msgid "Name inserted is just in the database, change to another one"
|
833 |
msgstr "El nombre insertado"
|
834 |
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
837 |
msgstr "Para agregar un nuevo campo, debe elegir un nombre, tipo y etiqueta. Es opcional indicar un valor y descripción. Las reglas se aplican durante el registro del usuario."
|
838 |
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
840 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
841 |
msgstr "Con <strong>radio</strong> y <strong>checkbox</strong>: <em>Valor</em> y <em>igual a</em> únicamente puede ser 'Yes' o 'No', es decir seleccionado o no seleccionado"
|
842 |
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
844 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
845 |
msgstr "Con <strong>drop-down</strong>: debe agregar todas las opciones en \"etiqueta\" por ejemplo: etiqueta/elemento1,elemento2,elemento3"
|
846 |
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
849 |
msgstr "Con <strong>picture</strong>: puede precargar una imagen por default poniendo su URL en <em>Valor</em>; \"mínimo,exacto y máximo tamaño\" están en KB; <em>igual a</em> significa el tamañno máximo en pixeles (ancho o alto) para el thumbnail"
|
850 |
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
852 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
853 |
msgstr "Con <strong>picture-url</strong>: puede precargar una imagen por defecto poniendo la URL en <em>Valor</em>; <em>igual a</em> significa el máximo tamaño en pixeles (la altura será proporcional)"
|
854 |
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
857 |
msgstr "Con <strong>registration-date</strong>: <em>igual a</em> significa el formato de fecha y hora"
|
858 |
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
860 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
861 |
msgstr "Con <strong>avatar</strong>: puede precargar una imagen por defecto colocándola en <em>Valor</em>; 'mínimo,exacto,máximo tamaño' son en KB; <em>igual a</em> es automáticamente fijado en 512 pixeles"
|
862 |
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
864 |
#, fuzzy
|
865 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
866 |
msgstr "Con <strong>picture</strong>: puede precargar una imagen por default poniendo su URL en <em>Valor</em>; \"mínimo,exacto y máximo tamaño\" están en KB; <em>igual a</em> significa el tamañno máximo en pixeles (ancho o alto) para el thumbnail"
|
867 |
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
870 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
871 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
873 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
874 |
msgid "Name"
|
875 |
msgstr "Nombre"
|
876 |
|
877 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
878 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
882 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
883 |
msgid "Value"
|
884 |
msgstr "Valor"
|
885 |
|
886 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
887 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
890 |
msgid "Type"
|
891 |
msgstr "Tipo"
|
892 |
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
895 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
897 |
msgid "Label"
|
898 |
msgstr "Etiqueta"
|
899 |
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
901 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
902 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
903 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
904 |
msgid "Description"
|
905 |
msgstr "Descripción"
|
906 |
|
907 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
908 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
909 |
msgid "Rules"
|
910 |
msgstr "Reglas"
|
911 |
|
912 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
913 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
914 |
msgid "Actions"
|
915 |
msgstr "Acciones"
|
916 |
|
917 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
918 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
919 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
920 |
msgid "Fieldset"
|
921 |
msgstr "Grupo de campos"
|
922 |
|
923 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
925 |
msgid "Can be empty"
|
926 |
msgstr "Puede estar vacío"
|
927 |
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
msgid "Check for E-mail syntax"
|
931 |
msgstr "Checar formato de e-mail"
|
932 |
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
msgid "Can be modified"
|
936 |
msgstr "Puede ser modificado"
|
937 |
|
938 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
msgid "Can be modified only if empty"
|
941 |
msgstr "Puede ser modificado solo si está vacío"
|
942 |
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
944 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
945 |
msgid "Can be modified only by admin"
|
946 |
msgstr "Puede ser modificado solo por el administrador"
|
947 |
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
950 |
msgid "Can be modified only by admin or if empty"
|
951 |
msgstr "Puede ser modificado solo por el administrador o si está vacío"
|
952 |
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
955 |
msgid "Cannot be modified"
|
956 |
msgstr "No puede ser modificado"
|
957 |
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
msgid "Should be equal TO"
|
961 |
msgstr "Debe ser igual a"
|
962 |
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
msgid "Case sensitive"
|
966 |
msgstr "Distinción mayúsculas y minúsculas"
|
967 |
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
970 |
msgid "Regular Expression"
|
971 |
msgstr "Expresión regular"
|
972 |
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
975 |
msgid "Show the field in the registration"
|
976 |
msgstr "Mostrar el campo en el registro"
|
977 |
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
979 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
980 |
msgid "Show the field in User's profile"
|
981 |
msgstr "Mostrar el campo en el perfil del usuario"
|
982 |
|
983 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
984 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
985 |
-
|
|
|
986 |
msgstr "Mostrar el campo en el menú extendido de A&U"
|
987 |
|
988 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
989 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
990 |
#, fuzzy
|
991 |
msgid "Show the field in the search engine"
|
992 |
msgstr "Mostrar el campo en el registro"
|
993 |
|
994 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
995 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
996 |
#, fuzzy
|
997 |
msgid "Show the field in the blog"
|
998 |
msgstr "Mostrar el campo en el registro"
|
999 |
|
1000 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1001 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1002 |
#, fuzzy
|
1003 |
msgid "Show the field if the role is at least:"
|
1004 |
msgstr "Mostrar el campo en el registro"
|
1005 |
|
1006 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1007 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1008 |
msgid "Anonymous"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1013 |
msgid "Send an email to the admin if the user changes its value"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1017 |
msgid "Clear"
|
1018 |
msgstr "Vaciar"
|
1019 |
|
1020 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1021 |
msgid "Invert selection"
|
1022 |
msgstr "Invertir Selección"
|
1023 |
|
1024 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1025 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1026 |
msgstr "&lquot;Está seguro de que quiere borrar los campos y todos los datos insertados por los usuarios?"
|
1027 |
|
1028 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1029 |
msgid "WordPress Fields"
|
1030 |
msgstr "Campos WordPress"
|
1031 |
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1033 |
msgid "None!"
|
1034 |
msgstr "Ninguno!"
|
1035 |
|
1036 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1037 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1038 |
msgid "Order"
|
1039 |
msgstr "Orden"
|
1040 |
|
1041 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1042 |
msgid "Reset"
|
1043 |
msgstr "Reestablecer"
|
1044 |
|
1045 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1046 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1047 |
#, fuzzy
|
1048 |
msgid "select"
|
1049 |
msgstr "Borrar"
|
1050 |
|
1051 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1052 |
#, php-format
|
1053 |
msgid "Search results for “%s”"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1057 |
#, php-format
|
1058 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1062 |
msgid "Search Users"
|
1063 |
msgstr "Buscar Usuarios"
|
1064 |
|
1065 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1066 |
msgid "« Back to All Users"
|
1067 |
msgstr "« Regresar a \"todos los usuarios\""
|
1068 |
|
1069 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1070 |
msgid "Users per page"
|
1071 |
msgstr "Usuarios por página"
|
1072 |
|
1073 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1074 |
msgid "Apply"
|
1075 |
msgstr "Aplicar"
|
1076 |
|
1077 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1078 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1079 |
-
msgid "Username"
|
1080 |
-
msgstr "Nombre de usuario"
|
1081 |
-
|
1082 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1515
|
1083 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1084 |
-
msgid "E-mail"
|
1085 |
-
msgstr "Correo electrónico"
|
1086 |
-
|
1087 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1088 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1089 |
msgid "Role"
|
1090 |
msgstr "Rol"
|
1091 |
|
1092 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1093 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1094 |
msgid "Posts"
|
1095 |
msgstr "Entradas"
|
1096 |
|
1097 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1098 |
msgid "View posts by this author"
|
1099 |
msgstr "Ver entradas de este autor"
|
1100 |
|
1101 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1102 |
#, php-format
|
1103 |
msgid "e-mail: %s"
|
1104 |
msgstr "correo electrónico: %s"
|
1105 |
|
1106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1107 |
#, fuzzy
|
1108 |
msgid "Change"
|
1109 |
msgstr "Cambiar orden"
|
1110 |
|
1111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1112 |
#, fuzzy
|
1113 |
msgid "Update selected users"
|
1114 |
msgstr "Borrar campos seleccionados"
|
1115 |
|
1116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1117 |
#, fuzzy
|
1118 |
msgid "Update"
|
1119 |
msgstr "Actualizar campo"
|
1120 |
|
1121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1122 |
msgid "OK"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1126 |
msgid "Cancel"
|
1127 |
msgstr ""
|
1128 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-06-19 16:33+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-06-19 16:33+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:453
|
|
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1241
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERROR"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "no está en el formato correcto de e-mail. "
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "no puede estar vacío."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "no es correcto"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
57 |
msgid "YES"
|
58 |
msgstr "SI"
|
59 |
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
63 |
msgid "NO"
|
64 |
msgstr "NO"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:463
|
67 |
msgid "should be"
|
68 |
msgstr "no debe ser"
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "should be an image."
|
72 |
msgstr "no debe ser una imagen."
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
75 |
msgid "couldn’t have size less than"
|
76 |
msgstr "no puede tener un tamaño menor a"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
79 |
msgid "couldn’t have length less than"
|
80 |
msgstr "no puede tener una longitud menor a"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
83 |
msgid "couldn’t have size different than"
|
84 |
msgstr "no puede tener tamaño diferente a"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
87 |
msgid "couldn’t have length different than"
|
88 |
msgstr "no puede tener longitud diferente a"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
91 |
msgid "couldn’t have size more than"
|
92 |
msgstr "no puede tener tamaño mayor a"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
95 |
msgid "couldn’t have length more than"
|
96 |
msgstr "no puede tener longitud mayor a"
|
97 |
|
98 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
100 |
msgid "Typed code is not correct."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:636
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1528
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1529
|
106 |
+
msgid "Username"
|
107 |
+
msgstr "Nombre de usuario"
|
108 |
+
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:639
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1538
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
|
112 |
+
msgid "E-mail"
|
113 |
+
msgstr "Correo electrónico"
|
114 |
+
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:889
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:302
|
117 |
#, fuzzy
|
118 |
msgid "Please upload a file with one of the following extensions"
|
119 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
120 |
|
121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:895
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:308
|
124 |
msgid "Please upload an image with one of the following extensions"
|
125 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1052
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
129 |
msgid "Strength indicator"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1053
|
133 |
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 ! \" ? $ % ^ & )."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1099
|
137 |
#, fuzzy
|
138 |
msgid "Change image"
|
139 |
msgstr "Cambiar orden"
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1102
|
142 |
msgid "Insert the code:"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1163
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1165
|
147 |
+
msgid "Confirm your registration"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1171
|
151 |
+
msgid "A password will be e-mailed to you."
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1178
|
155 |
+
msgid "← Back"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
159 |
msgid "no fieldset"
|
160 |
msgstr "no hay grupo de campos"
|
163 |
msgid "All"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:44
|
167 |
msgid "WordPress Fields table emptied"
|
168 |
msgstr "Tabla de Campos WordPress vaciada"
|
169 |
|
170 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:49
|
171 |
msgid "WordPress Fields table deleted"
|
172 |
msgstr "Tabla de Campos WordPress borrada"
|
173 |
|
174 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:58
|
175 |
msgid "Extra Fields table emptied"
|
176 |
msgstr "Tabla de Campos Adicionales vaciada"
|
177 |
|
178 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:63
|
179 |
msgid "Extra Fields table deleted"
|
180 |
msgstr "Tabla de Campos Adicionales borrada"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:72
|
183 |
msgid "Users Data table emptied"
|
184 |
msgstr "Tabla de Datos de Usuarios vaciada"
|
185 |
|
186 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:77
|
187 |
msgid "Users Data table deleted"
|
188 |
msgstr "Tabla de Datos de Usuarios borrada"
|
189 |
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:88
|
191 |
msgid "Options set to default values"
|
192 |
msgstr "Opciones asignadas los valores por defecto"
|
193 |
|
194 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:94
|
195 |
msgid "Options deleted"
|
196 |
msgstr "Opciones borradas"
|
197 |
|
198 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:349
|
199 |
msgid "Options changed"
|
200 |
msgstr "Opciones cambiadas"
|
201 |
|
202 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
203 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
204 |
msgstr "Esta operación creará/actualizará todas las opciones/tablas faltantes ¿Desea continuar?"
|
205 |
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:489
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:754
|
209 |
msgid "Options"
|
210 |
msgstr "Opciones"
|
211 |
|
212 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:442
|
214 |
msgid "Add a new Field"
|
215 |
msgstr "Agregar un nuevo Campo"
|
216 |
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:809
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
221 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:294
|
223 |
msgid "Extra Fields"
|
224 |
msgstr "Campos Adicionales"
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
227 |
msgid "Support the Cimy Project"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
|
231 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:516
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1259
|
236 |
msgid "SUCCESSFUL"
|
237 |
msgstr "EXITOSO"
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:856
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Salvar cambios"
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:531
|
245 |
msgid "General"
|
246 |
msgstr "General"
|
247 |
|
248 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:539
|
249 |
msgid "installed is"
|
250 |
msgstr "instalada es"
|
251 |
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
253 |
msgid "OPTIONS DELETED!"
|
254 |
msgstr "OPCIONES BORRADAS!"
|
255 |
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
258 |
msgid "Fix the problem"
|
259 |
msgstr "Arreglar el problema"
|
260 |
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
262 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
263 |
msgstr "NO CORRESPONDEN LAS VERSIONES! Esto es ocasionado porque no ha desactivado y reactivado el plug-in despues de la actualización! Esto puede ocasionar problemas..."
|
264 |
|
265 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
266 |
msgid "Picture/Avatar upload"
|
267 |
msgstr "Subida de foto/avatar"
|
268 |
|
269 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
270 |
msgid "is created and writable"
|
271 |
msgstr "existe y tiene permisos de escritura"
|
272 |
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
274 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
275 |
msgstr "no está creado o el servidor web no tiene permisos de escritura"
|
276 |
|
277 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
278 |
#, fuzzy
|
279 |
msgid "Show all fields in the welcome email"
|
280 |
msgstr "Mostrar el campo en el registro"
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
283 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
287 |
msgid "Enable email confirmation"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
291 |
msgid "user that registers should confirm its email address via a link click"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
|
295 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:595
|
299 |
+
msgid "Enable form confirmation"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
303 |
+
msgid "a summary of the registration form will be presented to the user"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
307 |
+
msgid "Customize welcome email sent to the new user"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
311 |
+
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
315 |
msgid "Redirect to the source"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
|
319 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
|
323 |
msgid "No captcha"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
327 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
331 |
msgid "Public KEY"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
335 |
msgid "Private KEY"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:651
|
339 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:654
|
343 |
msgid "This captcha is probably weaker, but is easier for users"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
347 |
#, php-format
|
348 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
352 |
msgid "Change login/registration page logo"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:450
|
357 |
msgid "Delete the picture"
|
358 |
msgstr "Borrar la imagen"
|
359 |
|
360 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
361 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
365 |
msgid "Database"
|
366 |
msgstr "Base de Datos"
|
367 |
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:688
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:706
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
372 |
msgid "select action"
|
373 |
msgstr "seleccione acción"
|
374 |
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
376 |
msgid "Default values"
|
377 |
msgstr "Valores por defecto"
|
378 |
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:708
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:727
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
383 |
msgid "Delete"
|
384 |
msgstr "Borrar"
|
385 |
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:694
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:749
|
390 |
msgid "NOT PRESENT"
|
391 |
msgstr "NO EXISTE"
|
392 |
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
394 |
msgid "WordPress Fields table"
|
395 |
msgstr "tabla de Campos WordPress"
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:726
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:743
|
400 |
msgid "Empty"
|
401 |
msgstr "Vacío"
|
402 |
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:719
|
404 |
msgid "Extra Fields table"
|
405 |
msgstr "Tabla de campos adicionales"
|
406 |
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:736
|
408 |
msgid "Users Data table"
|
409 |
msgstr "Tabla de datos del usuario"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:746
|
412 |
msgid "all data inserted by users in all and only extra fields"
|
413 |
msgstr "todos las datos insertados por los usuarios en todos (y unicamente) los campos adicionales"
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
416 |
msgid "Force tables creation"
|
417 |
msgstr "Forzar la creación de tablas"
|
418 |
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
420 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
421 |
msgstr "Equivalente a desactivar y activar el plug-in. No se realizará otra operación."
|
422 |
|
423 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:763
|
424 |
msgid "User Profile"
|
425 |
msgstr "Perfil de usuario"
|
426 |
|
427 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
428 |
msgid "Extra Fields section title"
|
429 |
msgstr "Título de la sección de campos adicionales"
|
430 |
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
432 |
msgid "Fieldset's titles, separates with comma"
|
433 |
msgstr "Títulos de los grupos de campo, separar con coma"
|
434 |
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
436 |
msgid "example: title1,title2,title3"
|
437 |
msgstr "ejemplo: título 1, título 2, título 3"
|
438 |
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:771
|
440 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
441 |
msgstr "<strong>nota:</strong> si cambia el orden o quita grupos de campos posiblemente deba reasignar todos los campos adicionales a su grupo correspondiente"
|
442 |
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:776
|
444 |
msgid "Authors & Users Extended"
|
445 |
msgstr "Autores & Usuarios Extendido"
|
446 |
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:780
|
448 |
msgid "Hide username field"
|
449 |
msgstr "Esconder campo de nombre de usuario"
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
452 |
msgid "Hide name field"
|
453 |
msgstr "Esconder campo de nombre"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:791
|
456 |
msgid "Hide email field"
|
457 |
msgstr "Esconder campo de correo electrónico"
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:795
|
460 |
msgid "Hide role field"
|
461 |
msgstr "Esconder campo de rol"
|
462 |
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
|
464 |
msgid "Hide website field"
|
465 |
msgstr "Esconder el campo de sitio web"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:803
|
468 |
msgid "Hide n. posts field"
|
469 |
msgstr "Esconder el campo de n. entradas"
|
470 |
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:808
|
472 |
msgid "WordPress hidden fields"
|
473 |
msgstr "Campos escondidos WordPress"
|
474 |
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:811
|
476 |
msgid "Show password"
|
477 |
msgstr "Mostrar contraseña"
|
478 |
|
479 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:815
|
480 |
#, fuzzy
|
481 |
msgid "Show confirmation password"
|
482 |
msgstr "Mostrar contraseña"
|
483 |
|
484 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:819
|
485 |
#, fuzzy
|
486 |
msgid "Show password strength meter"
|
487 |
msgstr "Mostrar contraseña"
|
488 |
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:823
|
490 |
msgid "Show first name"
|
491 |
msgstr "Mostrar primer nombre"
|
492 |
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
494 |
msgid "Show last name"
|
495 |
msgstr "Mostrar apellido"
|
496 |
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:831
|
498 |
msgid "Show nickname"
|
499 |
msgstr "Mostrar sobrenombre"
|
500 |
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:835
|
502 |
msgid "Show website"
|
503 |
msgstr "Mostrar sitio web"
|
504 |
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:839
|
506 |
msgid "Show AIM"
|
507 |
msgstr "Mostrar AIM"
|
508 |
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:843
|
510 |
msgid "Show Yahoo IM"
|
511 |
msgstr "Mostrar mensajero Yahoo"
|
512 |
|
513 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:847
|
514 |
msgid "Show Jabber / Google Talk"
|
515 |
msgstr "Mostrar Jabber / Google Talk"
|
516 |
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:851
|
518 |
msgid "Show Biographical Info"
|
519 |
msgstr "Mostrar información biográfica"
|
520 |
|
540 |
msgid "Mismatch"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:221
|
544 |
msgid "Password"
|
545 |
msgstr "Contraseña"
|
546 |
|
547 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:241
|
548 |
msgid "Password confirmation"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:261
|
552 |
msgid "First name"
|
553 |
msgstr "Primer nombre"
|
554 |
|
555 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:281
|
556 |
msgid "Last name"
|
557 |
msgstr "Apellido"
|
558 |
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:301
|
560 |
msgid "Nickname"
|
561 |
msgstr "Sobrenombre"
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:321
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1548
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
|
566 |
msgid "Website"
|
567 |
msgstr "Sitio Web"
|
568 |
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:341
|
570 |
msgid "AIM"
|
571 |
msgstr "AIM"
|
572 |
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:361
|
574 |
msgid "Yahoo IM"
|
575 |
msgstr "Yahoo IM"
|
576 |
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:381
|
578 |
msgid "Jabber / Google Talk"
|
579 |
msgstr "Jabber / Google Talk"
|
580 |
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:401
|
582 |
msgid "Biographical Info"
|
583 |
msgstr "Información Biográfica"
|
584 |
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
587 |
msgid "Fields"
|
588 |
msgstr "Campos"
|
589 |
|
|
|
590 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:765
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1421
|
594 |
#, fuzzy
|
595 |
msgid "Users Extended"
|
596 |
msgstr "Usuarios extendido"
|
609 |
msgid "File '%s' is not an image."
|
610 |
msgstr "El archivo '%s' no es una imagen."
|
611 |
|
612 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:446
|
613 |
#, fuzzy
|
614 |
msgid "Delete the file"
|
615 |
msgstr "Borrar la imagen"
|
616 |
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
618 |
#, fuzzy
|
619 |
msgid "Update the file"
|
620 |
msgstr "Actualizar la imagen"
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:451
|
623 |
msgid "Update the picture"
|
624 |
msgstr "Actualizar la imagen"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:471
|
627 |
msgid "Picture URL:"
|
628 |
msgstr "URL de la imagen:"
|
629 |
|
630 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:712
|
631 |
#, php-format
|
632 |
msgid "%s previous value: %s new value: %s"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:727
|
636 |
#, php-format
|
637 |
msgid "%s (%s) has changed one or more fields"
|
638 |
msgstr ""
|
643 |
msgstr ""
|
644 |
|
645 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
|
|
646 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:213
|
648 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:289
|
649 |
#, fuzzy, php-format
|
650 |
msgid "Username: %s"
|
651 |
msgstr "Nombre de usuario"
|
660 |
msgid "[%s] New User Registration"
|
661 |
msgstr ""
|
662 |
|
|
|
|
|
|
|
|
|
|
|
|
|
663 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
664 |
#, php-format
|
665 |
msgid "[%s] Your username and password"
|
698 |
msgid "An error occurred during the activation"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:290
|
704 |
+
#, fuzzy, php-format
|
705 |
+
msgid "Password: %s"
|
706 |
+
msgstr "Contraseña"
|
707 |
+
|
708 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
709 |
msgid "Invalid activation key."
|
710 |
msgstr ""
|
733 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
737 |
msgid "Add field"
|
738 |
msgstr "Agregar campo"
|
739 |
|
740 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
741 |
msgid "Update field"
|
742 |
msgstr "Actualizar campo"
|
743 |
|
744 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
|
745 |
msgid "Delete field"
|
746 |
msgstr "Borrar campo"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
|
749 |
msgid "Delete selected fields"
|
750 |
msgstr "Borrar campos seleccionados"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
|
753 |
msgid "Change order"
|
754 |
msgstr "Cambiar orden"
|
755 |
|
756 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
|
758 |
msgid "Min length"
|
759 |
msgstr "Longitud mínima"
|
760 |
|
761 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
762 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
763 |
msgid "Exact length"
|
764 |
msgstr "Longitud exacta"
|
765 |
|
766 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
767 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
768 |
msgid "Max length"
|
769 |
msgstr "Longitud máxima"
|
770 |
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
|
772 |
msgid "Exact or Max length"
|
773 |
msgstr "Longitud máxima o exacta"
|
774 |
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
776 |
msgid "changed to"
|
777 |
msgstr "cambiado a"
|
778 |
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
780 |
msgid "You cannot give an order that misses some numbers"
|
781 |
msgstr "No se puede poner un orden que se salte algunos números"
|
782 |
|
783 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:210
|
785 |
msgid "Nothing selected"
|
786 |
msgstr "Nada seleccionado"
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
789 |
msgid "Field(s)"
|
790 |
msgstr "Campo(s)"
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
793 |
msgid "deleted correctly"
|
794 |
msgstr "borrado correctamente"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:239
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1056
|
798 |
msgid "Min size"
|
799 |
msgstr "Tamaño mínimo"
|
800 |
|
801 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
802 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
803 |
msgid "Exact size"
|
804 |
msgstr "Tamaño exacto"
|
805 |
|
806 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:241
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
808 |
msgid "Max size"
|
809 |
msgstr "Tamaño máximo"
|
810 |
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
812 |
msgid "Exact or Max size"
|
813 |
msgstr "Tamaño máximo o exacto"
|
814 |
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:299
|
816 |
msgid "Name not specified"
|
817 |
msgstr "Nombre no especificado"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
820 |
msgid "Name cannot contains spaces"
|
821 |
msgstr "El nombre no puede contener espacios"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
|
824 |
msgid "Label not specified"
|
825 |
msgstr "Etiqueta no especificada"
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
|
828 |
msgid "not selected (with this type is necessary)"
|
829 |
msgstr "no seleccionado (necesario para este tipo)"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
832 |
msgid "If you select"
|
833 |
msgstr "Si usted selecciona"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
836 |
msgid "you cannot select Min or Max"
|
837 |
msgstr "usted no puede seleccionar mínimo o máximo"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:330
|
842 |
msgid "should be in the range of"
|
843 |
msgstr "debe estar en el rango de"
|
844 |
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:340
|
|
|
846 |
msgid "Equal TO not specified"
|
847 |
msgstr "Igual a no especificado"
|
848 |
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:343
|
850 |
msgid "With checkbox type Equal TO can only be"
|
851 |
msgstr "Con tipo casilla de verificación \"igual a\" solo puede ser"
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:346
|
854 |
msgid "With radio type Equal TO can only be"
|
855 |
msgstr "Con tipo radio \"igual a\" solo puede ser"
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:362
|
858 |
msgid "With checkbox type Value can only be"
|
859 |
msgstr "Con tipo casilla de verificación \"Valor\" solo puede ser"
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:365
|
862 |
msgid "With radio type Value can only be"
|
863 |
msgstr "Con tipo radio \"Valor\" solo puede ser"
|
864 |
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
866 |
msgid "Field inserted correctly"
|
867 |
msgstr "Campo insertado correctamente"
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
870 |
msgid "Field #"
|
871 |
msgstr "Campo #"
|
872 |
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
874 |
msgid "updated correctly"
|
875 |
msgstr "Actualizado correctamente"
|
876 |
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
878 |
msgid "Name inserted is just in the database, change to another one"
|
879 |
msgstr "El nombre insertado"
|
880 |
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
882 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
883 |
msgstr "Para agregar un nuevo campo, debe elegir un nombre, tipo y etiqueta. Es opcional indicar un valor y descripción. Las reglas se aplican durante el registro del usuario."
|
884 |
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
886 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
887 |
msgstr "Con <strong>radio</strong> y <strong>checkbox</strong>: <em>Valor</em> y <em>igual a</em> únicamente puede ser 'Yes' o 'No', es decir seleccionado o no seleccionado"
|
888 |
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
890 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
891 |
msgstr "Con <strong>drop-down</strong>: debe agregar todas las opciones en \"etiqueta\" por ejemplo: etiqueta/elemento1,elemento2,elemento3"
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
894 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
895 |
msgstr "Con <strong>picture</strong>: puede precargar una imagen por default poniendo su URL en <em>Valor</em>; \"mínimo,exacto y máximo tamaño\" están en KB; <em>igual a</em> significa el tamañno máximo en pixeles (ancho o alto) para el thumbnail"
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
898 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
899 |
msgstr "Con <strong>picture-url</strong>: puede precargar una imagen por defecto poniendo la URL en <em>Valor</em>; <em>igual a</em> significa el máximo tamaño en pixeles (la altura será proporcional)"
|
900 |
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
902 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
903 |
msgstr "Con <strong>registration-date</strong>: <em>igual a</em> significa el formato de fecha y hora"
|
904 |
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
906 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
907 |
msgstr "Con <strong>avatar</strong>: puede precargar una imagen por defecto colocándola en <em>Valor</em>; 'mínimo,exacto,máximo tamaño' son en KB; <em>igual a</em> es automáticamente fijado en 512 pixeles"
|
908 |
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
910 |
#, fuzzy
|
911 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
912 |
msgstr "Con <strong>picture</strong>: puede precargar una imagen por default poniendo su URL en <em>Valor</em>; \"mínimo,exacto y máximo tamaño\" están en KB; <em>igual a</em> significa el tamañno máximo en pixeles (ancho o alto) para el thumbnail"
|
913 |
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:648
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1089
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1533
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
|
920 |
msgid "Name"
|
921 |
msgstr "Nombre"
|
922 |
|
|
|
923 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1092
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
929 |
msgid "Value"
|
930 |
msgstr "Valor"
|
931 |
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:639
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1095
|
936 |
msgid "Type"
|
937 |
msgstr "Tipo"
|
938 |
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
943 |
msgid "Label"
|
944 |
msgstr "Etiqueta"
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:672
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
950 |
msgid "Description"
|
951 |
msgstr "Descripción"
|
952 |
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
955 |
msgid "Rules"
|
956 |
msgstr "Reglas"
|
957 |
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
960 |
msgid "Actions"
|
961 |
msgstr "Acciones"
|
962 |
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
966 |
msgid "Fieldset"
|
967 |
msgstr "Grupo de campos"
|
968 |
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
971 |
msgid "Can be empty"
|
972 |
msgstr "Puede estar vacío"
|
973 |
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
976 |
msgid "Check for E-mail syntax"
|
977 |
msgstr "Checar formato de e-mail"
|
978 |
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:688
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
981 |
msgid "Can be modified"
|
982 |
msgstr "Puede ser modificado"
|
983 |
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1139
|
986 |
msgid "Can be modified only if empty"
|
987 |
msgstr "Puede ser modificado solo si está vacío"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
|
990 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
991 |
msgid "Can be modified only by admin"
|
992 |
msgstr "Puede ser modificado solo por el administrador"
|
993 |
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
995 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
996 |
msgid "Can be modified only by admin or if empty"
|
997 |
msgstr "Puede ser modificado solo por el administrador o si está vacío"
|
998 |
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:692
|
1000 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
1001 |
msgid "Cannot be modified"
|
1002 |
msgstr "No puede ser modificado"
|
1003 |
|
1004 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
1006 |
msgid "Should be equal TO"
|
1007 |
msgstr "Debe ser igual a"
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
1011 |
msgid "Case sensitive"
|
1012 |
msgstr "Distinción mayúsculas y minúsculas"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
1016 |
msgid "Regular Expression"
|
1017 |
msgstr "Expresión regular"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
1020 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1155
|
1021 |
msgid "Show the field in the registration"
|
1022 |
msgstr "Mostrar el campo en el registro"
|
1023 |
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
1025 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
1026 |
msgid "Show the field in User's profile"
|
1027 |
msgstr "Mostrar el campo en el perfil del usuario"
|
1028 |
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
1030 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1167
|
1031 |
+
#, fuzzy
|
1032 |
+
msgid "Show the field in Users Extended menu"
|
1033 |
msgstr "Mostrar el campo en el menú extendido de A&U"
|
1034 |
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
1036 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1170
|
1037 |
#, fuzzy
|
1038 |
msgid "Show the field in the search engine"
|
1039 |
msgstr "Mostrar el campo en el registro"
|
1040 |
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
1042 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1173
|
1043 |
#, fuzzy
|
1044 |
msgid "Show the field in the blog"
|
1045 |
msgstr "Mostrar el campo en el registro"
|
1046 |
|
1047 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:723
|
1048 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1176
|
1049 |
#, fuzzy
|
1050 |
msgid "Show the field if the role is at least:"
|
1051 |
msgstr "Mostrar el campo en el registro"
|
1052 |
|
1053 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:725
|
1054 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1055 |
msgid "Anonymous"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1184
|
1060 |
+
msgid "User has 'view_cimy_extra_fields' capability"
|
1061 |
+
msgstr ""
|
1062 |
+
|
1063 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:736
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
1065 |
msgid "Send an email to the admin if the user changes its value"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:738
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1197
|
1070 |
+
#, fuzzy
|
1071 |
+
msgid "Advanced options"
|
1072 |
+
msgstr "Acciones"
|
1073 |
+
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
1075 |
msgid "Clear"
|
1076 |
msgstr "Vaciar"
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
|
1079 |
msgid "Invert selection"
|
1080 |
msgstr "Invertir Selección"
|
1081 |
|
1082 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
|
1083 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1084 |
msgstr "&lquot;Está seguro de que quiere borrar los campos y todos los datos insertados por los usuarios?"
|
1085 |
|
1086 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1087 |
msgid "WordPress Fields"
|
1088 |
msgstr "Campos WordPress"
|
1089 |
|
1090 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
1091 |
msgid "None!"
|
1092 |
msgstr "Ninguno!"
|
1093 |
|
1094 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1077
|
1096 |
msgid "Order"
|
1097 |
msgstr "Orden"
|
1098 |
|
1099 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1201
|
1100 |
msgid "Reset"
|
1101 |
msgstr "Reestablecer"
|
1102 |
|
1103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1288
|
1104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1903
|
1105 |
#, fuzzy
|
1106 |
msgid "select"
|
1107 |
msgstr "Borrar"
|
1108 |
|
1109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1429
|
1110 |
#, php-format
|
1111 |
msgid "Search results for “%s”"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
|
1115 |
#, php-format
|
1116 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1465
|
1120 |
msgid "Search Users"
|
1121 |
msgstr "Buscar Usuarios"
|
1122 |
|
1123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
1124 |
msgid "« Back to All Users"
|
1125 |
msgstr "« Regresar a \"todos los usuarios\""
|
1126 |
|
1127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1501
|
1128 |
msgid "Users per page"
|
1129 |
msgstr "Usuarios por página"
|
1130 |
|
1131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1132 |
msgid "Apply"
|
1133 |
msgstr "Aplicar"
|
1134 |
|
1135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1543
|
1136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1137 |
msgid "Role"
|
1138 |
msgstr "Rol"
|
1139 |
|
1140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1553
|
1141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
|
1142 |
msgid "Posts"
|
1143 |
msgstr "Entradas"
|
1144 |
|
1145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1691
|
1146 |
msgid "View posts by this author"
|
1147 |
msgstr "Ver entradas de este autor"
|
1148 |
|
1149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1725
|
1150 |
#, php-format
|
1151 |
msgid "e-mail: %s"
|
1152 |
msgstr "correo electrónico: %s"
|
1153 |
|
1154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1847
|
1155 |
#, fuzzy
|
1156 |
msgid "Change"
|
1157 |
msgstr "Cambiar orden"
|
1158 |
|
1159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1872
|
1160 |
#, fuzzy
|
1161 |
msgid "Update selected users"
|
1162 |
msgstr "Borrar campos seleccionados"
|
1163 |
|
1164 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1165 |
#, fuzzy
|
1166 |
msgid "Update"
|
1167 |
msgstr "Actualizar campo"
|
1168 |
|
1169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1908
|
1170 |
msgid "OK"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1909
|
1174 |
msgid "Cancel"
|
1175 |
msgstr ""
|
1176 |
|
langs/cimy_uef-fr_FR.mo
CHANGED
Binary file
|
langs/cimy_uef-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,116 +16,145 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERREUR"
|
36 |
|
37 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
38 |
msgid "does not match."
|
39 |
msgstr "ne correspondent pas."
|
40 |
|
41 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "n'a pas une syntaxe e-mail correcte"
|
44 |
|
45 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "ne peut pas être vide."
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "n'est pas correct"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
55 |
msgid "YES"
|
56 |
msgstr "OUI"
|
57 |
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
59 |
msgid "NO"
|
60 |
msgstr "NON"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
msgid "should be"
|
64 |
msgstr "devrait être"
|
65 |
|
66 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
67 |
msgid "should be an image."
|
68 |
msgstr "devrait être une image."
|
69 |
|
70 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "ne pouvait pas avoir une taille inférieure à"
|
73 |
|
74 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "ne pouvait pas avoir une longueur inférieur à"
|
77 |
|
78 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "ne pouvais pas avoir une taille différente de"
|
81 |
|
82 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "ne pouvait pas avoir une longueur différente de"
|
85 |
|
86 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "ne pouvait pas avoir une taille supérieure à"
|
89 |
|
90 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "ne pouvait pas avoir une longueur supérieure à"
|
93 |
|
94 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
95 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
96 |
#, fuzzy
|
97 |
msgid "Typed code is not correct."
|
98 |
msgstr "Le code saisi est incorrect."
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
101 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Veuillez téléchargez un fichier avec l'une des extensions suivantes"
|
104 |
|
105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "S'il vous plait, téléchargez une image avec l'une des extensions suivantes"
|
110 |
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
113 |
msgid "Strength indicator"
|
114 |
msgstr "Indicateur de sûreté"
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
#, fuzzy
|
118 |
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 ! \" ? $ % ^ & )."
|
119 |
msgstr "Suggestion: Le mot de passe devrait contenir au moins sept caractères. Pour le sécuriser encore plus, utilisez une combinaison de minuscules, de majuscules, de chiffres et de symboles tels que ! \\\" ? $ % ^ & )."
|
120 |
|
121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
122 |
msgid "Change image"
|
123 |
msgstr "Changer l'image"
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
126 |
msgid "Insert the code:"
|
127 |
msgstr "Insérer le code :"
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
130 |
msgid "no fieldset"
|
131 |
msgstr "aucun regroupement"
|
@@ -134,340 +163,357 @@ msgstr "aucun regroupement"
|
|
134 |
msgid "All"
|
135 |
msgstr "Tous"
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
138 |
msgid "WordPress Fields table emptied"
|
139 |
msgstr "Table des champs WordPress vidée"
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
142 |
msgid "WordPress Fields table deleted"
|
143 |
msgstr "Table des champs WordPress supprimée"
|
144 |
|
145 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
146 |
msgid "Extra Fields table emptied"
|
147 |
msgstr "Table des champs supplémentaires vidée"
|
148 |
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
150 |
msgid "Extra Fields table deleted"
|
151 |
msgstr "Table des champs supplémentaires supprimée"
|
152 |
|
153 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
154 |
msgid "Users Data table emptied"
|
155 |
msgstr "Table des données utilsateurs vidée"
|
156 |
|
157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
158 |
msgid "Users Data table deleted"
|
159 |
msgstr "Table des données utilsateurs supprimée"
|
160 |
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
162 |
msgid "Options set to default values"
|
163 |
msgstr "Options réinitialisées avec les valeurs par défaut"
|
164 |
|
165 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
166 |
msgid "Options deleted"
|
167 |
msgstr "Options supprimées"
|
168 |
|
169 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
170 |
msgid "Options changed"
|
171 |
msgstr "Options changées"
|
172 |
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
175 |
msgstr "Cette opération créera ou mettra à jour toutes les tables et options manquantes. Voulez-vous continuer?"
|
176 |
|
177 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
180 |
msgid "Options"
|
181 |
msgstr "Options"
|
182 |
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
185 |
msgid "Add a new Field"
|
186 |
msgstr "Ajouter un nouveau champ"
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
192 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
194 |
msgid "Extra Fields"
|
195 |
msgstr "Champs Supplémentaires"
|
196 |
|
197 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
198 |
msgid "Support the Cimy Project"
|
199 |
msgstr "Supportez le <em>Cimy Project</em>"
|
200 |
|
201 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
202 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
203 |
msgstr "Ce plug-in est le résultat de plusieurs heures de conception pour ajouter de nouvelles fonctionnalités, supporter les nouvelles versions de WordPress et fixer les bogues. S'il vous plait, faites un don d'argent si vous avez sauvé toutes ces heures!"
|
204 |
|
205 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
206 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
207 |
msgid "SUCCESSFUL"
|
208 |
msgstr "SUCCÈS"
|
209 |
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
msgid "Save Changes"
|
213 |
msgstr "Enregistrer les changements"
|
214 |
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
216 |
msgid "General"
|
217 |
msgstr "Général"
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
220 |
#, fuzzy
|
221 |
msgid "installed is"
|
222 |
msgstr "installé"
|
223 |
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
225 |
msgid "OPTIONS DELETED!"
|
226 |
msgstr "OPTIONS SUPPRIMÉES!"
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
230 |
msgid "Fix the problem"
|
231 |
msgstr "Corriger le problème"
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
234 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
235 |
msgstr "LES VERSIONS NE CORRESPONDENT PAS! Ceci arrive lorsque vous n'avez pas désactivé et réactivé le plug-in après sa mise à jour! Cela peut poser problème..."
|
236 |
|
237 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
238 |
msgid "Picture/Avatar upload"
|
239 |
msgstr "Téléchargement de photo ou d'avatar"
|
240 |
|
241 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
242 |
msgid "is created and writable"
|
243 |
msgstr "est créé et en écriture"
|
244 |
|
245 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
246 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
247 |
msgstr "N'est PAS créé ou le serveur Web N'a PAS les permissions pour l'écrire"
|
248 |
|
249 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
250 |
msgid "Show all fields in the welcome email"
|
251 |
msgstr "Montrer tous les champs dans le courriel de bienvenue"
|
252 |
|
253 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
254 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
255 |
msgstr "le courriel envoyé aux administrateurs et à l'utilisateur lors de l'inscription contiendra tous les champs"
|
256 |
|
257 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
258 |
msgid "Enable email confirmation"
|
259 |
msgstr "Activer la confirmation par courriel"
|
260 |
|
261 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
262 |
msgid "user that registers should confirm its email address via a link click"
|
263 |
msgstr "les utilisateurs qui s'inscrivent doivent confirmer leur adresse courriel grâce à un lien à cliquer"
|
264 |
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
266 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
267 |
msgstr "<strong>note :</strong> avec cette option activée, tous les champs de téléchargement (fichiers, images, avatar) seront désactivés lors de l'inscription seulement"
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
msgid "Redirect to the source"
|
271 |
msgstr "Rediriger au référant"
|
272 |
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
274 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
275 |
msgstr "après l'inscription, ou la confirmation, l'utilisateur sera redirigé à la page qu'il visitait avant de cliquer sur le lien d'inscription"
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
278 |
msgid "No captcha"
|
279 |
msgstr "Pas de captcha"
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
283 |
msgstr "Activer <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
286 |
msgid "Public KEY"
|
287 |
msgstr "Public KEY"
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
msgid "Private KEY"
|
291 |
msgstr "Private KEY"
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
294 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
295 |
msgstr "Activer <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
msgid "This captcha is probably weaker, but is easier for users"
|
299 |
msgstr "Ce captcha est probablement plus faible, mais plus facile d'utilisation pour les utilisateurs"
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
302 |
#, php-format
|
303 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
304 |
msgstr "<strong>AVERTISSEMENT : pour activer ce captcha, téléchargez <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">ce paquet</a> et extrayez-le sous %s</strong>"
|
305 |
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
307 |
msgid "Change login/registration page logo"
|
308 |
msgstr "Changer le logo de la page de connexion et d'inscription"
|
309 |
|
310 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
312 |
msgid "Delete the picture"
|
313 |
msgstr "Supprimer l'image"
|
314 |
|
315 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
316 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
317 |
msgstr "La largeur maximum recommandé est de 328px, mais n'importe quelle hauteur devrait fonctionner."
|
318 |
|
319 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
320 |
msgid "Database"
|
321 |
msgstr "Base de données"
|
322 |
|
323 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
324 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
327 |
msgid "select action"
|
328 |
msgstr "sélectionner une action"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
331 |
msgid "Default values"
|
332 |
msgstr "Valeurs par défaut"
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
335 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
336 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
338 |
msgid "Delete"
|
339 |
msgstr "Supprimer"
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
344 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
345 |
msgid "NOT PRESENT"
|
346 |
msgstr "NON PRESENT"
|
347 |
|
348 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
349 |
msgid "WordPress Fields table"
|
350 |
msgstr "Table des champs WordPress"
|
351 |
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
355 |
msgid "Empty"
|
356 |
msgstr "Vider"
|
357 |
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
359 |
msgid "Extra Fields table"
|
360 |
msgstr "Table des champs supplémentaires"
|
361 |
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
363 |
msgid "Users Data table"
|
364 |
msgstr "Table des données utilisateurs"
|
365 |
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
367 |
msgid "all data inserted by users in all and only extra fields"
|
368 |
msgstr "toutes les données insérées par les utilisateurs dans les champs supplémentaires seulement"
|
369 |
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
371 |
msgid "Force tables creation"
|
372 |
msgstr "Forcer la création des tables"
|
373 |
|
374 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
375 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
376 |
msgstr "équivalent à désactiver et activer le plug-in; aucune autre opération ne sera effectuée"
|
377 |
|
378 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
379 |
msgid "User Profile"
|
380 |
msgstr "Profil utilisateur"
|
381 |
|
382 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
383 |
msgid "Extra Fields section title"
|
384 |
msgstr "Titre de la section des champs supplémentaires"
|
385 |
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
387 |
msgid "Fieldset's titles, separates with comma"
|
388 |
msgstr "Titres des regroupements, séparés par des virgules"
|
389 |
|
390 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
391 |
msgid "example: title1,title2,title3"
|
392 |
msgstr "exemple : titre1,titre2,titre3"
|
393 |
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
395 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
396 |
msgstr "<strong>note</strong> : si vous changez l'ordre ou retirez des regroupements, vous pourriez devoir refaire l'affection des fieldsets aux champs supplémentaires"
|
397 |
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
399 |
msgid "Authors & Users Extended"
|
400 |
msgstr "Auteurs & Utilisateurs Étendus"
|
401 |
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
403 |
msgid "Hide username field"
|
404 |
msgstr "Cacher le champ nom d'utilisateur"
|
405 |
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
407 |
msgid "Hide name field"
|
408 |
msgstr "Cacher le champ nom"
|
409 |
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
411 |
msgid "Hide email field"
|
412 |
msgstr "Cacher le champ courriel"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
415 |
msgid "Hide role field"
|
416 |
msgstr "Cacher le champ rôle"
|
417 |
|
418 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
419 |
msgid "Hide website field"
|
420 |
msgstr "Cacher le champ du site Web"
|
421 |
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
423 |
msgid "Hide n. posts field"
|
424 |
msgstr "Cacher le champ nbre d'articles"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
427 |
msgid "WordPress hidden fields"
|
428 |
msgstr "Champs WordPress cachés"
|
429 |
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
431 |
msgid "Show password"
|
432 |
msgstr "Montrer le mot de passe"
|
433 |
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
435 |
msgid "Show confirmation password"
|
436 |
msgstr "Montrer la confirmation du mot de passe"
|
437 |
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
439 |
msgid "Show password strength meter"
|
440 |
msgstr "Montrer l'indicateur de sûreté"
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
443 |
msgid "Show first name"
|
444 |
msgstr "Montrer le prénom"
|
445 |
|
446 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
447 |
msgid "Show last name"
|
448 |
msgstr "Montrer le nom"
|
449 |
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
451 |
msgid "Show nickname"
|
452 |
msgstr "Montrer le surnom"
|
453 |
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
455 |
msgid "Show website"
|
456 |
msgstr "Montrer le site web"
|
457 |
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
459 |
msgid "Show AIM"
|
460 |
msgstr "Montrer AIM"
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
463 |
msgid "Show Yahoo IM"
|
464 |
msgstr "Montrer Yahoo IM"
|
465 |
|
466 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
467 |
msgid "Show Jabber / Google Talk"
|
468 |
msgstr "Montrer Jabber / Google Talk"
|
469 |
|
470 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
471 |
msgid "Show Biographical Info"
|
472 |
msgstr "Afficher les renseignements biographiques"
|
473 |
|
@@ -493,57 +539,57 @@ msgstr ""
|
|
493 |
msgid "Mismatch"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
497 |
msgid "Password"
|
498 |
msgstr "Mot de passe"
|
499 |
|
500 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
501 |
msgid "Password confirmation"
|
502 |
msgstr "Confirmation du mot de passe"
|
503 |
|
504 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
505 |
msgid "First name"
|
506 |
msgstr "Prénom"
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
509 |
msgid "Last name"
|
510 |
msgstr "Nom"
|
511 |
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
513 |
msgid "Nickname"
|
514 |
msgstr "Pseudonyme"
|
515 |
|
516 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
519 |
msgid "Website"
|
520 |
msgstr "Site Web"
|
521 |
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
523 |
msgid "AIM"
|
524 |
msgstr "AIM"
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
527 |
msgid "Yahoo IM"
|
528 |
msgstr "Yahoo IM"
|
529 |
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
531 |
msgid "Jabber / Google Talk"
|
532 |
msgstr "Jabber / Google Talk"
|
533 |
|
534 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
535 |
msgid "Biographical Info"
|
536 |
msgstr "Renseignements biographiques"
|
537 |
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
540 |
msgid "Fields"
|
541 |
msgstr "Champs"
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:752
|
544 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
545 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
547 |
msgid "Users Extended"
|
548 |
msgstr "Utilisateurs Étendus"
|
549 |
|
@@ -561,28 +607,28 @@ msgstr "La bibliothèque GD n'est pas installée."
|
|
561 |
msgid "File '%s' is not an image."
|
562 |
msgstr "Le fichier '%s' n'est pas une image."
|
563 |
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
565 |
msgid "Delete the file"
|
566 |
msgstr "Supprimer le fichier"
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
569 |
msgid "Update the file"
|
570 |
msgstr "Mettre à jour le fichier"
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
573 |
msgid "Update the picture"
|
574 |
msgstr "Mettre à jour la photo"
|
575 |
|
576 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
577 |
msgid "Picture URL:"
|
578 |
msgstr "URL de la photo :"
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
581 |
#, php-format
|
582 |
msgid "%s previous value: %s new value: %s"
|
583 |
msgstr "%s ancienne valeur : %s; nouvelle valeur : %s"
|
584 |
|
585 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
586 |
#, php-format
|
587 |
msgid "%s (%s) has changed one or more fields"
|
588 |
msgstr "%s (%s) a modifié un ou plusieurs champs"
|
@@ -593,8 +639,9 @@ msgid "New user registration on your site %s:"
|
|
593 |
msgstr "Inscription d'un nouvel utilisateur sur votre site %s :"
|
594 |
|
595 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
597 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
|
|
|
|
598 |
#, php-format
|
599 |
msgid "Username: %s"
|
600 |
msgstr "Identifiant : %s"
|
@@ -609,12 +656,6 @@ msgstr "Courriel : %s"
|
|
609 |
msgid "[%s] New User Registration"
|
610 |
msgstr "[%s] Inscription d'un nouvel utilisateur"
|
611 |
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
613 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
614 |
-
#, php-format
|
615 |
-
msgid "Password: %s"
|
616 |
-
msgstr "Mot de passe : %s"
|
617 |
-
|
618 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
619 |
#, php-format
|
620 |
msgid "[%s] Your username and password"
|
@@ -658,6 +699,13 @@ msgstr "Votre compte à <a href=\"%1$s\">%2$s</a> est actif. Vous pouvez vou
|
|
658 |
msgid "An error occurred during the activation"
|
659 |
msgstr "Une erreur est survenue durant l'activation"
|
660 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
661 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
662 |
msgid "Invalid activation key."
|
663 |
msgstr "Clef d'activation invalide."
|
@@ -686,437 +734,438 @@ msgstr "identifiant et courriel utilisé"
|
|
686 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
687 |
msgstr "Cette adresse courriel est déjà utilisée. Veuillez vérifier votre boite aux lettres pour le courriel d'activation. Si vous ne faites rien, ce courriel sera de nouveau disponible pour l'inscription."
|
688 |
|
689 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
690 |
msgid "Add field"
|
691 |
msgstr "Ajouter un champ"
|
692 |
|
693 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
694 |
msgid "Update field"
|
695 |
msgstr "Mettre à jour le champ"
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
698 |
msgid "Delete field"
|
699 |
msgstr "Supprimer le champ"
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
702 |
msgid "Delete selected fields"
|
703 |
msgstr "Supprimer les champs sélectionnés"
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
706 |
msgid "Change order"
|
707 |
msgstr "Changer l'ordre"
|
708 |
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
711 |
msgid "Min length"
|
712 |
msgstr "Longueur min"
|
713 |
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
716 |
msgid "Exact length"
|
717 |
msgstr "Longueur exacte"
|
718 |
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
721 |
msgid "Max length"
|
722 |
msgstr "Longueur max"
|
723 |
|
724 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
725 |
msgid "Exact or Max length"
|
726 |
msgstr "Longueur exacte ou max"
|
727 |
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
729 |
msgid "changed to"
|
730 |
msgstr "changé à"
|
731 |
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
733 |
msgid "You cannot give an order that misses some numbers"
|
734 |
msgstr "Vous ne pouvez pas donner un ordre qui manque des nombres"
|
735 |
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
737 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
738 |
msgid "Nothing selected"
|
739 |
msgstr "Rien n'est sélectionné"
|
740 |
|
741 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
742 |
msgid "Field(s)"
|
743 |
msgstr "Champ(s)"
|
744 |
|
745 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
746 |
msgid "deleted correctly"
|
747 |
msgstr "supprmé(e) correctement"
|
748 |
|
749 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
750 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
751 |
msgid "Min size"
|
752 |
msgstr "Taille min"
|
753 |
|
754 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
755 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
756 |
msgid "Exact size"
|
757 |
msgstr "Taille exacte"
|
758 |
|
759 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
760 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
761 |
msgid "Max size"
|
762 |
msgstr "Taille max"
|
763 |
|
764 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
765 |
msgid "Exact or Max size"
|
766 |
msgstr "Taille exacte ou Max"
|
767 |
|
768 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
769 |
msgid "Name not specified"
|
770 |
msgstr "Nom non spécifié"
|
771 |
|
772 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
773 |
msgid "Name cannot contains spaces"
|
774 |
msgstr "Le nom ne peut pas contenir d'espace"
|
775 |
|
776 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
777 |
msgid "Label not specified"
|
778 |
msgstr "Étiquette non spécifié"
|
779 |
|
780 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
781 |
msgid "not selected (with this type is necessary)"
|
782 |
msgstr "non sélectionné (avec ce type, c'est nécessaire)"
|
783 |
|
784 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
785 |
msgid "If you select"
|
786 |
msgstr "Si vous sélectionnez"
|
787 |
|
788 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
789 |
msgid "you cannot select Min or Max"
|
790 |
msgstr "vous ne pouvez pas sélectionner Min ou Max"
|
791 |
|
792 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
793 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
msgid "should be in the range of"
|
796 |
msgstr "devrait être compris entre"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
800 |
msgid "Equal TO not specified"
|
801 |
msgstr "Égal À non spécifié"
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
804 |
msgid "With checkbox type Equal TO can only be"
|
805 |
msgstr "Avec le type checkbox, Égal À ne peut être que"
|
806 |
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
808 |
msgid "With radio type Equal TO can only be"
|
809 |
msgstr "Avec le type radio, Égal À ne peut être que"
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
msgid "With checkbox type Value can only be"
|
813 |
msgstr "Avec le type checkbox, la valeur ne peut être que"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
msgid "With radio type Value can only be"
|
817 |
msgstr "Avec le type radio, la valeur ne peut être que"
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
820 |
msgid "Field inserted correctly"
|
821 |
msgstr "Champ inséré correctement"
|
822 |
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
msgid "Field #"
|
825 |
msgstr "Champ #"
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
msgid "updated correctly"
|
829 |
msgstr "mis à jour correctement"
|
830 |
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
832 |
msgid "Name inserted is just in the database, change to another one"
|
833 |
msgstr "Le nom est déjà dans la base de données; veuillez le changer"
|
834 |
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
837 |
msgstr "Pour ajouter un nouveau champ, vous devez choisir un nom, un type et une étiquette; la valeur et la description sont optionnelles. Les règles sont appliquées lors de l'inscription d'un utilisateur."
|
838 |
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
840 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
841 |
msgstr "Avec les types <strong>radio</strong> et <strong>checkbox</strong> : <em>Valeur</em> et <em>égal À</em> peuvent seulement être 'Yes' ou 'No' ce qui signifie 'sélectionné' ou 'non sélectionné'"
|
842 |
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
844 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
845 |
msgstr "Avec le type <strong>drop-down</strong> : vous devez ajouter toutes les options dans l'étiquette, par exemple: étiquette/item1,item2,item3"
|
846 |
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
849 |
msgstr "Avec le type <strong>picture</strong> : vous pouvez précharger une image par défaut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>égal À</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
|
850 |
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
852 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
853 |
msgstr "Avec le type <strong>picture-url</strong> : vous pouvez précharger une image par défaut en indiqaunt son URL dans <em>Valeur</em>; <em>égal À</em> indique la taille de la largeur max en pixels (la hauteur sera proportionnelle)"
|
854 |
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
857 |
msgstr "Avec le type <strong>registration-date</strong> : <em>égal À</em> indique un format date et heure"
|
858 |
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
860 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
861 |
msgstr "Avec le type <strong>picture</strong> : vous pouvez précharger une image par défaut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>égal À</em> est automatiquement mis à 512 pixels"
|
862 |
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
864 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
865 |
msgstr "Avec le type <strong>picture</strong> : vous pouvez précharger un fichier par défaut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>égal À</em> indique les extensions de fichiers acceptés séparés par une virgule, exemple: zip,pdf,doc"
|
866 |
|
867 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
870 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
871 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
873 |
msgid "Name"
|
874 |
msgstr "Nom"
|
875 |
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
877 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
882 |
msgid "Value"
|
883 |
msgstr "Valeur"
|
884 |
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
886 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
887 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
889 |
msgid "Type"
|
890 |
msgstr "Type"
|
891 |
|
892 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
895 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
896 |
msgid "Label"
|
897 |
msgstr "Étiquette"
|
898 |
|
899 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
901 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
902 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
903 |
msgid "Description"
|
904 |
msgstr "Description"
|
905 |
|
906 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
907 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
908 |
msgid "Rules"
|
909 |
msgstr "Règles"
|
910 |
|
911 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
912 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
913 |
msgid "Actions"
|
914 |
msgstr "Actions"
|
915 |
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
917 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
918 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
919 |
msgid "Fieldset"
|
920 |
msgstr "Regroupements"
|
921 |
|
922 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
923 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
924 |
msgid "Can be empty"
|
925 |
msgstr "Peut être vide"
|
926 |
|
927 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
929 |
msgid "Check for E-mail syntax"
|
930 |
msgstr "Vérifier la syntaxe du courriel"
|
931 |
|
932 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
934 |
msgid "Can be modified"
|
935 |
msgstr "Peut être modifié"
|
936 |
|
937 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
938 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
939 |
msgid "Can be modified only if empty"
|
940 |
msgstr "Ne peut être modifié que s'il est vide"
|
941 |
|
942 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
944 |
msgid "Can be modified only by admin"
|
945 |
msgstr "Ne peut être modifié que par un admin"
|
946 |
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
949 |
msgid "Can be modified only by admin or if empty"
|
950 |
msgstr "Ne peut être modifié que par un admin ou s'il est vide"
|
951 |
|
952 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
954 |
msgid "Cannot be modified"
|
955 |
msgstr "Ne peut pas être modifié"
|
956 |
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
959 |
msgid "Should be equal TO"
|
960 |
msgstr "Devrait être égal À"
|
961 |
|
962 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
964 |
msgid "Case sensitive"
|
965 |
msgstr "Tenir compte de la case (majuscule/minuscule)"
|
966 |
|
967 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
969 |
msgid "Regular Expression"
|
970 |
msgstr "Expression régulière"
|
971 |
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
974 |
msgid "Show the field in the registration"
|
975 |
msgstr "Montrer le champ lors de l'inscription"
|
976 |
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
979 |
msgid "Show the field in User's profile"
|
980 |
msgstr "Montrer le champ dans le profil de l'utilisateur"
|
981 |
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
983 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
984 |
-
|
|
|
985 |
msgstr "Montrer le champ dans le menu A&U Étendu"
|
986 |
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
988 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
989 |
msgid "Show the field in the search engine"
|
990 |
msgstr "Montrer le champ dans les moteurs de recherche"
|
991 |
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
993 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
994 |
msgid "Show the field in the blog"
|
995 |
msgstr "Montrer le champ dans le blogue"
|
996 |
|
997 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
999 |
msgid "Show the field if the role is at least:"
|
1000 |
msgstr "Montrer le champ si le rôle est au moins :"
|
1001 |
|
1002 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
msgid "Anonymous"
|
1005 |
msgstr "Anonyme"
|
1006 |
|
1007 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1009 |
msgid "Send an email to the admin if the user changes its value"
|
1010 |
msgstr "Envoyer un courriel à l'administrateur si l'utilisateur modifie la valeur de ce champ"
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1013 |
msgid "Clear"
|
1014 |
msgstr "Vider (RAZ)"
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1017 |
msgid "Invert selection"
|
1018 |
msgstr "Inverser la sélection"
|
1019 |
|
1020 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1021 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1022 |
msgstr "Êtes-vous certain de vouloir supprimer ce(s) champ(s) et toutes les données insérées par vos utilisateurs?"
|
1023 |
|
1024 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1025 |
msgid "WordPress Fields"
|
1026 |
msgstr "Champs WordPress"
|
1027 |
|
1028 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1029 |
msgid "None!"
|
1030 |
msgstr "Aucun!"
|
1031 |
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1033 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1034 |
msgid "Order"
|
1035 |
msgstr "Ordre"
|
1036 |
|
1037 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1038 |
msgid "Reset"
|
1039 |
msgstr "Réinitialiser"
|
1040 |
|
1041 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1043 |
#, fuzzy
|
1044 |
msgid "select"
|
1045 |
msgstr "sélectionnez"
|
1046 |
|
1047 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1048 |
#, php-format
|
1049 |
msgid "Search results for “%s”"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1053 |
#, php-format
|
1054 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1055 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
1056 |
|
1057 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1058 |
msgid "Search Users"
|
1059 |
msgstr "Chercher des utilisateurs"
|
1060 |
|
1061 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1062 |
msgid "« Back to All Users"
|
1063 |
msgstr "« Retour à tous les utilisateurs"
|
1064 |
|
1065 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1066 |
msgid "Users per page"
|
1067 |
msgstr "Utilisateurs par page"
|
1068 |
|
1069 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1070 |
msgid "Apply"
|
1071 |
msgstr "Appliquer"
|
1072 |
|
1073 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1074 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1075 |
-
msgid "Username"
|
1076 |
-
msgstr "Identifiant"
|
1077 |
-
|
1078 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1515
|
1079 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1080 |
-
msgid "E-mail"
|
1081 |
-
msgstr "Courriel"
|
1082 |
-
|
1083 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1084 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1085 |
msgid "Role"
|
1086 |
msgstr "Rôle"
|
1087 |
|
1088 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1089 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1090 |
msgid "Posts"
|
1091 |
msgstr "Articles"
|
1092 |
|
1093 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1094 |
msgid "View posts by this author"
|
1095 |
msgstr "Voir les articles de cet auteur"
|
1096 |
|
1097 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1098 |
#, php-format
|
1099 |
msgid "e-mail: %s"
|
1100 |
msgstr "courriel : %s"
|
1101 |
|
1102 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1103 |
#, fuzzy
|
1104 |
msgid "Change"
|
1105 |
msgstr "Changer l'image"
|
1106 |
|
1107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1108 |
msgid "Update selected users"
|
1109 |
msgstr "Mettre à jour les utilisateurs sélectionnés"
|
1110 |
|
1111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1112 |
msgid "Update"
|
1113 |
msgstr "Mettre à jour"
|
1114 |
|
1115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1116 |
msgid "OK"
|
1117 |
msgstr "OK"
|
1118 |
|
1119 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1120 |
msgid "Cancel"
|
1121 |
msgstr "Annuler"
|
1122 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-06-19 16:33+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-06-19 16:34+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:453
|
|
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1241
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERREUR"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
38 |
msgid "does not match."
|
39 |
msgstr "ne correspondent pas."
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "n'a pas une syntaxe e-mail correcte"
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "ne peut pas être vide."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "n'est pas correct"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
57 |
msgid "YES"
|
58 |
msgstr "OUI"
|
59 |
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
63 |
msgid "NO"
|
64 |
msgstr "NON"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:463
|
67 |
msgid "should be"
|
68 |
msgstr "devrait être"
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "should be an image."
|
72 |
msgstr "devrait être une image."
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
75 |
msgid "couldn’t have size less than"
|
76 |
msgstr "ne pouvait pas avoir une taille inférieure à"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
79 |
msgid "couldn’t have length less than"
|
80 |
msgstr "ne pouvait pas avoir une longueur inférieur à"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
83 |
msgid "couldn’t have size different than"
|
84 |
msgstr "ne pouvais pas avoir une taille différente de"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
87 |
msgid "couldn’t have length different than"
|
88 |
msgstr "ne pouvait pas avoir une longueur différente de"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
91 |
msgid "couldn’t have size more than"
|
92 |
msgstr "ne pouvait pas avoir une taille supérieure à"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
95 |
msgid "couldn’t have length more than"
|
96 |
msgstr "ne pouvait pas avoir une longueur supérieure à"
|
97 |
|
98 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
100 |
#, fuzzy
|
101 |
msgid "Typed code is not correct."
|
102 |
msgstr "Le code saisi est incorrect."
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:636
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1528
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1529
|
107 |
+
msgid "Username"
|
108 |
+
msgstr "Identifiant"
|
109 |
+
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:639
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1538
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
|
113 |
+
msgid "E-mail"
|
114 |
+
msgstr "Courriel"
|
115 |
+
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:889
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:302
|
118 |
msgid "Please upload a file with one of the following extensions"
|
119 |
msgstr "Veuillez téléchargez un fichier avec l'une des extensions suivantes"
|
120 |
|
121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:895
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:308
|
124 |
msgid "Please upload an image with one of the following extensions"
|
125 |
msgstr "S'il vous plait, téléchargez une image avec l'une des extensions suivantes"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1052
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
129 |
msgid "Strength indicator"
|
130 |
msgstr "Indicateur de sûreté"
|
131 |
|
132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1053
|
133 |
#, fuzzy
|
134 |
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 ! \" ? $ % ^ & )."
|
135 |
msgstr "Suggestion: Le mot de passe devrait contenir au moins sept caractères. Pour le sécuriser encore plus, utilisez une combinaison de minuscules, de majuscules, de chiffres et de symboles tels que ! \\\" ? $ % ^ & )."
|
136 |
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1099
|
138 |
msgid "Change image"
|
139 |
msgstr "Changer l'image"
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1102
|
142 |
msgid "Insert the code:"
|
143 |
msgstr "Insérer le code :"
|
144 |
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1163
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1165
|
147 |
+
msgid "Confirm your registration"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1171
|
151 |
+
msgid "A password will be e-mailed to you."
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1178
|
155 |
+
msgid "← Back"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
159 |
msgid "no fieldset"
|
160 |
msgstr "aucun regroupement"
|
163 |
msgid "All"
|
164 |
msgstr "Tous"
|
165 |
|
166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:44
|
167 |
msgid "WordPress Fields table emptied"
|
168 |
msgstr "Table des champs WordPress vidée"
|
169 |
|
170 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:49
|
171 |
msgid "WordPress Fields table deleted"
|
172 |
msgstr "Table des champs WordPress supprimée"
|
173 |
|
174 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:58
|
175 |
msgid "Extra Fields table emptied"
|
176 |
msgstr "Table des champs supplémentaires vidée"
|
177 |
|
178 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:63
|
179 |
msgid "Extra Fields table deleted"
|
180 |
msgstr "Table des champs supplémentaires supprimée"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:72
|
183 |
msgid "Users Data table emptied"
|
184 |
msgstr "Table des données utilsateurs vidée"
|
185 |
|
186 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:77
|
187 |
msgid "Users Data table deleted"
|
188 |
msgstr "Table des données utilsateurs supprimée"
|
189 |
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:88
|
191 |
msgid "Options set to default values"
|
192 |
msgstr "Options réinitialisées avec les valeurs par défaut"
|
193 |
|
194 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:94
|
195 |
msgid "Options deleted"
|
196 |
msgstr "Options supprimées"
|
197 |
|
198 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:349
|
199 |
msgid "Options changed"
|
200 |
msgstr "Options changées"
|
201 |
|
202 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
203 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
204 |
msgstr "Cette opération créera ou mettra à jour toutes les tables et options manquantes. Voulez-vous continuer?"
|
205 |
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:489
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:754
|
209 |
msgid "Options"
|
210 |
msgstr "Options"
|
211 |
|
212 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:442
|
214 |
msgid "Add a new Field"
|
215 |
msgstr "Ajouter un nouveau champ"
|
216 |
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:809
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
221 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:294
|
223 |
msgid "Extra Fields"
|
224 |
msgstr "Champs Supplémentaires"
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
227 |
msgid "Support the Cimy Project"
|
228 |
msgstr "Supportez le <em>Cimy Project</em>"
|
229 |
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
|
231 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
232 |
msgstr "Ce plug-in est le résultat de plusieurs heures de conception pour ajouter de nouvelles fonctionnalités, supporter les nouvelles versions de WordPress et fixer les bogues. S'il vous plait, faites un don d'argent si vous avez sauvé toutes ces heures!"
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:516
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1259
|
236 |
msgid "SUCCESSFUL"
|
237 |
msgstr "SUCCÈS"
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:856
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Enregistrer les changements"
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:531
|
245 |
msgid "General"
|
246 |
msgstr "Général"
|
247 |
|
248 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:539
|
249 |
#, fuzzy
|
250 |
msgid "installed is"
|
251 |
msgstr "installé"
|
252 |
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
254 |
msgid "OPTIONS DELETED!"
|
255 |
msgstr "OPTIONS SUPPRIMÉES!"
|
256 |
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
258 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
259 |
msgid "Fix the problem"
|
260 |
msgstr "Corriger le problème"
|
261 |
|
262 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
263 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
264 |
msgstr "LES VERSIONS NE CORRESPONDENT PAS! Ceci arrive lorsque vous n'avez pas désactivé et réactivé le plug-in après sa mise à jour! Cela peut poser problème..."
|
265 |
|
266 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
267 |
msgid "Picture/Avatar upload"
|
268 |
msgstr "Téléchargement de photo ou d'avatar"
|
269 |
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
271 |
msgid "is created and writable"
|
272 |
msgstr "est créé et en écriture"
|
273 |
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
275 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
276 |
msgstr "N'est PAS créé ou le serveur Web N'a PAS les permissions pour l'écrire"
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
279 |
msgid "Show all fields in the welcome email"
|
280 |
msgstr "Montrer tous les champs dans le courriel de bienvenue"
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
283 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
284 |
msgstr "le courriel envoyé aux administrateurs et à l'utilisateur lors de l'inscription contiendra tous les champs"
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
287 |
msgid "Enable email confirmation"
|
288 |
msgstr "Activer la confirmation par courriel"
|
289 |
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
291 |
msgid "user that registers should confirm its email address via a link click"
|
292 |
msgstr "les utilisateurs qui s'inscrivent doivent confirmer leur adresse courriel grâce à un lien à cliquer"
|
293 |
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
|
295 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
296 |
msgstr "<strong>note :</strong> avec cette option activée, tous les champs de téléchargement (fichiers, images, avatar) seront désactivés lors de l'inscription seulement"
|
297 |
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:595
|
299 |
+
#, fuzzy
|
300 |
+
msgid "Enable form confirmation"
|
301 |
+
msgstr "Activer la confirmation par courriel"
|
302 |
+
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
304 |
+
msgid "a summary of the registration form will be presented to the user"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
308 |
+
msgid "Customize welcome email sent to the new user"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
312 |
+
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
316 |
msgid "Redirect to the source"
|
317 |
msgstr "Rediriger au référant"
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
|
320 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
321 |
msgstr "après l'inscription, ou la confirmation, l'utilisateur sera redirigé à la page qu'il visitait avant de cliquer sur le lien d'inscription"
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
|
324 |
msgid "No captcha"
|
325 |
msgstr "Pas de captcha"
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
328 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
329 |
msgstr "Activer <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
332 |
msgid "Public KEY"
|
333 |
msgstr "Public KEY"
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
336 |
msgid "Private KEY"
|
337 |
msgstr "Private KEY"
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:651
|
340 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
341 |
msgstr "Activer <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:654
|
344 |
msgid "This captcha is probably weaker, but is easier for users"
|
345 |
msgstr "Ce captcha est probablement plus faible, mais plus facile d'utilisation pour les utilisateurs"
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
348 |
#, php-format
|
349 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
350 |
msgstr "<strong>AVERTISSEMENT : pour activer ce captcha, téléchargez <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">ce paquet</a> et extrayez-le sous %s</strong>"
|
351 |
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
353 |
msgid "Change login/registration page logo"
|
354 |
msgstr "Changer le logo de la page de connexion et d'inscription"
|
355 |
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:450
|
358 |
msgid "Delete the picture"
|
359 |
msgstr "Supprimer l'image"
|
360 |
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
362 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
363 |
msgstr "La largeur maximum recommandé est de 328px, mais n'importe quelle hauteur devrait fonctionner."
|
364 |
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
366 |
msgid "Database"
|
367 |
msgstr "Base de données"
|
368 |
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:688
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:706
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
373 |
msgid "select action"
|
374 |
msgstr "sélectionner une action"
|
375 |
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
377 |
msgid "Default values"
|
378 |
msgstr "Valeurs par défaut"
|
379 |
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:708
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:727
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
384 |
msgid "Delete"
|
385 |
msgstr "Supprimer"
|
386 |
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:694
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:749
|
391 |
msgid "NOT PRESENT"
|
392 |
msgstr "NON PRESENT"
|
393 |
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
395 |
msgid "WordPress Fields table"
|
396 |
msgstr "Table des champs WordPress"
|
397 |
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:726
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:743
|
401 |
msgid "Empty"
|
402 |
msgstr "Vider"
|
403 |
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:719
|
405 |
msgid "Extra Fields table"
|
406 |
msgstr "Table des champs supplémentaires"
|
407 |
|
408 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:736
|
409 |
msgid "Users Data table"
|
410 |
msgstr "Table des données utilisateurs"
|
411 |
|
412 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:746
|
413 |
msgid "all data inserted by users in all and only extra fields"
|
414 |
msgstr "toutes les données insérées par les utilisateurs dans les champs supplémentaires seulement"
|
415 |
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
417 |
msgid "Force tables creation"
|
418 |
msgstr "Forcer la création des tables"
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
421 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
422 |
msgstr "équivalent à désactiver et activer le plug-in; aucune autre opération ne sera effectuée"
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:763
|
425 |
msgid "User Profile"
|
426 |
msgstr "Profil utilisateur"
|
427 |
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
429 |
msgid "Extra Fields section title"
|
430 |
msgstr "Titre de la section des champs supplémentaires"
|
431 |
|
432 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
433 |
msgid "Fieldset's titles, separates with comma"
|
434 |
msgstr "Titres des regroupements, séparés par des virgules"
|
435 |
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
437 |
msgid "example: title1,title2,title3"
|
438 |
msgstr "exemple : titre1,titre2,titre3"
|
439 |
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:771
|
441 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
442 |
msgstr "<strong>note</strong> : si vous changez l'ordre ou retirez des regroupements, vous pourriez devoir refaire l'affection des fieldsets aux champs supplémentaires"
|
443 |
|
444 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:776
|
445 |
msgid "Authors & Users Extended"
|
446 |
msgstr "Auteurs & Utilisateurs Étendus"
|
447 |
|
448 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:780
|
449 |
msgid "Hide username field"
|
450 |
msgstr "Cacher le champ nom d'utilisateur"
|
451 |
|
452 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
453 |
msgid "Hide name field"
|
454 |
msgstr "Cacher le champ nom"
|
455 |
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:791
|
457 |
msgid "Hide email field"
|
458 |
msgstr "Cacher le champ courriel"
|
459 |
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:795
|
461 |
msgid "Hide role field"
|
462 |
msgstr "Cacher le champ rôle"
|
463 |
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
|
465 |
msgid "Hide website field"
|
466 |
msgstr "Cacher le champ du site Web"
|
467 |
|
468 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:803
|
469 |
msgid "Hide n. posts field"
|
470 |
msgstr "Cacher le champ nbre d'articles"
|
471 |
|
472 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:808
|
473 |
msgid "WordPress hidden fields"
|
474 |
msgstr "Champs WordPress cachés"
|
475 |
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:811
|
477 |
msgid "Show password"
|
478 |
msgstr "Montrer le mot de passe"
|
479 |
|
480 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:815
|
481 |
msgid "Show confirmation password"
|
482 |
msgstr "Montrer la confirmation du mot de passe"
|
483 |
|
484 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:819
|
485 |
msgid "Show password strength meter"
|
486 |
msgstr "Montrer l'indicateur de sûreté"
|
487 |
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:823
|
489 |
msgid "Show first name"
|
490 |
msgstr "Montrer le prénom"
|
491 |
|
492 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
493 |
msgid "Show last name"
|
494 |
msgstr "Montrer le nom"
|
495 |
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:831
|
497 |
msgid "Show nickname"
|
498 |
msgstr "Montrer le surnom"
|
499 |
|
500 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:835
|
501 |
msgid "Show website"
|
502 |
msgstr "Montrer le site web"
|
503 |
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:839
|
505 |
msgid "Show AIM"
|
506 |
msgstr "Montrer AIM"
|
507 |
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:843
|
509 |
msgid "Show Yahoo IM"
|
510 |
msgstr "Montrer Yahoo IM"
|
511 |
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:847
|
513 |
msgid "Show Jabber / Google Talk"
|
514 |
msgstr "Montrer Jabber / Google Talk"
|
515 |
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:851
|
517 |
msgid "Show Biographical Info"
|
518 |
msgstr "Afficher les renseignements biographiques"
|
519 |
|
539 |
msgid "Mismatch"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:221
|
543 |
msgid "Password"
|
544 |
msgstr "Mot de passe"
|
545 |
|
546 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:241
|
547 |
msgid "Password confirmation"
|
548 |
msgstr "Confirmation du mot de passe"
|
549 |
|
550 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:261
|
551 |
msgid "First name"
|
552 |
msgstr "Prénom"
|
553 |
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:281
|
555 |
msgid "Last name"
|
556 |
msgstr "Nom"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:301
|
559 |
msgid "Nickname"
|
560 |
msgstr "Pseudonyme"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:321
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1548
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
|
565 |
msgid "Website"
|
566 |
msgstr "Site Web"
|
567 |
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:341
|
569 |
msgid "AIM"
|
570 |
msgstr "AIM"
|
571 |
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:361
|
573 |
msgid "Yahoo IM"
|
574 |
msgstr "Yahoo IM"
|
575 |
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:381
|
577 |
msgid "Jabber / Google Talk"
|
578 |
msgstr "Jabber / Google Talk"
|
579 |
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:401
|
581 |
msgid "Biographical Info"
|
582 |
msgstr "Renseignements biographiques"
|
583 |
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
586 |
msgid "Fields"
|
587 |
msgstr "Champs"
|
588 |
|
|
|
589 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:765
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1421
|
593 |
msgid "Users Extended"
|
594 |
msgstr "Utilisateurs Étendus"
|
595 |
|
607 |
msgid "File '%s' is not an image."
|
608 |
msgstr "Le fichier '%s' n'est pas une image."
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:446
|
611 |
msgid "Delete the file"
|
612 |
msgstr "Supprimer le fichier"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
615 |
msgid "Update the file"
|
616 |
msgstr "Mettre à jour le fichier"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:451
|
619 |
msgid "Update the picture"
|
620 |
msgstr "Mettre à jour la photo"
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:471
|
623 |
msgid "Picture URL:"
|
624 |
msgstr "URL de la photo :"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:712
|
627 |
#, php-format
|
628 |
msgid "%s previous value: %s new value: %s"
|
629 |
msgstr "%s ancienne valeur : %s; nouvelle valeur : %s"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:727
|
632 |
#, php-format
|
633 |
msgid "%s (%s) has changed one or more fields"
|
634 |
msgstr "%s (%s) a modifié un ou plusieurs champs"
|
639 |
msgstr "Inscription d'un nouvel utilisateur sur votre site %s :"
|
640 |
|
641 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
|
|
642 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:213
|
644 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:289
|
645 |
#, php-format
|
646 |
msgid "Username: %s"
|
647 |
msgstr "Identifiant : %s"
|
656 |
msgid "[%s] New User Registration"
|
657 |
msgstr "[%s] Inscription d'un nouvel utilisateur"
|
658 |
|
|
|
|
|
|
|
|
|
|
|
|
|
659 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
660 |
#, php-format
|
661 |
msgid "[%s] Your username and password"
|
699 |
msgid "An error occurred during the activation"
|
700 |
msgstr "Une erreur est survenue durant l'activation"
|
701 |
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:290
|
705 |
+
#, php-format
|
706 |
+
msgid "Password: %s"
|
707 |
+
msgstr "Mot de passe : %s"
|
708 |
+
|
709 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
710 |
msgid "Invalid activation key."
|
711 |
msgstr "Clef d'activation invalide."
|
734 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
735 |
msgstr "Cette adresse courriel est déjà utilisée. Veuillez vérifier votre boite aux lettres pour le courriel d'activation. Si vous ne faites rien, ce courriel sera de nouveau disponible pour l'inscription."
|
736 |
|
737 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
738 |
msgid "Add field"
|
739 |
msgstr "Ajouter un champ"
|
740 |
|
741 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
742 |
msgid "Update field"
|
743 |
msgstr "Mettre à jour le champ"
|
744 |
|
745 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
|
746 |
msgid "Delete field"
|
747 |
msgstr "Supprimer le champ"
|
748 |
|
749 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
|
750 |
msgid "Delete selected fields"
|
751 |
msgstr "Supprimer les champs sélectionnés"
|
752 |
|
753 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
|
754 |
msgid "Change order"
|
755 |
msgstr "Changer l'ordre"
|
756 |
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
758 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
|
759 |
msgid "Min length"
|
760 |
msgstr "Longueur min"
|
761 |
|
762 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
763 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
764 |
msgid "Exact length"
|
765 |
msgstr "Longueur exacte"
|
766 |
|
767 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
768 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
769 |
msgid "Max length"
|
770 |
msgstr "Longueur max"
|
771 |
|
772 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
|
773 |
msgid "Exact or Max length"
|
774 |
msgstr "Longueur exacte ou max"
|
775 |
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
777 |
msgid "changed to"
|
778 |
msgstr "changé à"
|
779 |
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
781 |
msgid "You cannot give an order that misses some numbers"
|
782 |
msgstr "Vous ne pouvez pas donner un ordre qui manque des nombres"
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:210
|
786 |
msgid "Nothing selected"
|
787 |
msgstr "Rien n'est sélectionné"
|
788 |
|
789 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
790 |
msgid "Field(s)"
|
791 |
msgstr "Champ(s)"
|
792 |
|
793 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
794 |
msgid "deleted correctly"
|
795 |
msgstr "supprmé(e) correctement"
|
796 |
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:239
|
798 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1056
|
799 |
msgid "Min size"
|
800 |
msgstr "Taille min"
|
801 |
|
802 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
804 |
msgid "Exact size"
|
805 |
msgstr "Taille exacte"
|
806 |
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:241
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
809 |
msgid "Max size"
|
810 |
msgstr "Taille max"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
813 |
msgid "Exact or Max size"
|
814 |
msgstr "Taille exacte ou Max"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:299
|
817 |
msgid "Name not specified"
|
818 |
msgstr "Nom non spécifié"
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
821 |
msgid "Name cannot contains spaces"
|
822 |
msgstr "Le nom ne peut pas contenir d'espace"
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
|
825 |
msgid "Label not specified"
|
826 |
msgstr "Étiquette non spécifié"
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
|
829 |
msgid "not selected (with this type is necessary)"
|
830 |
msgstr "non sélectionné (avec ce type, c'est nécessaire)"
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
833 |
msgid "If you select"
|
834 |
msgstr "Si vous sélectionnez"
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
837 |
msgid "you cannot select Min or Max"
|
838 |
msgstr "vous ne pouvez pas sélectionner Min ou Max"
|
839 |
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
|
842 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:330
|
843 |
msgid "should be in the range of"
|
844 |
msgstr "devrait être compris entre"
|
845 |
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:340
|
|
|
847 |
msgid "Equal TO not specified"
|
848 |
msgstr "Égal À non spécifié"
|
849 |
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:343
|
851 |
msgid "With checkbox type Equal TO can only be"
|
852 |
msgstr "Avec le type checkbox, Égal À ne peut être que"
|
853 |
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:346
|
855 |
msgid "With radio type Equal TO can only be"
|
856 |
msgstr "Avec le type radio, Égal À ne peut être que"
|
857 |
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:362
|
859 |
msgid "With checkbox type Value can only be"
|
860 |
msgstr "Avec le type checkbox, la valeur ne peut être que"
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:365
|
863 |
msgid "With radio type Value can only be"
|
864 |
msgstr "Avec le type radio, la valeur ne peut être que"
|
865 |
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
867 |
msgid "Field inserted correctly"
|
868 |
msgstr "Champ inséré correctement"
|
869 |
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
871 |
msgid "Field #"
|
872 |
msgstr "Champ #"
|
873 |
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
875 |
msgid "updated correctly"
|
876 |
msgstr "mis à jour correctement"
|
877 |
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
879 |
msgid "Name inserted is just in the database, change to another one"
|
880 |
msgstr "Le nom est déjà dans la base de données; veuillez le changer"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
883 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
884 |
msgstr "Pour ajouter un nouveau champ, vous devez choisir un nom, un type et une étiquette; la valeur et la description sont optionnelles. Les règles sont appliquées lors de l'inscription d'un utilisateur."
|
885 |
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
887 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
888 |
msgstr "Avec les types <strong>radio</strong> et <strong>checkbox</strong> : <em>Valeur</em> et <em>égal À</em> peuvent seulement être 'Yes' ou 'No' ce qui signifie 'sélectionné' ou 'non sélectionné'"
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
891 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
892 |
msgstr "Avec le type <strong>drop-down</strong> : vous devez ajouter toutes les options dans l'étiquette, par exemple: étiquette/item1,item2,item3"
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
895 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
896 |
msgstr "Avec le type <strong>picture</strong> : vous pouvez précharger une image par défaut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>égal À</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
|
897 |
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
899 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
900 |
msgstr "Avec le type <strong>picture-url</strong> : vous pouvez précharger une image par défaut en indiqaunt son URL dans <em>Valeur</em>; <em>égal À</em> indique la taille de la largeur max en pixels (la hauteur sera proportionnelle)"
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
903 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
904 |
msgstr "Avec le type <strong>registration-date</strong> : <em>égal À</em> indique un format date et heure"
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
907 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
908 |
msgstr "Avec le type <strong>picture</strong> : vous pouvez précharger une image par défaut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>égal À</em> est automatiquement mis à 512 pixels"
|
909 |
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
911 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
912 |
msgstr "Avec le type <strong>picture</strong> : vous pouvez précharger un fichier par défaut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>égal À</em> indique les extensions de fichiers acceptés séparés par une virgule, exemple: zip,pdf,doc"
|
913 |
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:648
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1089
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1533
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
|
920 |
msgid "Name"
|
921 |
msgstr "Nom"
|
922 |
|
|
|
923 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1092
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
929 |
msgid "Value"
|
930 |
msgstr "Valeur"
|
931 |
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:639
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1095
|
936 |
msgid "Type"
|
937 |
msgstr "Type"
|
938 |
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
943 |
msgid "Label"
|
944 |
msgstr "Étiquette"
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:672
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
950 |
msgid "Description"
|
951 |
msgstr "Description"
|
952 |
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
955 |
msgid "Rules"
|
956 |
msgstr "Règles"
|
957 |
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
960 |
msgid "Actions"
|
961 |
msgstr "Actions"
|
962 |
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
966 |
msgid "Fieldset"
|
967 |
msgstr "Regroupements"
|
968 |
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
971 |
msgid "Can be empty"
|
972 |
msgstr "Peut être vide"
|
973 |
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
976 |
msgid "Check for E-mail syntax"
|
977 |
msgstr "Vérifier la syntaxe du courriel"
|
978 |
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:688
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
981 |
msgid "Can be modified"
|
982 |
msgstr "Peut être modifié"
|
983 |
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1139
|
986 |
msgid "Can be modified only if empty"
|
987 |
msgstr "Ne peut être modifié que s'il est vide"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
|
990 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
991 |
msgid "Can be modified only by admin"
|
992 |
msgstr "Ne peut être modifié que par un admin"
|
993 |
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
995 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
996 |
msgid "Can be modified only by admin or if empty"
|
997 |
msgstr "Ne peut être modifié que par un admin ou s'il est vide"
|
998 |
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:692
|
1000 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
1001 |
msgid "Cannot be modified"
|
1002 |
msgstr "Ne peut pas être modifié"
|
1003 |
|
1004 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
1006 |
msgid "Should be equal TO"
|
1007 |
msgstr "Devrait être égal À"
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
1011 |
msgid "Case sensitive"
|
1012 |
msgstr "Tenir compte de la case (majuscule/minuscule)"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
1016 |
msgid "Regular Expression"
|
1017 |
msgstr "Expression régulière"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
1020 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1155
|
1021 |
msgid "Show the field in the registration"
|
1022 |
msgstr "Montrer le champ lors de l'inscription"
|
1023 |
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
1025 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
1026 |
msgid "Show the field in User's profile"
|
1027 |
msgstr "Montrer le champ dans le profil de l'utilisateur"
|
1028 |
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
1030 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1167
|
1031 |
+
#, fuzzy
|
1032 |
+
msgid "Show the field in Users Extended menu"
|
1033 |
msgstr "Montrer le champ dans le menu A&U Étendu"
|
1034 |
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
1036 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1170
|
1037 |
msgid "Show the field in the search engine"
|
1038 |
msgstr "Montrer le champ dans les moteurs de recherche"
|
1039 |
|
1040 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1173
|
1042 |
msgid "Show the field in the blog"
|
1043 |
msgstr "Montrer le champ dans le blogue"
|
1044 |
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:723
|
1046 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1176
|
1047 |
msgid "Show the field if the role is at least:"
|
1048 |
msgstr "Montrer le champ si le rôle est au moins :"
|
1049 |
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:725
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1052 |
msgid "Anonymous"
|
1053 |
msgstr "Anonyme"
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
1056 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1184
|
1057 |
+
msgid "User has 'view_cimy_extra_fields' capability"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:736
|
1061 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
1062 |
msgid "Send an email to the admin if the user changes its value"
|
1063 |
msgstr "Envoyer un courriel à l'administrateur si l'utilisateur modifie la valeur de ce champ"
|
1064 |
|
1065 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:738
|
1066 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1197
|
1067 |
+
#, fuzzy
|
1068 |
+
msgid "Advanced options"
|
1069 |
+
msgstr "Actions"
|
1070 |
+
|
1071 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
1072 |
msgid "Clear"
|
1073 |
msgstr "Vider (RAZ)"
|
1074 |
|
1075 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
|
1076 |
msgid "Invert selection"
|
1077 |
msgstr "Inverser la sélection"
|
1078 |
|
1079 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
|
1080 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1081 |
msgstr "Êtes-vous certain de vouloir supprimer ce(s) champ(s) et toutes les données insérées par vos utilisateurs?"
|
1082 |
|
1083 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1084 |
msgid "WordPress Fields"
|
1085 |
msgstr "Champs WordPress"
|
1086 |
|
1087 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
1088 |
msgid "None!"
|
1089 |
msgstr "Aucun!"
|
1090 |
|
1091 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
|
1092 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1077
|
1093 |
msgid "Order"
|
1094 |
msgstr "Ordre"
|
1095 |
|
1096 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1201
|
1097 |
msgid "Reset"
|
1098 |
msgstr "Réinitialiser"
|
1099 |
|
1100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1288
|
1101 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1903
|
1102 |
#, fuzzy
|
1103 |
msgid "select"
|
1104 |
msgstr "sélectionnez"
|
1105 |
|
1106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1429
|
1107 |
#, php-format
|
1108 |
msgid "Search results for “%s”"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
|
1112 |
#, php-format
|
1113 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1114 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
1115 |
|
1116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1465
|
1117 |
msgid "Search Users"
|
1118 |
msgstr "Chercher des utilisateurs"
|
1119 |
|
1120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
1121 |
msgid "« Back to All Users"
|
1122 |
msgstr "« Retour à tous les utilisateurs"
|
1123 |
|
1124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1501
|
1125 |
msgid "Users per page"
|
1126 |
msgstr "Utilisateurs par page"
|
1127 |
|
1128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1129 |
msgid "Apply"
|
1130 |
msgstr "Appliquer"
|
1131 |
|
1132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1543
|
1133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1134 |
msgid "Role"
|
1135 |
msgstr "Rôle"
|
1136 |
|
1137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1553
|
1138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
|
1139 |
msgid "Posts"
|
1140 |
msgstr "Articles"
|
1141 |
|
1142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1691
|
1143 |
msgid "View posts by this author"
|
1144 |
msgstr "Voir les articles de cet auteur"
|
1145 |
|
1146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1725
|
1147 |
#, php-format
|
1148 |
msgid "e-mail: %s"
|
1149 |
msgstr "courriel : %s"
|
1150 |
|
1151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1847
|
1152 |
#, fuzzy
|
1153 |
msgid "Change"
|
1154 |
msgstr "Changer l'image"
|
1155 |
|
1156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1872
|
1157 |
msgid "Update selected users"
|
1158 |
msgstr "Mettre à jour les utilisateurs sélectionnés"
|
1159 |
|
1160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1161 |
msgid "Update"
|
1162 |
msgstr "Mettre à jour"
|
1163 |
|
1164 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1908
|
1165 |
msgid "OK"
|
1166 |
msgstr "OK"
|
1167 |
|
1168 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1909
|
1169 |
msgid "Cancel"
|
1170 |
msgstr "Annuler"
|
1171 |
|
langs/cimy_uef-it_IT.mo
CHANGED
Binary file
|
langs/cimy_uef-it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,115 +16,144 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERRORE"
|
36 |
|
37 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
38 |
msgid "does not match."
|
39 |
msgstr "non corrisponde."
|
40 |
|
41 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "non ha una sintassi email corretta."
|
44 |
|
45 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "non può essere vuoto."
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "non è corretto"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
55 |
msgid "YES"
|
56 |
msgstr "SI"
|
57 |
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
59 |
msgid "NO"
|
60 |
msgstr "NO"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
msgid "should be"
|
64 |
msgstr "deve essere"
|
65 |
|
66 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
67 |
msgid "should be an image."
|
68 |
msgstr "deve essere una immagine."
|
69 |
|
70 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "non può avere dimensione minore di"
|
73 |
|
74 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "non può avere lunghezza minore di"
|
77 |
|
78 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "non può avere dimensione diversa da"
|
81 |
|
82 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "non può avere lunghezza diversa da"
|
85 |
|
86 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "non può avere dimensione maggiore di"
|
89 |
|
90 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "non può avere lunghezza maggiore di"
|
93 |
|
94 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
95 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr "Il codice inserito non è corretto."
|
98 |
|
99 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
msgid "Please upload a file with one of the following extensions"
|
102 |
msgstr "Per favore spedisci un file con una delle seguenti estensioni"
|
103 |
|
104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
107 |
msgid "Please upload an image with one of the following extensions"
|
108 |
msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
|
109 |
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
111 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
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 ! \" ? $ % ^ & )."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
120 |
#, fuzzy
|
121 |
msgid "Change image"
|
122 |
msgstr "Cambia ordine"
|
123 |
|
124 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
125 |
msgid "Insert the code:"
|
126 |
msgstr ""
|
127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
129 |
msgid "no fieldset"
|
130 |
msgstr "Nessun raggruppamento"
|
@@ -133,339 +162,355 @@ msgstr "Nessun raggruppamento"
|
|
133 |
msgid "All"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
137 |
msgid "WordPress Fields table emptied"
|
138 |
msgstr "Tabella Campi WordPress svuotata"
|
139 |
|
140 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
141 |
msgid "WordPress Fields table deleted"
|
142 |
msgstr "Tabella Campi WordPress cancellata"
|
143 |
|
144 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
145 |
msgid "Extra Fields table emptied"
|
146 |
msgstr "Tabella Campi Extra svuotata"
|
147 |
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
149 |
msgid "Extra Fields table deleted"
|
150 |
msgstr "Tabella Campi Extra cancellata"
|
151 |
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
153 |
msgid "Users Data table emptied"
|
154 |
msgstr "Tabella Dati degli Utenti svuotata"
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
157 |
msgid "Users Data table deleted"
|
158 |
msgstr "Tabella Dati degli Utenti cancellata"
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
161 |
msgid "Options set to default values"
|
162 |
msgstr "Opzioni settate ai valori di default"
|
163 |
|
164 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
165 |
msgid "Options deleted"
|
166 |
msgstr "Opzioni cancellate"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
169 |
msgid "Options changed"
|
170 |
msgstr "Opzioni cambiate"
|
171 |
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
173 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
174 |
msgstr "Questa operazione creerà/aggiornerà tutte le tabelle/opzioni mancanti, vuoi procedere?"
|
175 |
|
176 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
177 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
179 |
msgid "Options"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
184 |
msgid "Add a new Field"
|
185 |
msgstr "Aggiungi un campo"
|
186 |
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
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 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
193 |
msgid "Extra Fields"
|
194 |
msgstr "Campi Extra"
|
195 |
|
196 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
197 |
msgid "Support the Cimy Project"
|
198 |
msgstr "Supporta il progetto Cimy"
|
199 |
|
200 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
201 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
202 |
msgstr "Questo plug-in è il risultato di ore di sviluppo per aggiungere nuove funzionalità, supportare nuove versioni di WordPress e mettere a posto i bug, per favore dona un po' di denaro se ti ha risparmiato tutte queste ore!"
|
203 |
|
204 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
205 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
206 |
msgid "SUCCESSFUL"
|
207 |
msgstr "SUCCESSO"
|
208 |
|
209 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
msgid "Save Changes"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
215 |
msgid "General"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
219 |
msgid "installed is"
|
220 |
msgstr "installata"
|
221 |
|
222 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
223 |
msgid "OPTIONS DELETED!"
|
224 |
msgstr "OPZIONI CANCELLATE!"
|
225 |
|
226 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
228 |
msgid "Fix the problem"
|
229 |
msgstr "Aggiusta il problema"
|
230 |
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
232 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
233 |
msgstr "VERSIONI NON CORRISPONDENTI! Avviene quando non hai disattivato e riattivato il plug-in dopo l'aggiornamento! Questo può dare dei problemi..."
|
234 |
|
235 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
236 |
msgid "Picture/Avatar upload"
|
237 |
msgstr "Picture/Avatar upload"
|
238 |
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
240 |
msgid "is created and writable"
|
241 |
msgstr "è creata e scrivibile"
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
244 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
245 |
msgstr "NON è stata creata o il webserver NON ha il permesso di scrittura su di essa"
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
248 |
msgid "Show all fields in the welcome email"
|
249 |
msgstr "Mostra tutti i campi nella email di benvenuto"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
252 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
253 |
msgstr "l'email spedita all'amministratore e all'utente al momento della registrazione avrà tutti i campi"
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
256 |
msgid "Enable email confirmation"
|
257 |
msgstr "Abilita la conferma dell'email"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
260 |
msgid "user that registers should confirm its email address via a link click"
|
261 |
msgstr "gli utenti che si registrano devono confermare il loro indirizzo email cliccando su un link"
|
262 |
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
264 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
265 |
msgstr "<strong>nota:</strong> abilitando questa opzione verranno disabilitati (solo durante la registrazione) tutti i campi di upload: file, picture, avatar"
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
msgid "Redirect to the source"
|
269 |
msgstr "Ridireziona alla fonte"
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
272 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
273 |
msgstr "dopo la registrazione o la conferma l'utente verrà redirezionato all'indirizzo dov'era esattamente prima di cliccare sul link della registrazione"
|
274 |
|
275 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
276 |
msgid "No captcha"
|
277 |
msgstr "Nessun captcha"
|
278 |
|
279 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
280 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
281 |
msgstr "Abilita <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
282 |
|
283 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
284 |
msgid "Public KEY"
|
285 |
msgstr "Chiave pubblica"
|
286 |
|
287 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
288 |
msgid "Private KEY"
|
289 |
msgstr "Chiave privata"
|
290 |
|
291 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
292 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
293 |
msgstr "Abilita <a href=\"http://www.phpcaptcha.org\" target=\"_blank\">Securimage Captcha</a>"
|
294 |
|
295 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
296 |
msgid "This captcha is probably weaker, but is easier for users"
|
297 |
msgstr "Questo captcha è probabilmente più debole, ma più facile da usare per gli utenti"
|
298 |
|
299 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
300 |
#, php-format
|
301 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
302 |
msgstr "<strong>ATTENZIONE: per attivare questo captcha scaricare <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">questo archivio</a> e scompattarlo dentro a %s</strong>"
|
303 |
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
305 |
msgid "Change login/registration page logo"
|
306 |
msgstr "Cambia il logo nella pagina di login/registrazione"
|
307 |
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
310 |
msgid "Delete the picture"
|
311 |
msgstr "Cancella l'immagine"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
314 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
315 |
msgstr "La larghezza massima raccomandata del logo è 328 pixel, qualsiasi altezza dovrebbe funzionare."
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
318 |
msgid "Database"
|
319 |
msgstr "Database"
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
323 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
324 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
325 |
msgid "select action"
|
326 |
msgstr "seleziona una azione"
|
327 |
|
328 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
329 |
msgid "Default values"
|
330 |
msgstr "Valori di default"
|
331 |
|
332 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
335 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
336 |
msgid "Delete"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
340 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
343 |
msgid "NOT PRESENT"
|
344 |
msgstr "NON PRESENTE"
|
345 |
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
347 |
msgid "WordPress Fields table"
|
348 |
msgstr "Tabella Campi WordPress"
|
349 |
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
353 |
msgid "Empty"
|
354 |
msgstr "Svuota"
|
355 |
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
357 |
msgid "Extra Fields table"
|
358 |
msgstr "Tabella Campi Extra"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
361 |
msgid "Users Data table"
|
362 |
msgstr "Tabella Dati degli Utenti"
|
363 |
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
365 |
msgid "all data inserted by users in all and only extra fields"
|
366 |
msgstr "tutti i dati inseriti dagli utenti in tutti e soli i campi extra"
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
369 |
msgid "Force tables creation"
|
370 |
msgstr "Forza la creazione delle tabelle"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
373 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
374 |
msgstr "equivalente a disattivare e attivare il plug-in; nessun'altra operazione sarà effettuata"
|
375 |
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
377 |
msgid "User Profile"
|
378 |
msgstr "Profilo utente"
|
379 |
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
381 |
msgid "Extra Fields section title"
|
382 |
msgstr "Titolo della sezione Campi Extra"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
385 |
msgid "Fieldset's titles, separates with comma"
|
386 |
msgstr "Titoli dei raggruppamenti, separati dalla virgola"
|
387 |
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
389 |
msgid "example: title1,title2,title3"
|
390 |
msgstr "esempio: titolo1, titolo2, titolo3"
|
391 |
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
393 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
394 |
msgstr "<strong>nota:</strong> se si cambia l'ordine o si rimuovono dei raggruppamenti potrebbe essere necessario settare nuovamente i raggruppamenti per i campi extra"
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
397 |
msgid "Authors & Users Extended"
|
398 |
msgstr "Autori & Utenti Estesa"
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
401 |
msgid "Hide username field"
|
402 |
msgstr "Nascondi il campo nome utente"
|
403 |
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
405 |
msgid "Hide name field"
|
406 |
msgstr "Nascondi il campo nome"
|
407 |
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
409 |
msgid "Hide email field"
|
410 |
msgstr "Nascondi il campo email"
|
411 |
|
412 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
413 |
msgid "Hide role field"
|
414 |
msgstr "Nascondi il campo ruolo"
|
415 |
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
417 |
msgid "Hide website field"
|
418 |
msgstr "Nascondi il campo sito web"
|
419 |
|
420 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
421 |
msgid "Hide n. posts field"
|
422 |
msgstr "Nascondi il campo n. di post"
|
423 |
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
425 |
msgid "WordPress hidden fields"
|
426 |
msgstr "Campi nascosti di WordPress"
|
427 |
|
428 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
429 |
msgid "Show password"
|
430 |
msgstr "Mostra password"
|
431 |
|
432 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
433 |
msgid "Show confirmation password"
|
434 |
msgstr "Mostra conferma della password"
|
435 |
|
436 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
437 |
msgid "Show password strength meter"
|
438 |
msgstr "Mostra indicatore di forza della password"
|
439 |
|
440 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
441 |
msgid "Show first name"
|
442 |
msgstr "Mostra nome"
|
443 |
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
445 |
msgid "Show last name"
|
446 |
msgstr "Mostra cognome"
|
447 |
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
449 |
msgid "Show nickname"
|
450 |
msgstr "Mostra nickname"
|
451 |
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
453 |
msgid "Show website"
|
454 |
msgstr "Mostra sito web"
|
455 |
|
456 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
457 |
msgid "Show AIM"
|
458 |
msgstr "Mostra AIM"
|
459 |
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
461 |
msgid "Show Yahoo IM"
|
462 |
msgstr "Mostra Yahoo IM"
|
463 |
|
464 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
465 |
msgid "Show Jabber / Google Talk"
|
466 |
msgstr "Mostra Jabber / Google Talk"
|
467 |
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
469 |
msgid "Show Biographical Info"
|
470 |
msgstr "Mostra informazioni biografiche"
|
471 |
|
@@ -491,63 +536,63 @@ msgstr ""
|
|
491 |
msgid "Mismatch"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
495 |
#, fuzzy
|
496 |
msgid "Password"
|
497 |
msgstr "Mostra password"
|
498 |
|
499 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
500 |
msgid "Password confirmation"
|
501 |
msgstr "Conferma password"
|
502 |
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
504 |
#, fuzzy
|
505 |
msgid "First name"
|
506 |
msgstr "Mostra nome"
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
509 |
#, fuzzy
|
510 |
msgid "Last name"
|
511 |
msgstr "Mostra cognome"
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
514 |
#, fuzzy
|
515 |
msgid "Nickname"
|
516 |
msgstr "Mostra nickname"
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
519 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
520 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
521 |
msgid "Website"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
525 |
msgid "AIM"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
529 |
#, fuzzy
|
530 |
msgid "Yahoo IM"
|
531 |
msgstr "Mostra Yahoo IM"
|
532 |
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
534 |
#, fuzzy
|
535 |
msgid "Jabber / Google Talk"
|
536 |
msgstr "Mostra Jabber / Google Talk"
|
537 |
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
539 |
msgid "Biographical Info"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
544 |
msgid "Fields"
|
545 |
msgstr "Campi"
|
546 |
|
547 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:752
|
548 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
549 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
550 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
551 |
msgid "Users Extended"
|
552 |
msgstr "Utenti Estesa"
|
553 |
|
@@ -565,28 +610,28 @@ msgstr ""
|
|
565 |
msgid "File '%s' is not an image."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
569 |
msgid "Delete the file"
|
570 |
msgstr "Cancella il file"
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
573 |
msgid "Update the file"
|
574 |
msgstr "Aggiorna il file"
|
575 |
|
576 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
577 |
msgid "Update the picture"
|
578 |
msgstr "Aggiorna l'immagine"
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
581 |
msgid "Picture URL:"
|
582 |
msgstr "URL dell'immagine:"
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
585 |
#, php-format
|
586 |
msgid "%s previous value: %s new value: %s"
|
587 |
msgstr "%s precedente valore: %s nuovo valore: %s"
|
588 |
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
590 |
#, php-format
|
591 |
msgid "%s (%s) has changed one or more fields"
|
592 |
msgstr "%s (%s) ha cambiato uno o più campi"
|
@@ -597,8 +642,9 @@ msgid "New user registration on your site %s:"
|
|
597 |
msgstr ""
|
598 |
|
599 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
601 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
|
|
|
|
602 |
#, php-format
|
603 |
msgid "Username: %s"
|
604 |
msgstr ""
|
@@ -613,12 +659,6 @@ msgstr ""
|
|
613 |
msgid "[%s] New User Registration"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
618 |
-
#, fuzzy, php-format
|
619 |
-
msgid "Password: %s"
|
620 |
-
msgstr "Mostra password"
|
621 |
-
|
622 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
623 |
#, php-format
|
624 |
msgid "[%s] Your username and password"
|
@@ -663,6 +703,13 @@ msgstr "Il sito su <a href=\"%1$s\">%2$s</a> è attivo. Ora è possibile effettu
|
|
663 |
msgid "An error occurred during the activation"
|
664 |
msgstr "Si è verificato un errore durante l'attivazione"
|
665 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
666 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
667 |
msgid "Invalid activation key."
|
668 |
msgstr "Chiave di attivazione non valida."
|
@@ -691,438 +738,438 @@ msgstr ""
|
|
691 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
692 |
msgstr "Questo indirizzo email è stato già utilizzato. Per favore verificare la propria casella di posta per una mail di attivazione. Se non si farà nulla diverrà nuovamente disponibile in un paio di giorni."
|
693 |
|
694 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
695 |
msgid "Add field"
|
696 |
msgstr "Aggiungi campo"
|
697 |
|
698 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
699 |
msgid "Update field"
|
700 |
msgstr "Aggiorna campo"
|
701 |
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
703 |
msgid "Delete field"
|
704 |
msgstr "Cancella campo"
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
707 |
msgid "Delete selected fields"
|
708 |
msgstr "Cancella i campi selezionati"
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
711 |
msgid "Change order"
|
712 |
msgstr "Cambia ordine"
|
713 |
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
716 |
msgid "Min length"
|
717 |
msgstr "Lunghezza Min"
|
718 |
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
721 |
msgid "Exact length"
|
722 |
msgstr "Lunghezza Esatta"
|
723 |
|
724 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
725 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
726 |
msgid "Max length"
|
727 |
msgstr "Lunghezza Max"
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
730 |
msgid "Exact or Max length"
|
731 |
msgstr "Lunghezza Max o Esatta"
|
732 |
|
733 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
734 |
msgid "changed to"
|
735 |
msgstr "cambiati a"
|
736 |
|
737 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
738 |
msgid "You cannot give an order that misses some numbers"
|
739 |
msgstr "Non puoi dare un ordine dove mancano alcuni numeri"
|
740 |
|
741 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
742 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
743 |
msgid "Nothing selected"
|
744 |
msgstr "Nessun campo selezionato"
|
745 |
|
746 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
747 |
msgid "Field(s)"
|
748 |
msgstr "Campo(i)"
|
749 |
|
750 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
751 |
msgid "deleted correctly"
|
752 |
msgstr "cancellato(i) correttamente"
|
753 |
|
754 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
755 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
756 |
msgid "Min size"
|
757 |
msgstr "Dimensione Min"
|
758 |
|
759 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
760 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
761 |
msgid "Exact size"
|
762 |
msgstr "Dimensione Esatta"
|
763 |
|
764 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
765 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
766 |
msgid "Max size"
|
767 |
msgstr "Dimensione Max"
|
768 |
|
769 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
770 |
msgid "Exact or Max size"
|
771 |
msgstr "Dimensione Esatta o Max"
|
772 |
|
773 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
774 |
msgid "Name not specified"
|
775 |
msgstr "Nome non specificato"
|
776 |
|
777 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
778 |
msgid "Name cannot contains spaces"
|
779 |
msgstr "Il Nome non può contenere spazi"
|
780 |
|
781 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
782 |
msgid "Label not specified"
|
783 |
msgstr "Etichetta non specificata"
|
784 |
|
785 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
786 |
msgid "not selected (with this type is necessary)"
|
787 |
msgstr "non selezionata (con questo tipo è necessario)"
|
788 |
|
789 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
790 |
msgid "If you select"
|
791 |
msgstr "Se selezioni"
|
792 |
|
793 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
794 |
msgid "you cannot select Min or Max"
|
795 |
msgstr "non puoi selezionare Min o Max"
|
796 |
|
797 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
800 |
msgid "should be in the range of"
|
801 |
msgstr "deve essere compreso tra"
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
804 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
805 |
msgid "Equal TO not specified"
|
806 |
msgstr "Uguale A non specificato"
|
807 |
|
808 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
809 |
msgid "With checkbox type Equal TO can only be"
|
810 |
msgstr "Con il tipo checkbox Uguale A può essere solo"
|
811 |
|
812 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
813 |
msgid "With radio type Equal TO can only be"
|
814 |
msgstr "Con il tipo radio Uguale A può essere solo"
|
815 |
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
817 |
msgid "With checkbox type Value can only be"
|
818 |
msgstr "Con il tipo checkbox Valore può essere solo"
|
819 |
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
821 |
msgid "With radio type Value can only be"
|
822 |
msgstr "Con il tipo radio Valore può essere solo"
|
823 |
|
824 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
825 |
msgid "Field inserted correctly"
|
826 |
msgstr "Campo inserito correttamente"
|
827 |
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
829 |
msgid "Field #"
|
830 |
msgstr "Campo #"
|
831 |
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
833 |
msgid "updated correctly"
|
834 |
msgstr "aggiornato correttamente"
|
835 |
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
837 |
msgid "Name inserted is just in the database, change to another one"
|
838 |
msgstr "Il Nome inserito è già nel database, cambialo con un altro"
|
839 |
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
841 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
842 |
msgstr "Per aggiungere un nuovo campo devi scegliere un nome, il tipo ed una etichetta; opzionale sono il valore e la descrizione. Le regole sono applicate durante la registrazione dell'utente."
|
843 |
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
845 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
846 |
msgstr "Con <strong>radio</strong> e <strong>checkbox</strong>: <em>Valore</em> e <em>uguale A</em> possono essere solo 'Yes' o 'No' questo significa 'selezionati' o 'non selezionati'"
|
847 |
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
850 |
msgstr "Con <strong>drop-down</strong>: devi aggiungere tutte le opzioni nell'etichetta per esempio: etichetta/oggetto1,oggetto2,oggetto3"
|
851 |
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
853 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
854 |
msgstr "Con <strong>picture</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; <em>uguale A</em> significa il numero max di pixel (larghezza o altezza) per la miniatura"
|
855 |
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
857 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
858 |
msgstr "Con <strong>picture-url</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; <em>uguale A</em> significa max pixel in larghezza (l'altezza sarà proporzionale)"
|
859 |
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
861 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
862 |
msgstr "Con <strong>registration-date</strong>: <em>uguale A</em> significa il formato della data e dell'ora"
|
863 |
|
864 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
865 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
866 |
msgstr "Con <strong>avatar</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; <em>uguale A</em> viene automaticamente settato a 512 pixel"
|
867 |
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
869 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
870 |
msgstr "Con <strong>file</strong>: puoi precaricare un file di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; in <em>uguale A</em> si possono specificare le estensioni separate dalla virgola, per esempio: zip,pdf,doc"
|
871 |
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
873 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
874 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
875 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
877 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
878 |
msgid "Name"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
882 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
883 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
886 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
887 |
msgid "Value"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
891 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
892 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
894 |
msgid "Type"
|
895 |
msgstr "Tipo"
|
896 |
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
898 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
899 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
901 |
msgid "Label"
|
902 |
msgstr "Etichetta"
|
903 |
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
906 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
907 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
908 |
msgid "Description"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
912 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
913 |
msgid "Rules"
|
914 |
msgstr "Regole"
|
915 |
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
917 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
918 |
msgid "Actions"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
922 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
923 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
924 |
msgid "Fieldset"
|
925 |
msgstr "Raggruppamento"
|
926 |
|
927 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
929 |
msgid "Can be empty"
|
930 |
msgstr "Può essere vuoto"
|
931 |
|
932 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
934 |
msgid "Check for E-mail syntax"
|
935 |
msgstr "Controlla la sintassi dell'E-mail"
|
936 |
|
937 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
938 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
939 |
msgid "Can be modified"
|
940 |
msgstr "Può essere modificato"
|
941 |
|
942 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
944 |
msgid "Can be modified only if empty"
|
945 |
msgstr "Può essere modificato solo se vuoto"
|
946 |
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
949 |
msgid "Can be modified only by admin"
|
950 |
msgstr "Può essere modificato solo dall'admin"
|
951 |
|
952 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
954 |
msgid "Can be modified only by admin or if empty"
|
955 |
msgstr "Può essere modificato solo dall'admin o se vuoto"
|
956 |
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
959 |
msgid "Cannot be modified"
|
960 |
msgstr "Non può essere modificato"
|
961 |
|
962 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
964 |
msgid "Should be equal TO"
|
965 |
msgstr "Deve essere uguale A"
|
966 |
|
967 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
969 |
msgid "Case sensitive"
|
970 |
msgstr "Distinguere le maiuscole"
|
971 |
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
974 |
msgid "Regular Expression"
|
975 |
msgstr "Espressione Regolare"
|
976 |
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
979 |
msgid "Show the field in the registration"
|
980 |
msgstr "Mostra il campo nella registrazione"
|
981 |
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
983 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
984 |
msgid "Show the field in User's profile"
|
985 |
msgstr "Mostra il campo nel profilo dell'utente"
|
986 |
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
988 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
989 |
-
|
|
|
990 |
msgstr "Mostra il campo nel menù A&U esteso"
|
991 |
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
993 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
994 |
msgid "Show the field in the search engine"
|
995 |
msgstr "Mostra il campo nel motore di ricerca"
|
996 |
|
997 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
999 |
msgid "Show the field in the blog"
|
1000 |
msgstr "Mostra il campo nel blog"
|
1001 |
|
1002 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
msgid "Show the field if the role is at least:"
|
1005 |
msgstr "Mostra il campo se il ruolo è almeno:"
|
1006 |
|
1007 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1009 |
msgid "Anonymous"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1014 |
msgid "Send an email to the admin if the user changes its value"
|
1015 |
msgstr "Invia una email all'amministratore quando l'utente cambia il contenuto"
|
1016 |
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1018 |
msgid "Clear"
|
1019 |
msgstr "Pulisci"
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1022 |
msgid "Invert selection"
|
1023 |
msgstr "Inverti selezione"
|
1024 |
|
1025 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1026 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1027 |
msgstr "Sei sicuro di volere cancellare il(i) campo(i) e tutti i relativi dati inseriti dagli utenti?"
|
1028 |
|
1029 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1030 |
msgid "WordPress Fields"
|
1031 |
msgstr "Campi WordPress"
|
1032 |
|
1033 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1034 |
msgid "None!"
|
1035 |
msgstr "Nessuno!"
|
1036 |
|
1037 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1039 |
msgid "Order"
|
1040 |
msgstr "Ordine"
|
1041 |
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1043 |
msgid "Reset"
|
1044 |
msgstr "Reset"
|
1045 |
|
1046 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1047 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1048 |
msgid "select"
|
1049 |
msgstr "seleziona"
|
1050 |
|
1051 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1052 |
#, php-format
|
1053 |
msgid "Search results for “%s”"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1057 |
#, php-format
|
1058 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1062 |
msgid "Search Users"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1066 |
msgid "« Back to All Users"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1070 |
msgid "Users per page"
|
1071 |
msgstr "Utenti per pagina"
|
1072 |
|
1073 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
|
1074 |
-
msgid "Apply"
|
1075 |
-
msgstr ""
|
1076 |
-
|
1077 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1505
|
1078 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1506
|
1079 |
-
msgid "Username"
|
1080 |
-
msgstr ""
|
1081 |
-
|
1082 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1515
|
1083 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1084 |
-
msgid "
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1088 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1089 |
#, fuzzy
|
1090 |
msgid "Role"
|
1091 |
msgstr "Regole"
|
1092 |
|
1093 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1094 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1095 |
msgid "Posts"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1099 |
msgid "View posts by this author"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1103 |
#, php-format
|
1104 |
msgid "e-mail: %s"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1108 |
#, fuzzy
|
1109 |
msgid "Change"
|
1110 |
msgstr "Cambia ordine"
|
1111 |
|
1112 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1113 |
msgid "Update selected users"
|
1114 |
msgstr "Aggiorna gli utenti selezionati"
|
1115 |
|
1116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1117 |
#, fuzzy
|
1118 |
msgid "Update"
|
1119 |
msgstr "Aggiorna campo"
|
1120 |
|
1121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1122 |
msgid "OK"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1126 |
msgid "Cancel"
|
1127 |
msgstr ""
|
1128 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-06-19 16:34+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-06-19 16:34+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:453
|
|
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1241
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERRORE"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
38 |
msgid "does not match."
|
39 |
msgstr "non corrisponde."
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "non ha una sintassi email corretta."
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "non può essere vuoto."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "non è corretto"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
57 |
msgid "YES"
|
58 |
msgstr "SI"
|
59 |
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
63 |
msgid "NO"
|
64 |
msgstr "NO"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:463
|
67 |
msgid "should be"
|
68 |
msgstr "deve essere"
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "should be an image."
|
72 |
msgstr "deve essere una immagine."
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
75 |
msgid "couldn’t have size less than"
|
76 |
msgstr "non può avere dimensione minore di"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
79 |
msgid "couldn’t have length less than"
|
80 |
msgstr "non può avere lunghezza minore di"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
83 |
msgid "couldn’t have size different than"
|
84 |
msgstr "non può avere dimensione diversa da"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
87 |
msgid "couldn’t have length different than"
|
88 |
msgstr "non può avere lunghezza diversa da"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
91 |
msgid "couldn’t have size more than"
|
92 |
msgstr "non può avere dimensione maggiore di"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
95 |
msgid "couldn’t have length more than"
|
96 |
msgstr "non può avere lunghezza maggiore di"
|
97 |
|
98 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
100 |
msgid "Typed code is not correct."
|
101 |
msgstr "Il codice inserito non è corretto."
|
102 |
|
103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:636
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1528
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1529
|
106 |
+
msgid "Username"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:639
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1538
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
|
112 |
+
msgid "E-mail"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:889
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:302
|
117 |
msgid "Please upload a file with one of the following extensions"
|
118 |
msgstr "Per favore spedisci un file con una delle seguenti estensioni"
|
119 |
|
120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:895
|
121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:308
|
123 |
msgid "Please upload an image with one of the following extensions"
|
124 |
msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
|
125 |
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1052
|
127 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
128 |
msgid "Strength indicator"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1053
|
132 |
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 ! \" ? $ % ^ & )."
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1099
|
136 |
#, fuzzy
|
137 |
msgid "Change image"
|
138 |
msgstr "Cambia ordine"
|
139 |
|
140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1102
|
141 |
msgid "Insert the code:"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1163
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1165
|
146 |
+
msgid "Confirm your registration"
|
147 |
+
msgstr "Conferma la registrazione"
|
148 |
+
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1171
|
150 |
+
msgid "A password will be e-mailed to you."
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1178
|
154 |
+
msgid "← Back"
|
155 |
+
msgstr "← Indietro"
|
156 |
+
|
157 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
158 |
msgid "no fieldset"
|
159 |
msgstr "Nessun raggruppamento"
|
162 |
msgid "All"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:44
|
166 |
msgid "WordPress Fields table emptied"
|
167 |
msgstr "Tabella Campi WordPress svuotata"
|
168 |
|
169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:49
|
170 |
msgid "WordPress Fields table deleted"
|
171 |
msgstr "Tabella Campi WordPress cancellata"
|
172 |
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:58
|
174 |
msgid "Extra Fields table emptied"
|
175 |
msgstr "Tabella Campi Extra svuotata"
|
176 |
|
177 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:63
|
178 |
msgid "Extra Fields table deleted"
|
179 |
msgstr "Tabella Campi Extra cancellata"
|
180 |
|
181 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:72
|
182 |
msgid "Users Data table emptied"
|
183 |
msgstr "Tabella Dati degli Utenti svuotata"
|
184 |
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:77
|
186 |
msgid "Users Data table deleted"
|
187 |
msgstr "Tabella Dati degli Utenti cancellata"
|
188 |
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:88
|
190 |
msgid "Options set to default values"
|
191 |
msgstr "Opzioni settate ai valori di default"
|
192 |
|
193 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:94
|
194 |
msgid "Options deleted"
|
195 |
msgstr "Opzioni cancellate"
|
196 |
|
197 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:349
|
198 |
msgid "Options changed"
|
199 |
msgstr "Opzioni cambiate"
|
200 |
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
202 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
203 |
msgstr "Questa operazione creerà/aggiornerà tutte le tabelle/opzioni mancanti, vuoi procedere?"
|
204 |
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:489
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:754
|
208 |
msgid "Options"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
212 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:442
|
213 |
msgid "Add a new Field"
|
214 |
msgstr "Aggiungi un campo"
|
215 |
|
216 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:809
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
220 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:294
|
222 |
msgid "Extra Fields"
|
223 |
msgstr "Campi Extra"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
226 |
msgid "Support the Cimy Project"
|
227 |
msgstr "Supporta il progetto Cimy"
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
|
230 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
231 |
msgstr "Questo plug-in è il risultato di ore di sviluppo per aggiungere nuove funzionalità, supportare nuove versioni di WordPress e mettere a posto i bug, per favore dona un po' di denaro se ti ha risparmiato tutte queste ore!"
|
232 |
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:516
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1259
|
235 |
msgid "SUCCESSFUL"
|
236 |
msgstr "SUCCESSO"
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:856
|
240 |
msgid "Save Changes"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:531
|
244 |
msgid "General"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:539
|
248 |
msgid "installed is"
|
249 |
msgstr "installata"
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
252 |
msgid "OPTIONS DELETED!"
|
253 |
msgstr "OPZIONI CANCELLATE!"
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
257 |
msgid "Fix the problem"
|
258 |
msgstr "Aggiusta il problema"
|
259 |
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
261 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
262 |
msgstr "VERSIONI NON CORRISPONDENTI! Avviene quando non hai disattivato e riattivato il plug-in dopo l'aggiornamento! Questo può dare dei problemi..."
|
263 |
|
264 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
265 |
msgid "Picture/Avatar upload"
|
266 |
msgstr "Picture/Avatar upload"
|
267 |
|
268 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
269 |
msgid "is created and writable"
|
270 |
msgstr "è creata e scrivibile"
|
271 |
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
273 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
274 |
msgstr "NON è stata creata o il webserver NON ha il permesso di scrittura su di essa"
|
275 |
|
276 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
277 |
msgid "Show all fields in the welcome email"
|
278 |
msgstr "Mostra tutti i campi nella email di benvenuto"
|
279 |
|
280 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
281 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
282 |
msgstr "l'email spedita all'amministratore e all'utente al momento della registrazione avrà tutti i campi"
|
283 |
|
284 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
285 |
msgid "Enable email confirmation"
|
286 |
msgstr "Abilita la conferma dell'email"
|
287 |
|
288 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
289 |
msgid "user that registers should confirm its email address via a link click"
|
290 |
msgstr "gli utenti che si registrano devono confermare il loro indirizzo email cliccando su un link"
|
291 |
|
292 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
|
293 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
294 |
msgstr "<strong>nota:</strong> abilitando questa opzione verranno disabilitati (solo durante la registrazione) tutti i campi di upload: file, picture, avatar"
|
295 |
|
296 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:595
|
297 |
+
msgid "Enable form confirmation"
|
298 |
+
msgstr "Abilita la conferma della registrazione"
|
299 |
+
|
300 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
301 |
+
msgid "a summary of the registration form will be presented to the user"
|
302 |
+
msgstr "un riassunto del form di registrazione sarà presentato all'utente"
|
303 |
+
|
304 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
305 |
+
msgid "Customize welcome email sent to the new user"
|
306 |
+
msgstr "Personalizza la email di benvenuto inviata al nuovo utente"
|
307 |
+
|
308 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
309 |
+
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
310 |
+
msgstr "se vengono cambiati o rimossi i segnaposti l'email non avrà le corrette informazioni"
|
311 |
+
|
312 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
313 |
msgid "Redirect to the source"
|
314 |
msgstr "Ridireziona alla fonte"
|
315 |
|
316 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
|
317 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
318 |
msgstr "dopo la registrazione o la conferma l'utente verrà redirezionato all'indirizzo dov'era esattamente prima di cliccare sul link della registrazione"
|
319 |
|
320 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
|
321 |
msgid "No captcha"
|
322 |
msgstr "Nessun captcha"
|
323 |
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
325 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
326 |
msgstr "Abilita <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
327 |
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
329 |
msgid "Public KEY"
|
330 |
msgstr "Chiave pubblica"
|
331 |
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
333 |
msgid "Private KEY"
|
334 |
msgstr "Chiave privata"
|
335 |
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:651
|
337 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
338 |
msgstr "Abilita <a href=\"http://www.phpcaptcha.org\" target=\"_blank\">Securimage Captcha</a>"
|
339 |
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:654
|
341 |
msgid "This captcha is probably weaker, but is easier for users"
|
342 |
msgstr "Questo captcha è probabilmente più debole, ma più facile da usare per gli utenti"
|
343 |
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
345 |
#, php-format
|
346 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
347 |
msgstr "<strong>ATTENZIONE: per attivare questo captcha scaricare <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">questo archivio</a> e scompattarlo dentro a %s</strong>"
|
348 |
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
350 |
msgid "Change login/registration page logo"
|
351 |
msgstr "Cambia il logo nella pagina di login/registrazione"
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:450
|
355 |
msgid "Delete the picture"
|
356 |
msgstr "Cancella l'immagine"
|
357 |
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
359 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
360 |
msgstr "La larghezza massima raccomandata del logo è 328 pixel, qualsiasi altezza dovrebbe funzionare."
|
361 |
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
363 |
msgid "Database"
|
364 |
msgstr "Database"
|
365 |
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:688
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:706
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
370 |
msgid "select action"
|
371 |
msgstr "seleziona una azione"
|
372 |
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
374 |
msgid "Default values"
|
375 |
msgstr "Valori di default"
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:708
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:727
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
381 |
msgid "Delete"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:694
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:749
|
388 |
msgid "NOT PRESENT"
|
389 |
msgstr "NON PRESENTE"
|
390 |
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
392 |
msgid "WordPress Fields table"
|
393 |
msgstr "Tabella Campi WordPress"
|
394 |
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:726
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:743
|
398 |
msgid "Empty"
|
399 |
msgstr "Svuota"
|
400 |
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:719
|
402 |
msgid "Extra Fields table"
|
403 |
msgstr "Tabella Campi Extra"
|
404 |
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:736
|
406 |
msgid "Users Data table"
|
407 |
msgstr "Tabella Dati degli Utenti"
|
408 |
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:746
|
410 |
msgid "all data inserted by users in all and only extra fields"
|
411 |
msgstr "tutti i dati inseriti dagli utenti in tutti e soli i campi extra"
|
412 |
|
413 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
414 |
msgid "Force tables creation"
|
415 |
msgstr "Forza la creazione delle tabelle"
|
416 |
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
418 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
419 |
msgstr "equivalente a disattivare e attivare il plug-in; nessun'altra operazione sarà effettuata"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:763
|
422 |
msgid "User Profile"
|
423 |
msgstr "Profilo utente"
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
426 |
msgid "Extra Fields section title"
|
427 |
msgstr "Titolo della sezione Campi Extra"
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
430 |
msgid "Fieldset's titles, separates with comma"
|
431 |
msgstr "Titoli dei raggruppamenti, separati dalla virgola"
|
432 |
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
434 |
msgid "example: title1,title2,title3"
|
435 |
msgstr "esempio: titolo1, titolo2, titolo3"
|
436 |
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:771
|
438 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
439 |
msgstr "<strong>nota:</strong> se si cambia l'ordine o si rimuovono dei raggruppamenti potrebbe essere necessario settare nuovamente i raggruppamenti per i campi extra"
|
440 |
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:776
|
442 |
msgid "Authors & Users Extended"
|
443 |
msgstr "Autori & Utenti Estesa"
|
444 |
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:780
|
446 |
msgid "Hide username field"
|
447 |
msgstr "Nascondi il campo nome utente"
|
448 |
|
449 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
450 |
msgid "Hide name field"
|
451 |
msgstr "Nascondi il campo nome"
|
452 |
|
453 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:791
|
454 |
msgid "Hide email field"
|
455 |
msgstr "Nascondi il campo email"
|
456 |
|
457 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:795
|
458 |
msgid "Hide role field"
|
459 |
msgstr "Nascondi il campo ruolo"
|
460 |
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
|
462 |
msgid "Hide website field"
|
463 |
msgstr "Nascondi il campo sito web"
|
464 |
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:803
|
466 |
msgid "Hide n. posts field"
|
467 |
msgstr "Nascondi il campo n. di post"
|
468 |
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:808
|
470 |
msgid "WordPress hidden fields"
|
471 |
msgstr "Campi nascosti di WordPress"
|
472 |
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:811
|
474 |
msgid "Show password"
|
475 |
msgstr "Mostra password"
|
476 |
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:815
|
478 |
msgid "Show confirmation password"
|
479 |
msgstr "Mostra conferma della password"
|
480 |
|
481 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:819
|
482 |
msgid "Show password strength meter"
|
483 |
msgstr "Mostra indicatore di forza della password"
|
484 |
|
485 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:823
|
486 |
msgid "Show first name"
|
487 |
msgstr "Mostra nome"
|
488 |
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
490 |
msgid "Show last name"
|
491 |
msgstr "Mostra cognome"
|
492 |
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:831
|
494 |
msgid "Show nickname"
|
495 |
msgstr "Mostra nickname"
|
496 |
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:835
|
498 |
msgid "Show website"
|
499 |
msgstr "Mostra sito web"
|
500 |
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:839
|
502 |
msgid "Show AIM"
|
503 |
msgstr "Mostra AIM"
|
504 |
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:843
|
506 |
msgid "Show Yahoo IM"
|
507 |
msgstr "Mostra Yahoo IM"
|
508 |
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:847
|
510 |
msgid "Show Jabber / Google Talk"
|
511 |
msgstr "Mostra Jabber / Google Talk"
|
512 |
|
513 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:851
|
514 |
msgid "Show Biographical Info"
|
515 |
msgstr "Mostra informazioni biografiche"
|
516 |
|
536 |
msgid "Mismatch"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:221
|
540 |
#, fuzzy
|
541 |
msgid "Password"
|
542 |
msgstr "Mostra password"
|
543 |
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:241
|
545 |
msgid "Password confirmation"
|
546 |
msgstr "Conferma password"
|
547 |
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:261
|
549 |
#, fuzzy
|
550 |
msgid "First name"
|
551 |
msgstr "Mostra nome"
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:281
|
554 |
#, fuzzy
|
555 |
msgid "Last name"
|
556 |
msgstr "Mostra cognome"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:301
|
559 |
#, fuzzy
|
560 |
msgid "Nickname"
|
561 |
msgstr "Mostra nickname"
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:321
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1548
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
|
566 |
msgid "Website"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:341
|
570 |
msgid "AIM"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:361
|
574 |
#, fuzzy
|
575 |
msgid "Yahoo IM"
|
576 |
msgstr "Mostra Yahoo IM"
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:381
|
579 |
#, fuzzy
|
580 |
msgid "Jabber / Google Talk"
|
581 |
msgstr "Mostra Jabber / Google Talk"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:401
|
584 |
msgid "Biographical Info"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
589 |
msgid "Fields"
|
590 |
msgstr "Campi"
|
591 |
|
|
|
592 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:765
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1421
|
596 |
msgid "Users Extended"
|
597 |
msgstr "Utenti Estesa"
|
598 |
|
610 |
msgid "File '%s' is not an image."
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:446
|
614 |
msgid "Delete the file"
|
615 |
msgstr "Cancella il file"
|
616 |
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
618 |
msgid "Update the file"
|
619 |
msgstr "Aggiorna il file"
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:451
|
622 |
msgid "Update the picture"
|
623 |
msgstr "Aggiorna l'immagine"
|
624 |
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:471
|
626 |
msgid "Picture URL:"
|
627 |
msgstr "URL dell'immagine:"
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:712
|
630 |
#, php-format
|
631 |
msgid "%s previous value: %s new value: %s"
|
632 |
msgstr "%s precedente valore: %s nuovo valore: %s"
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:727
|
635 |
#, php-format
|
636 |
msgid "%s (%s) has changed one or more fields"
|
637 |
msgstr "%s (%s) ha cambiato uno o più campi"
|
642 |
msgstr ""
|
643 |
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
|
|
645 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:213
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:289
|
648 |
#, php-format
|
649 |
msgid "Username: %s"
|
650 |
msgstr ""
|
659 |
msgid "[%s] New User Registration"
|
660 |
msgstr ""
|
661 |
|
|
|
|
|
|
|
|
|
|
|
|
|
662 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
663 |
#, php-format
|
664 |
msgid "[%s] Your username and password"
|
703 |
msgid "An error occurred during the activation"
|
704 |
msgstr "Si è verificato un errore durante l'attivazione"
|
705 |
|
706 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
708 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:290
|
709 |
+
#, fuzzy, php-format
|
710 |
+
msgid "Password: %s"
|
711 |
+
msgstr "Mostra password"
|
712 |
+
|
713 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
714 |
msgid "Invalid activation key."
|
715 |
msgstr "Chiave di attivazione non valida."
|
738 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
739 |
msgstr "Questo indirizzo email è stato già utilizzato. Per favore verificare la propria casella di posta per una mail di attivazione. Se non si farà nulla diverrà nuovamente disponibile in un paio di giorni."
|
740 |
|
741 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
742 |
msgid "Add field"
|
743 |
msgstr "Aggiungi campo"
|
744 |
|
745 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
746 |
msgid "Update field"
|
747 |
msgstr "Aggiorna campo"
|
748 |
|
749 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
|
750 |
msgid "Delete field"
|
751 |
msgstr "Cancella campo"
|
752 |
|
753 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
|
754 |
msgid "Delete selected fields"
|
755 |
msgstr "Cancella i campi selezionati"
|
756 |
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
|
758 |
msgid "Change order"
|
759 |
msgstr "Cambia ordine"
|
760 |
|
761 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
762 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
|
763 |
msgid "Min length"
|
764 |
msgstr "Lunghezza Min"
|
765 |
|
766 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
767 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
768 |
msgid "Exact length"
|
769 |
msgstr "Lunghezza Esatta"
|
770 |
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
772 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
773 |
msgid "Max length"
|
774 |
msgstr "Lunghezza Max"
|
775 |
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
|
777 |
msgid "Exact or Max length"
|
778 |
msgstr "Lunghezza Max o Esatta"
|
779 |
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
781 |
msgid "changed to"
|
782 |
msgstr "cambiati a"
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
785 |
msgid "You cannot give an order that misses some numbers"
|
786 |
msgstr "Non puoi dare un ordine dove mancano alcuni numeri"
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
789 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:210
|
790 |
msgid "Nothing selected"
|
791 |
msgstr "Nessun campo selezionato"
|
792 |
|
793 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
794 |
msgid "Field(s)"
|
795 |
msgstr "Campo(i)"
|
796 |
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
798 |
msgid "deleted correctly"
|
799 |
msgstr "cancellato(i) correttamente"
|
800 |
|
801 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:239
|
802 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1056
|
803 |
msgid "Min size"
|
804 |
msgstr "Dimensione Min"
|
805 |
|
806 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
808 |
msgid "Exact size"
|
809 |
msgstr "Dimensione Esatta"
|
810 |
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:241
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
813 |
msgid "Max size"
|
814 |
msgstr "Dimensione Max"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
817 |
msgid "Exact or Max size"
|
818 |
msgstr "Dimensione Esatta o Max"
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:299
|
821 |
msgid "Name not specified"
|
822 |
msgstr "Nome non specificato"
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
825 |
msgid "Name cannot contains spaces"
|
826 |
msgstr "Il Nome non può contenere spazi"
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
|
829 |
msgid "Label not specified"
|
830 |
msgstr "Etichetta non specificata"
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
|
833 |
msgid "not selected (with this type is necessary)"
|
834 |
msgstr "non selezionata (con questo tipo è necessario)"
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
837 |
msgid "If you select"
|
838 |
msgstr "Se selezioni"
|
839 |
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
841 |
msgid "you cannot select Min or Max"
|
842 |
msgstr "non puoi selezionare Min o Max"
|
843 |
|
844 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:330
|
847 |
msgid "should be in the range of"
|
848 |
msgstr "deve essere compreso tra"
|
849 |
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:340
|
|
|
851 |
msgid "Equal TO not specified"
|
852 |
msgstr "Uguale A non specificato"
|
853 |
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:343
|
855 |
msgid "With checkbox type Equal TO can only be"
|
856 |
msgstr "Con il tipo checkbox Uguale A può essere solo"
|
857 |
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:346
|
859 |
msgid "With radio type Equal TO can only be"
|
860 |
msgstr "Con il tipo radio Uguale A può essere solo"
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:362
|
863 |
msgid "With checkbox type Value can only be"
|
864 |
msgstr "Con il tipo checkbox Valore può essere solo"
|
865 |
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:365
|
867 |
msgid "With radio type Value can only be"
|
868 |
msgstr "Con il tipo radio Valore può essere solo"
|
869 |
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
871 |
msgid "Field inserted correctly"
|
872 |
msgstr "Campo inserito correttamente"
|
873 |
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
875 |
msgid "Field #"
|
876 |
msgstr "Campo #"
|
877 |
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
879 |
msgid "updated correctly"
|
880 |
msgstr "aggiornato correttamente"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
883 |
msgid "Name inserted is just in the database, change to another one"
|
884 |
msgstr "Il Nome inserito è già nel database, cambialo con un altro"
|
885 |
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
887 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
888 |
msgstr "Per aggiungere un nuovo campo devi scegliere un nome, il tipo ed una etichetta; opzionale sono il valore e la descrizione. Le regole sono applicate durante la registrazione dell'utente."
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
891 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
892 |
msgstr "Con <strong>radio</strong> e <strong>checkbox</strong>: <em>Valore</em> e <em>uguale A</em> possono essere solo 'Yes' o 'No' questo significa 'selezionati' o 'non selezionati'"
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
895 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
896 |
msgstr "Con <strong>drop-down</strong>: devi aggiungere tutte le opzioni nell'etichetta per esempio: etichetta/oggetto1,oggetto2,oggetto3"
|
897 |
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
899 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
900 |
msgstr "Con <strong>picture</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; <em>uguale A</em> significa il numero max di pixel (larghezza o altezza) per la miniatura"
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
903 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
904 |
msgstr "Con <strong>picture-url</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; <em>uguale A</em> significa max pixel in larghezza (l'altezza sarà proporzionale)"
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
907 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
908 |
msgstr "Con <strong>registration-date</strong>: <em>uguale A</em> significa il formato della data e dell'ora"
|
909 |
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
911 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
912 |
msgstr "Con <strong>avatar</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; <em>uguale A</em> viene automaticamente settato a 512 pixel"
|
913 |
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
915 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
916 |
msgstr "Con <strong>file</strong>: puoi precaricare un file di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; in <em>uguale A</em> si possono specificare le estensioni separate dalla virgola, per esempio: zip,pdf,doc"
|
917 |
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:648
|
920 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1089
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1533
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
|
924 |
msgid "Name"
|
925 |
msgstr ""
|
926 |
|
|
|
927 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1092
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
933 |
msgid "Value"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:639
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1095
|
940 |
msgid "Type"
|
941 |
msgstr "Tipo"
|
942 |
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
945 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
947 |
msgid "Label"
|
948 |
msgstr "Etichetta"
|
949 |
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:672
|
952 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
954 |
msgid "Description"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
959 |
msgid "Rules"
|
960 |
msgstr "Regole"
|
961 |
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
964 |
msgid "Actions"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
970 |
msgid "Fieldset"
|
971 |
msgstr "Raggruppamento"
|
972 |
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
975 |
msgid "Can be empty"
|
976 |
msgstr "Può essere vuoto"
|
977 |
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
980 |
msgid "Check for E-mail syntax"
|
981 |
msgstr "Controlla la sintassi dell'E-mail"
|
982 |
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:688
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
985 |
msgid "Can be modified"
|
986 |
msgstr "Può essere modificato"
|
987 |
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1139
|
990 |
msgid "Can be modified only if empty"
|
991 |
msgstr "Può essere modificato solo se vuoto"
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
995 |
msgid "Can be modified only by admin"
|
996 |
msgstr "Può essere modificato solo dall'admin"
|
997 |
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
1000 |
msgid "Can be modified only by admin or if empty"
|
1001 |
msgstr "Può essere modificato solo dall'admin o se vuoto"
|
1002 |
|
1003 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:692
|
1004 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
1005 |
msgid "Cannot be modified"
|
1006 |
msgstr "Non può essere modificato"
|
1007 |
|
1008 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
1010 |
msgid "Should be equal TO"
|
1011 |
msgstr "Deve essere uguale A"
|
1012 |
|
1013 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
1015 |
msgid "Case sensitive"
|
1016 |
msgstr "Distinguere le maiuscole"
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
1020 |
msgid "Regular Expression"
|
1021 |
msgstr "Espressione Regolare"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1155
|
1025 |
msgid "Show the field in the registration"
|
1026 |
msgstr "Mostra il campo nella registrazione"
|
1027 |
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
1030 |
msgid "Show the field in User's profile"
|
1031 |
msgstr "Mostra il campo nel profilo dell'utente"
|
1032 |
|
1033 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
1034 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1167
|
1035 |
+
#, fuzzy
|
1036 |
+
msgid "Show the field in Users Extended menu"
|
1037 |
msgstr "Mostra il campo nel menù A&U esteso"
|
1038 |
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
1040 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1170
|
1041 |
msgid "Show the field in the search engine"
|
1042 |
msgstr "Mostra il campo nel motore di ricerca"
|
1043 |
|
1044 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1173
|
1046 |
msgid "Show the field in the blog"
|
1047 |
msgstr "Mostra il campo nel blog"
|
1048 |
|
1049 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:723
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1176
|
1051 |
msgid "Show the field if the role is at least:"
|
1052 |
msgstr "Mostra il campo se il ruolo è almeno:"
|
1053 |
|
1054 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:725
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1056 |
msgid "Anonymous"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1184
|
1061 |
+
msgid "User has 'view_cimy_extra_fields' capability"
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:736
|
1065 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
1066 |
msgid "Send an email to the admin if the user changes its value"
|
1067 |
msgstr "Invia una email all'amministratore quando l'utente cambia il contenuto"
|
1068 |
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:738
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1197
|
1071 |
+
msgid "Advanced options"
|
1072 |
+
msgstr "Opzioni avanzate"
|
1073 |
+
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
1075 |
msgid "Clear"
|
1076 |
msgstr "Pulisci"
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
|
1079 |
msgid "Invert selection"
|
1080 |
msgstr "Inverti selezione"
|
1081 |
|
1082 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
|
1083 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1084 |
msgstr "Sei sicuro di volere cancellare il(i) campo(i) e tutti i relativi dati inseriti dagli utenti?"
|
1085 |
|
1086 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1087 |
msgid "WordPress Fields"
|
1088 |
msgstr "Campi WordPress"
|
1089 |
|
1090 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
1091 |
msgid "None!"
|
1092 |
msgstr "Nessuno!"
|
1093 |
|
1094 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1077
|
1096 |
msgid "Order"
|
1097 |
msgstr "Ordine"
|
1098 |
|
1099 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1201
|
1100 |
msgid "Reset"
|
1101 |
msgstr "Reset"
|
1102 |
|
1103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1288
|
1104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1903
|
1105 |
msgid "select"
|
1106 |
msgstr "seleziona"
|
1107 |
|
1108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1429
|
1109 |
#, php-format
|
1110 |
msgid "Search results for “%s”"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
|
1114 |
#, php-format
|
1115 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1465
|
1119 |
msgid "Search Users"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
1123 |
msgid "« Back to All Users"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1501
|
1127 |
msgid "Users per page"
|
1128 |
msgstr "Utenti per pagina"
|
1129 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1131 |
+
msgid "Apply"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1543
|
1135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
|
1136 |
#, fuzzy
|
1137 |
msgid "Role"
|
1138 |
msgstr "Regole"
|
1139 |
|
1140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1553
|
1141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
|
1142 |
msgid "Posts"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1691
|
1146 |
msgid "View posts by this author"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1725
|
1150 |
#, php-format
|
1151 |
msgid "e-mail: %s"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1847
|
1155 |
#, fuzzy
|
1156 |
msgid "Change"
|
1157 |
msgstr "Cambia ordine"
|
1158 |
|
1159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1872
|
1160 |
msgid "Update selected users"
|
1161 |
msgstr "Aggiorna gli utenti selezionati"
|
1162 |
|
1163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1164 |
#, fuzzy
|
1165 |
msgid "Update"
|
1166 |
msgstr "Aggiorna campo"
|
1167 |
|
1168 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1908
|
1169 |
msgid "OK"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1909
|
1173 |
msgid "Cancel"
|
1174 |
msgstr ""
|
1175 |
|
langs/cimy_uef-pl_PL.mo
CHANGED
Binary file
|
langs/cimy_uef-pl_PL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <pik256@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,115 +16,144 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "BŁĄD"
|
36 |
|
37 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "nie jest prawidłowym adresem email."
|
44 |
|
45 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "nie może być pusty"
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "jest nieprawidłowy"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
55 |
msgid "YES"
|
56 |
msgstr "TAK"
|
57 |
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
59 |
msgid "NO"
|
60 |
msgstr "NIE"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
msgid "should be"
|
64 |
msgstr "powinien być"
|
65 |
|
66 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
67 |
msgid "should be an image."
|
68 |
msgstr "powinien być obrazkiem."
|
69 |
|
70 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "nie może być mniejszy niż"
|
73 |
|
74 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "nie może być krótszy niż"
|
77 |
|
78 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "musi mieć rozmiar"
|
81 |
|
82 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "musi mieć długość"
|
85 |
|
86 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "nie może być większy niż"
|
89 |
|
90 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "nie może być dłuższy niż"
|
93 |
|
94 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
95 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
msgid "Please upload a file with one of the following extensions"
|
102 |
msgstr "Wgraj plik w jednym z następujących formatów"
|
103 |
|
104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
107 |
msgid "Please upload an image with one of the following extensions"
|
108 |
msgstr "Wgraj obrazek w jednym z następujących formatów"
|
109 |
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
111 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
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 ! \" ? $ % ^ & )."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
120 |
#, fuzzy
|
121 |
msgid "Change image"
|
122 |
msgstr "Zmień kolejność"
|
123 |
|
124 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
125 |
msgid "Insert the code:"
|
126 |
msgstr ""
|
127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
129 |
msgid "no fieldset"
|
130 |
msgstr "brak grup pól"
|
@@ -133,342 +162,358 @@ msgstr "brak grup pól"
|
|
133 |
msgid "All"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
137 |
msgid "WordPress Fields table emptied"
|
138 |
msgstr "Pola wordpressa zostały wyczyszczone"
|
139 |
|
140 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
141 |
msgid "WordPress Fields table deleted"
|
142 |
msgstr "Tabele wordpressa zostały usunięte"
|
143 |
|
144 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
145 |
msgid "Extra Fields table emptied"
|
146 |
msgstr "Pola dodatkowe zostały wyczyszczone"
|
147 |
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
149 |
msgid "Extra Fields table deleted"
|
150 |
msgstr "Dodatkowe tabele zostały usunięte"
|
151 |
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
153 |
msgid "Users Data table emptied"
|
154 |
msgstr "Dane użytkowników zostały wyczyszczone"
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
157 |
msgid "Users Data table deleted"
|
158 |
msgstr "Tabela użytkowników została usunięta"
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
161 |
msgid "Options set to default values"
|
162 |
msgstr "Opcje zostały zmienione na domyślne"
|
163 |
|
164 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
165 |
msgid "Options deleted"
|
166 |
msgstr "Opcje zostały wykasowane"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
169 |
msgid "Options changed"
|
170 |
msgstr "Opcje zostały zmienione"
|
171 |
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
173 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
174 |
msgstr "Ta operacja stworzy/zaktualizuje wszystkie brakujące tabele/opcje, kontynuować?"
|
175 |
|
176 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
177 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
179 |
msgid "Options"
|
180 |
msgstr "Opcje"
|
181 |
|
182 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
184 |
msgid "Add a new Field"
|
185 |
msgstr "Dodaj nowe pole"
|
186 |
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
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 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
193 |
msgid "Extra Fields"
|
194 |
msgstr "Pola dodatkowe"
|
195 |
|
196 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
197 |
msgid "Support the Cimy Project"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
201 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
205 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
206 |
msgid "SUCCESSFUL"
|
207 |
msgstr "PRAWIDŁOWO"
|
208 |
|
209 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
msgid "Save Changes"
|
212 |
msgstr "Zapisz zmiany"
|
213 |
|
214 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
215 |
msgid "General"
|
216 |
msgstr "Ogólne"
|
217 |
|
218 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
219 |
msgid "installed is"
|
220 |
msgstr "jest zainstalowany"
|
221 |
|
222 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
223 |
msgid "OPTIONS DELETED!"
|
224 |
msgstr "OPCJE USUNIĘTE!"
|
225 |
|
226 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
228 |
msgid "Fix the problem"
|
229 |
msgstr "Usuń problem"
|
230 |
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
232 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
233 |
msgstr "Wersja niekompatybilna! Nie deaktywowałeś a następnie nie reaktywowałeś wtyczki po aktualizacji wordpressa! To może spowodować problemy..."
|
234 |
|
235 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
236 |
msgid "Picture/Avatar upload"
|
237 |
msgstr "Wgrywanie obrazka/avatara"
|
238 |
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
240 |
msgid "is created and writable"
|
241 |
msgstr "jest utworzony i zapisywalny"
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
244 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
245 |
msgstr "NIE był wgrywany lub serwer nie ma możliwości zapisywania do niego"
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
248 |
#, fuzzy
|
249 |
msgid "Show all fields in the welcome email"
|
250 |
msgstr "Pokaż pole na blogu"
|
251 |
|
252 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
253 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
257 |
msgid "Enable email confirmation"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
261 |
msgid "user that registers should confirm its email address via a link click"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
265 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
msgid "Redirect to the source"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
273 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
277 |
msgid "No captcha"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
281 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
285 |
msgid "Public KEY"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
289 |
msgid "Private KEY"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
293 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
297 |
msgid "This captcha is probably weaker, but is easier for users"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
301 |
#, php-format
|
302 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
306 |
msgid "Change login/registration page logo"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
310 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
311 |
msgid "Delete the picture"
|
312 |
msgstr "Usuń obrazek"
|
313 |
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
315 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
319 |
msgid "Database"
|
320 |
msgstr "Baza danych"
|
321 |
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
323 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
324 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
msgid "select action"
|
327 |
msgstr "wybór czynności"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
330 |
msgid "Default values"
|
331 |
msgstr "Wartości domyślne"
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
335 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
336 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
337 |
msgid "Delete"
|
338 |
msgstr "Usuń"
|
339 |
|
340 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
344 |
msgid "NOT PRESENT"
|
345 |
msgstr "NIE OBECNA"
|
346 |
|
347 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
348 |
msgid "WordPress Fields table"
|
349 |
msgstr "Tabela pól Wordpressa"
|
350 |
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
354 |
msgid "Empty"
|
355 |
msgstr "Opróżnij"
|
356 |
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
358 |
msgid "Extra Fields table"
|
359 |
msgstr "Tabela pól dodatkowych"
|
360 |
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
362 |
msgid "Users Data table"
|
363 |
msgstr "Tabela danych użytkowników"
|
364 |
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
366 |
msgid "all data inserted by users in all and only extra fields"
|
367 |
msgstr "wszystkie dane wstawione przez użytkowników do pól dodatkowych"
|
368 |
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
370 |
msgid "Force tables creation"
|
371 |
msgstr "Wymuś utworzenie tabel"
|
372 |
|
373 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
374 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
375 |
msgstr "równoważne deaktywacji i ponownej reaktywacji wtyczki; żadne inne operacje nie zostaną wykonane"
|
376 |
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
378 |
msgid "User Profile"
|
379 |
msgstr "Profil użytkownika"
|
380 |
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
382 |
msgid "Extra Fields section title"
|
383 |
msgstr "Tytuł sekcji pól dodatkowych"
|
384 |
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
386 |
msgid "Fieldset's titles, separates with comma"
|
387 |
msgstr "Tytuły grup pól, rozdziel przecinkami"
|
388 |
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
390 |
msgid "example: title1,title2,title3"
|
391 |
msgstr "Przykład: tytuł1, tytuł2, tytuł3"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
394 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
395 |
msgstr "<strong>uwaga:</strong> jeśli zmienisz kolejność lub usuniesz grupy pól powinieneś ustawić przypisanie wszystkich pól dodatkowych do grup pól ponownie"
|
396 |
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
398 |
msgid "Authors & Users Extended"
|
399 |
msgstr "Rozszerzenia kont"
|
400 |
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
402 |
msgid "Hide username field"
|
403 |
msgstr "Ukryj pole z nazwą użytkownika"
|
404 |
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
406 |
msgid "Hide name field"
|
407 |
msgstr "Ukryj nazwę"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
410 |
msgid "Hide email field"
|
411 |
msgstr "Ukryj adres email"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
414 |
msgid "Hide role field"
|
415 |
msgstr "Ukryj rolę"
|
416 |
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
418 |
msgid "Hide website field"
|
419 |
msgstr "Ukryj pole witryna"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
422 |
msgid "Hide n. posts field"
|
423 |
msgstr "Ukryj liczbę wpisów"
|
424 |
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
426 |
msgid "WordPress hidden fields"
|
427 |
msgstr "Ukryte pola Worpdressa"
|
428 |
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
430 |
msgid "Show password"
|
431 |
msgstr "Pokaż hasło"
|
432 |
|
433 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
434 |
#, fuzzy
|
435 |
msgid "Show confirmation password"
|
436 |
msgstr "Pokaż hasło"
|
437 |
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
439 |
#, fuzzy
|
440 |
msgid "Show password strength meter"
|
441 |
msgstr "Pokaż hasło"
|
442 |
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
444 |
msgid "Show first name"
|
445 |
msgstr "Pokaż imię"
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
448 |
msgid "Show last name"
|
449 |
msgstr "Pokaż nazwisko"
|
450 |
|
451 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
452 |
msgid "Show nickname"
|
453 |
msgstr "Pokaż pseudonim"
|
454 |
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
456 |
msgid "Show website"
|
457 |
msgstr "pokaż witrynę"
|
458 |
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
460 |
msgid "Show AIM"
|
461 |
msgstr "Pokaż \"AIM\""
|
462 |
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
464 |
msgid "Show Yahoo IM"
|
465 |
msgstr "Pokaż \"Yahoo IM\""
|
466 |
|
467 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
468 |
msgid "Show Jabber / Google Talk"
|
469 |
msgstr "Pokaż \"Jabber / Google Talk\""
|
470 |
|
471 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
472 |
msgid "Show Biographical Info"
|
473 |
msgstr "Pokaż informacje dodatkowe"
|
474 |
|
@@ -494,57 +539,57 @@ msgstr ""
|
|
494 |
msgid "Mismatch"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
498 |
msgid "Password"
|
499 |
msgstr "Hasło"
|
500 |
|
501 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
502 |
msgid "Password confirmation"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
506 |
msgid "First name"
|
507 |
msgstr "Imię"
|
508 |
|
509 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
510 |
msgid "Last name"
|
511 |
msgstr "Nazwisko"
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
514 |
msgid "Nickname"
|
515 |
msgstr "Pseudonim"
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
519 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
520 |
msgid "Website"
|
521 |
msgstr "Strona internetowa"
|
522 |
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
524 |
msgid "AIM"
|
525 |
msgstr "AIM"
|
526 |
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
528 |
msgid "Yahoo IM"
|
529 |
msgstr "Yahoo IM"
|
530 |
|
531 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
532 |
msgid "Jabber / Google Talk"
|
533 |
msgstr "Jabber / Google Talk"
|
534 |
|
535 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
536 |
msgid "Biographical Info"
|
537 |
msgstr "Biografia"
|
538 |
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
540 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
541 |
msgid "Fields"
|
542 |
msgstr "Pola"
|
543 |
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:752
|
545 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
547 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
548 |
msgid "Users Extended"
|
549 |
msgstr "Lista rozszerzona"
|
550 |
|
@@ -562,28 +607,28 @@ msgstr "Biblioteka GD nie jest zainstalowana."
|
|
562 |
msgid "File '%s' is not an image."
|
563 |
msgstr "Plik '%s' musi być obrazkiem"
|
564 |
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
566 |
msgid "Delete the file"
|
567 |
msgstr "Usuń plik"
|
568 |
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
570 |
msgid "Update the file"
|
571 |
msgstr "Zaktualizuj plik"
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
574 |
msgid "Update the picture"
|
575 |
msgstr "Wgraj obrazek"
|
576 |
|
577 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
578 |
msgid "Picture URL:"
|
579 |
msgstr "URL obrazka:"
|
580 |
|
581 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
582 |
#, php-format
|
583 |
msgid "%s previous value: %s new value: %s"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
587 |
#, php-format
|
588 |
msgid "%s (%s) has changed one or more fields"
|
589 |
msgstr ""
|
@@ -594,8 +639,9 @@ msgid "New user registration on your site %s:"
|
|
594 |
msgstr ""
|
595 |
|
596 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
598 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
|
|
|
|
599 |
#, fuzzy, php-format
|
600 |
msgid "Username: %s"
|
601 |
msgstr "Nazwa użytkownika"
|
@@ -610,12 +656,6 @@ msgstr "e-mail: %s"
|
|
610 |
msgid "[%s] New User Registration"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
614 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
615 |
-
#, fuzzy, php-format
|
616 |
-
msgid "Password: %s"
|
617 |
-
msgstr "Hasło"
|
618 |
-
|
619 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
620 |
#, php-format
|
621 |
msgid "[%s] Your username and password"
|
@@ -654,6 +694,13 @@ msgstr ""
|
|
654 |
msgid "An error occurred during the activation"
|
655 |
msgstr ""
|
656 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
658 |
msgid "Invalid activation key."
|
659 |
msgstr ""
|
@@ -682,438 +729,439 @@ msgstr ""
|
|
682 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
686 |
msgid "Add field"
|
687 |
msgstr "Dodaj pole"
|
688 |
|
689 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
690 |
msgid "Update field"
|
691 |
msgstr "Zaktualizuj pole"
|
692 |
|
693 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
694 |
msgid "Delete field"
|
695 |
msgstr "Usuń pole"
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
698 |
msgid "Delete selected fields"
|
699 |
msgstr "Usuń wybrane pola"
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
702 |
msgid "Change order"
|
703 |
msgstr "Zmień kolejność"
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
707 |
msgid "Min length"
|
708 |
msgstr "Długość min"
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
711 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
712 |
msgid "Exact length"
|
713 |
msgstr "Długość dokładna"
|
714 |
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
716 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
717 |
msgid "Max length"
|
718 |
msgstr "Długość max"
|
719 |
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
721 |
msgid "Exact or Max length"
|
722 |
msgstr "Dokładna lub maksymalna długość"
|
723 |
|
724 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
725 |
msgid "changed to"
|
726 |
msgstr "zmieniona na"
|
727 |
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
729 |
msgid "You cannot give an order that misses some numbers"
|
730 |
msgstr "Nie możesz podać kolejności która pomija część liczb"
|
731 |
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
733 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
734 |
msgid "Nothing selected"
|
735 |
msgstr "Nie wybrano niczego"
|
736 |
|
737 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
738 |
msgid "Field(s)"
|
739 |
msgstr "Pole(a)"
|
740 |
|
741 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
742 |
msgid "deleted correctly"
|
743 |
msgstr "wykasowano prawidłowo"
|
744 |
|
745 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
746 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
747 |
msgid "Min size"
|
748 |
msgstr "Rozmiar min"
|
749 |
|
750 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
751 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
752 |
msgid "Exact size"
|
753 |
msgstr "Rozmiar dokładny"
|
754 |
|
755 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
756 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
757 |
msgid "Max size"
|
758 |
msgstr "Rozmiar max"
|
759 |
|
760 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
761 |
msgid "Exact or Max size"
|
762 |
msgstr "Rozmiar dokładny lub max"
|
763 |
|
764 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
765 |
msgid "Name not specified"
|
766 |
msgstr "Nazwa nie określona"
|
767 |
|
768 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
769 |
msgid "Name cannot contains spaces"
|
770 |
msgstr "Nazwa nie może zawierać spacji"
|
771 |
|
772 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
773 |
msgid "Label not specified"
|
774 |
msgstr "Etykieta nie określona"
|
775 |
|
776 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
777 |
msgid "not selected (with this type is necessary)"
|
778 |
msgstr "nie wybrano (niezbędne dla tego typu)"
|
779 |
|
780 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
781 |
msgid "If you select"
|
782 |
msgstr "Jeżeli wybierzesz"
|
783 |
|
784 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
785 |
msgid "you cannot select Min or Max"
|
786 |
msgstr "Nie możesz wybrać Min lub Max"
|
787 |
|
788 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
789 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
791 |
msgid "should be in the range of"
|
792 |
msgstr "powinien się mieścić w zakresie"
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
796 |
msgid "Equal TO not specified"
|
797 |
msgstr "równość (=) nie określona"
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
800 |
msgid "With checkbox type Equal TO can only be"
|
801 |
msgstr "Dla <strong>checkbox</strong> może być tylko równość"
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
804 |
msgid "With radio type Equal TO can only be"
|
805 |
msgstr "Dla <strong>radio</strong> może być tylko równość"
|
806 |
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
808 |
msgid "With checkbox type Value can only be"
|
809 |
msgstr "Dla <strong>checkbox</strong> wartość może być tylko"
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
msgid "With radio type Value can only be"
|
813 |
msgstr "Dla <strong>radio</strong> wartość może być tylko"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
msgid "Field inserted correctly"
|
817 |
msgstr "Pole wstawione poprawnie"
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
820 |
msgid "Field #"
|
821 |
msgstr "Pole #"
|
822 |
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
msgid "updated correctly"
|
825 |
msgstr "zaktualizowane prawidłowo"
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
msgid "Name inserted is just in the database, change to another one"
|
829 |
msgstr "Podana nazwa już jest w bazie danych, zmień na inną"
|
830 |
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
832 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
833 |
msgstr "Aby dodać nowe pole musisz nadać mu nazwę, typ i etykietę; wartość i opis są opcjonalne. Reguły są stosowane podczas rejestracji użytkownika."
|
834 |
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
837 |
msgstr "Dla <strong>radio</strong> i <strong>checkbox</strong>: <em>wartość</em> i <em>równe</em> mogą być tylko \"Yes\" lub \"No\", co oznacza zaznaczone lub nie zaznaczone."
|
838 |
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
840 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
841 |
msgstr "Dla <strong>listy (drop-down)</strong>: musisz podać wszystkie opcje w etykiecie. Np.: etykieta/wartość1,wartość2,wartość3. "
|
842 |
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
844 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
845 |
msgstr "Dla <strong>obrazka (picture)</strong>: należy uprzednio wgrać obrazek i podać jego Url w polu <em>wartość</em>; rozmiary min, dokładny, max są w KB; <em>równość</em> oznacza maksymalny rozmiar miniaturki (wysokość i szerokość) i będzie ustawiona automatycznie na 512 pikseli."
|
846 |
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
849 |
msgstr "Dla <strong>url obrazka</strong>: można wgrać domyślny obrazek i wstawić jego adres (Url) do pola <em>wartość</em>; <em>równe</em> oznacza maksymalną szerokość w pikselach (wysokość zostanie ustawiona proporcjonalnie)."
|
850 |
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
852 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
853 |
msgstr "Dla <strong>daty rejestracji</strong>: <em>równe</em> oznacza datę i czas rejestracji."
|
854 |
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
857 |
msgstr "Dla <strong>avatara</strong>: możesz wgrać domyślny obrazek wstawiając URL do <em>wartość</em>; \"min, dokładny i max rozmiar\" są w KB; <em>równe</em> oznacza maksymalny rozmiar w pikselach (wysokość i szerokość) dla miniaturki i będzie ustawiony automatycznie na 512 pikseli."
|
858 |
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
860 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
861 |
msgstr "Dla <strong>Pliku</strong>: możesz wgrać plik domyślny podająć URL w polu <em>Wartość</em>; 'min,dokładny,max rozmiar' podane są w KB; w polu <em>równe</em> można podać dopuszczalne rozszerzenia, np.: zip,pdf,doc"
|
862 |
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
864 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
865 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
866 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
867 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
869 |
msgid "Name"
|
870 |
msgstr "Nazwa"
|
871 |
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
873 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
874 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
875 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
877 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
878 |
msgid "Value"
|
879 |
msgstr "Wartość"
|
880 |
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
882 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
883 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
885 |
msgid "Type"
|
886 |
msgstr "Typ"
|
887 |
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
891 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
892 |
msgid "Label"
|
893 |
msgstr "Etykieta"
|
894 |
|
895 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
898 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
899 |
msgid "Description"
|
900 |
msgstr "Opis"
|
901 |
|
902 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
903 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
904 |
msgid "Rules"
|
905 |
msgstr "Reguły"
|
906 |
|
907 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
908 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
909 |
msgid "Actions"
|
910 |
msgstr "Działania"
|
911 |
|
912 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
913 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
914 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
915 |
msgid "Fieldset"
|
916 |
msgstr "Grupa pól"
|
917 |
|
918 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
919 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
920 |
msgid "Can be empty"
|
921 |
msgstr "Może być puste"
|
922 |
|
923 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
925 |
msgid "Check for E-mail syntax"
|
926 |
msgstr "Sprawdzaj poprawność adresu email"
|
927 |
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
msgid "Can be modified"
|
931 |
msgstr "Może być zmieniane"
|
932 |
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
msgid "Can be modified only if empty"
|
936 |
msgstr "Może być zmienione tylko jeśli jest puste"
|
937 |
|
938 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
msgid "Can be modified only by admin"
|
941 |
msgstr "Może być modyfikowane tylko przez administratora"
|
942 |
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
944 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
945 |
msgid "Can be modified only by admin or if empty"
|
946 |
msgstr "Może być modyfikowane tylko przez administratora jeśli jest puste"
|
947 |
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
950 |
msgid "Cannot be modified"
|
951 |
msgstr "Nie może być zmieniane"
|
952 |
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
955 |
msgid "Should be equal TO"
|
956 |
msgstr "Powinno być równe"
|
957 |
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
msgid "Case sensitive"
|
961 |
msgstr "Rozróżnia wielkość liter"
|
962 |
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
msgid "Regular Expression"
|
966 |
msgstr "Wyrażenie regularne"
|
967 |
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
970 |
msgid "Show the field in the registration"
|
971 |
msgstr "Pokaż pole podczas rejestracji"
|
972 |
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
975 |
msgid "Show the field in User's profile"
|
976 |
msgstr "Pokaż pole w profilu użytkownika"
|
977 |
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
979 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
980 |
-
|
|
|
981 |
msgstr "Pokaż pole na rozszerzonej liście użytkowników"
|
982 |
|
983 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
984 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
985 |
msgid "Show the field in the search engine"
|
986 |
msgstr "Pokaż pole w profilu użytkownika"
|
987 |
|
988 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
989 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
990 |
msgid "Show the field in the blog"
|
991 |
msgstr "Pokaż pole na blogu"
|
992 |
|
993 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
994 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
995 |
msgid "Show the field if the role is at least:"
|
996 |
msgstr "Pokaż pole jeżeli rolą użytkownika jest przynajmniej:"
|
997 |
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1000 |
msgid "Anonymous"
|
1001 |
msgstr "Anonim"
|
1002 |
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1005 |
msgid "Send an email to the admin if the user changes its value"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1009 |
msgid "Clear"
|
1010 |
msgstr "Wyczyść"
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1013 |
msgid "Invert selection"
|
1014 |
msgstr "Odwróć wybór"
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1017 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1018 |
msgstr "Czy na pewno chcesz wykasować pola i wszystkie dane wprowadzone w nie przez użytkowników"
|
1019 |
|
1020 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1021 |
msgid "WordPress Fields"
|
1022 |
msgstr "Pola Wordpressa"
|
1023 |
|
1024 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1025 |
msgid "None!"
|
1026 |
msgstr "Brak!"
|
1027 |
|
1028 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1029 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1030 |
msgid "Order"
|
1031 |
msgstr "Kolejność"
|
1032 |
|
1033 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1034 |
msgid "Reset"
|
1035 |
msgstr "Wyczyść"
|
1036 |
|
1037 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1039 |
msgid "select"
|
1040 |
msgstr "- Wybierz -"
|
1041 |
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1043 |
#, php-format
|
1044 |
msgid "Search results for “%s”"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1048 |
#, php-format
|
1049 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1053 |
msgid "Search Users"
|
1054 |
msgstr "Szukaj użytkowników"
|
1055 |
|
1056 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1057 |
msgid "« Back to All Users"
|
1058 |
msgstr "« Powrót do wszystkich"
|
1059 |
|
1060 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1061 |
msgid "Users per page"
|
1062 |
msgstr "Użytkowników na stronie"
|
1063 |
|
1064 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1065 |
msgid "Apply"
|
1066 |
msgstr "Zastosuj"
|
1067 |
|
1068 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1069 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1070 |
-
msgid "Username"
|
1071 |
-
msgstr "Nazwa użytkownika"
|
1072 |
-
|
1073 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1515
|
1074 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1075 |
-
msgid "E-mail"
|
1076 |
-
msgstr "E-mail"
|
1077 |
-
|
1078 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1079 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1080 |
msgid "Role"
|
1081 |
msgstr "Rola"
|
1082 |
|
1083 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1084 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1085 |
msgid "Posts"
|
1086 |
msgstr "Wpisy"
|
1087 |
|
1088 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1089 |
msgid "View posts by this author"
|
1090 |
msgstr "Zobacz wpisy tego autora"
|
1091 |
|
1092 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1093 |
#, php-format
|
1094 |
msgid "e-mail: %s"
|
1095 |
msgstr "e-mail: %s"
|
1096 |
|
1097 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1098 |
#, fuzzy
|
1099 |
msgid "Change"
|
1100 |
msgstr "Zmień kolejność"
|
1101 |
|
1102 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1103 |
#, fuzzy
|
1104 |
msgid "Update selected users"
|
1105 |
msgstr "Usuń wybrane pola"
|
1106 |
|
1107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1108 |
#, fuzzy
|
1109 |
msgid "Update"
|
1110 |
msgstr "Zaktualizuj pole"
|
1111 |
|
1112 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1113 |
msgid "OK"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1117 |
msgid "Cancel"
|
1118 |
msgstr ""
|
1119 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-06-19 16:34+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-06-19 16:35+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <pik256@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:453
|
|
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1241
|
34 |
msgid "ERROR"
|
35 |
msgstr "BŁĄD"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "nie jest prawidłowym adresem email."
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "nie może być pusty"
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "jest nieprawidłowy"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
57 |
msgid "YES"
|
58 |
msgstr "TAK"
|
59 |
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
63 |
msgid "NO"
|
64 |
msgstr "NIE"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:463
|
67 |
msgid "should be"
|
68 |
msgstr "powinien być"
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "should be an image."
|
72 |
msgstr "powinien być obrazkiem."
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
75 |
msgid "couldn’t have size less than"
|
76 |
msgstr "nie może być mniejszy niż"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
79 |
msgid "couldn’t have length less than"
|
80 |
msgstr "nie może być krótszy niż"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
83 |
msgid "couldn’t have size different than"
|
84 |
msgstr "musi mieć rozmiar"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
87 |
msgid "couldn’t have length different than"
|
88 |
msgstr "musi mieć długość"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
91 |
msgid "couldn’t have size more than"
|
92 |
msgstr "nie może być większy niż"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
95 |
msgid "couldn’t have length more than"
|
96 |
msgstr "nie może być dłuższy niż"
|
97 |
|
98 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
100 |
msgid "Typed code is not correct."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:636
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1528
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1529
|
106 |
+
msgid "Username"
|
107 |
+
msgstr "Nazwa użytkownika"
|
108 |
+
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:639
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1538
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
|
112 |
+
msgid "E-mail"
|
113 |
+
msgstr "E-mail"
|
114 |
+
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:889
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:302
|
117 |
msgid "Please upload a file with one of the following extensions"
|
118 |
msgstr "Wgraj plik w jednym z następujących formatów"
|
119 |
|
120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:895
|
121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:308
|
123 |
msgid "Please upload an image with one of the following extensions"
|
124 |
msgstr "Wgraj obrazek w jednym z następujących formatów"
|
125 |
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1052
|
127 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
128 |
msgid "Strength indicator"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1053
|
132 |
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 ! \" ? $ % ^ & )."
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1099
|
136 |
#, fuzzy
|
137 |
msgid "Change image"
|
138 |
msgstr "Zmień kolejność"
|
139 |
|
140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1102
|
141 |
msgid "Insert the code:"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1163
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1165
|
146 |
+
msgid "Confirm your registration"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1171
|
150 |
+
msgid "A password will be e-mailed to you."
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1178
|
154 |
+
msgid "← Back"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
158 |
msgid "no fieldset"
|
159 |
msgstr "brak grup pól"
|
162 |
msgid "All"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:44
|
166 |
msgid "WordPress Fields table emptied"
|
167 |
msgstr "Pola wordpressa zostały wyczyszczone"
|
168 |
|
169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:49
|
170 |
msgid "WordPress Fields table deleted"
|
171 |
msgstr "Tabele wordpressa zostały usunięte"
|
172 |
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:58
|
174 |
msgid "Extra Fields table emptied"
|
175 |
msgstr "Pola dodatkowe zostały wyczyszczone"
|
176 |
|
177 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:63
|
178 |
msgid "Extra Fields table deleted"
|
179 |
msgstr "Dodatkowe tabele zostały usunięte"
|
180 |
|
181 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:72
|
182 |
msgid "Users Data table emptied"
|
183 |
msgstr "Dane użytkowników zostały wyczyszczone"
|
184 |
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:77
|
186 |
msgid "Users Data table deleted"
|
187 |
msgstr "Tabela użytkowników została usunięta"
|
188 |
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:88
|
190 |
msgid "Options set to default values"
|
191 |
msgstr "Opcje zostały zmienione na domyślne"
|
192 |
|
193 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:94
|
194 |
msgid "Options deleted"
|
195 |
msgstr "Opcje zostały wykasowane"
|
196 |
|
197 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:349
|
198 |
msgid "Options changed"
|
199 |
msgstr "Opcje zostały zmienione"
|
200 |
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
202 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
203 |
msgstr "Ta operacja stworzy/zaktualizuje wszystkie brakujące tabele/opcje, kontynuować?"
|
204 |
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:489
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:754
|
208 |
msgid "Options"
|
209 |
msgstr "Opcje"
|
210 |
|
211 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
212 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:442
|
213 |
msgid "Add a new Field"
|
214 |
msgstr "Dodaj nowe pole"
|
215 |
|
216 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:809
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
220 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:294
|
222 |
msgid "Extra Fields"
|
223 |
msgstr "Pola dodatkowe"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
226 |
msgid "Support the Cimy Project"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
|
230 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:516
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1259
|
235 |
msgid "SUCCESSFUL"
|
236 |
msgstr "PRAWIDŁOWO"
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:856
|
240 |
msgid "Save Changes"
|
241 |
msgstr "Zapisz zmiany"
|
242 |
|
243 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:531
|
244 |
msgid "General"
|
245 |
msgstr "Ogólne"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:539
|
248 |
msgid "installed is"
|
249 |
msgstr "jest zainstalowany"
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
252 |
msgid "OPTIONS DELETED!"
|
253 |
msgstr "OPCJE USUNIĘTE!"
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
257 |
msgid "Fix the problem"
|
258 |
msgstr "Usuń problem"
|
259 |
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
261 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
262 |
msgstr "Wersja niekompatybilna! Nie deaktywowałeś a następnie nie reaktywowałeś wtyczki po aktualizacji wordpressa! To może spowodować problemy..."
|
263 |
|
264 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
265 |
msgid "Picture/Avatar upload"
|
266 |
msgstr "Wgrywanie obrazka/avatara"
|
267 |
|
268 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
269 |
msgid "is created and writable"
|
270 |
msgstr "jest utworzony i zapisywalny"
|
271 |
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
273 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
274 |
msgstr "NIE był wgrywany lub serwer nie ma możliwości zapisywania do niego"
|
275 |
|
276 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
277 |
#, fuzzy
|
278 |
msgid "Show all fields in the welcome email"
|
279 |
msgstr "Pokaż pole na blogu"
|
280 |
|
281 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
282 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
286 |
msgid "Enable email confirmation"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
290 |
msgid "user that registers should confirm its email address via a link click"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
|
294 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:595
|
298 |
+
msgid "Enable form confirmation"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
302 |
+
msgid "a summary of the registration form will be presented to the user"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
306 |
+
msgid "Customize welcome email sent to the new user"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
310 |
+
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
314 |
msgid "Redirect to the source"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
|
318 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
|
322 |
msgid "No captcha"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
326 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
330 |
msgid "Public KEY"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
334 |
msgid "Private KEY"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:651
|
338 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:654
|
342 |
msgid "This captcha is probably weaker, but is easier for users"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
346 |
#, php-format
|
347 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
351 |
msgid "Change login/registration page logo"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:450
|
356 |
msgid "Delete the picture"
|
357 |
msgstr "Usuń obrazek"
|
358 |
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
360 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
364 |
msgid "Database"
|
365 |
msgstr "Baza danych"
|
366 |
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:688
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:706
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
371 |
msgid "select action"
|
372 |
msgstr "wybór czynności"
|
373 |
|
374 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
375 |
msgid "Default values"
|
376 |
msgstr "Wartości domyślne"
|
377 |
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:708
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:727
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
382 |
msgid "Delete"
|
383 |
msgstr "Usuń"
|
384 |
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:694
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:749
|
389 |
msgid "NOT PRESENT"
|
390 |
msgstr "NIE OBECNA"
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
393 |
msgid "WordPress Fields table"
|
394 |
msgstr "Tabela pól Wordpressa"
|
395 |
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:726
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:743
|
399 |
msgid "Empty"
|
400 |
msgstr "Opróżnij"
|
401 |
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:719
|
403 |
msgid "Extra Fields table"
|
404 |
msgstr "Tabela pól dodatkowych"
|
405 |
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:736
|
407 |
msgid "Users Data table"
|
408 |
msgstr "Tabela danych użytkowników"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:746
|
411 |
msgid "all data inserted by users in all and only extra fields"
|
412 |
msgstr "wszystkie dane wstawione przez użytkowników do pól dodatkowych"
|
413 |
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
415 |
msgid "Force tables creation"
|
416 |
msgstr "Wymuś utworzenie tabel"
|
417 |
|
418 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
419 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
420 |
msgstr "równoważne deaktywacji i ponownej reaktywacji wtyczki; żadne inne operacje nie zostaną wykonane"
|
421 |
|
422 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:763
|
423 |
msgid "User Profile"
|
424 |
msgstr "Profil użytkownika"
|
425 |
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
427 |
msgid "Extra Fields section title"
|
428 |
msgstr "Tytuł sekcji pól dodatkowych"
|
429 |
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
431 |
msgid "Fieldset's titles, separates with comma"
|
432 |
msgstr "Tytuły grup pól, rozdziel przecinkami"
|
433 |
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
435 |
msgid "example: title1,title2,title3"
|
436 |
msgstr "Przykład: tytuł1, tytuł2, tytuł3"
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:771
|
439 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
440 |
msgstr "<strong>uwaga:</strong> jeśli zmienisz kolejność lub usuniesz grupy pól powinieneś ustawić przypisanie wszystkich pól dodatkowych do grup pól ponownie"
|
441 |
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:776
|
443 |
msgid "Authors & Users Extended"
|
444 |
msgstr "Rozszerzenia kont"
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:780
|
447 |
msgid "Hide username field"
|
448 |
msgstr "Ukryj pole z nazwą użytkownika"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
451 |
msgid "Hide name field"
|
452 |
msgstr "Ukryj nazwę"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:791
|
455 |
msgid "Hide email field"
|
456 |
msgstr "Ukryj adres email"
|
457 |
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:795
|
459 |
msgid "Hide role field"
|
460 |
msgstr "Ukryj rolę"
|
461 |
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
|
463 |
msgid "Hide website field"
|
464 |
msgstr "Ukryj pole witryna"
|
465 |
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:803
|
467 |
msgid "Hide n. posts field"
|
468 |
msgstr "Ukryj liczbę wpisów"
|
469 |
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:808
|
471 |
msgid "WordPress hidden fields"
|
472 |
msgstr "Ukryte pola Worpdressa"
|
473 |
|
474 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:811
|
475 |
msgid "Show password"
|
476 |
msgstr "Pokaż hasło"
|
477 |
|
478 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:815
|
479 |
#, fuzzy
|
480 |
msgid "Show confirmation password"
|
481 |
msgstr "Pokaż hasło"
|
482 |
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:819
|
484 |
#, fuzzy
|
485 |
msgid "Show password strength meter"
|
486 |
msgstr "Pokaż hasło"
|
487 |
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:823
|
489 |
msgid "Show first name"
|
490 |
msgstr "Pokaż imię"
|
491 |
|
492 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
493 |
msgid "Show last name"
|
494 |
msgstr "Pokaż nazwisko"
|
495 |
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:831
|
497 |
msgid "Show nickname"
|
498 |
msgstr "Pokaż pseudonim"
|
499 |
|
500 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:835
|
501 |
msgid "Show website"
|
502 |
msgstr "pokaż witrynę"
|
503 |
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:839
|
505 |
msgid "Show AIM"
|
506 |
msgstr "Pokaż \"AIM\""
|
507 |
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:843
|
509 |
msgid "Show Yahoo IM"
|
510 |
msgstr "Pokaż \"Yahoo IM\""
|
511 |
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:847
|
513 |
msgid "Show Jabber / Google Talk"
|
514 |
msgstr "Pokaż \"Jabber / Google Talk\""
|
515 |
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:851
|
517 |
msgid "Show Biographical Info"
|
518 |
msgstr "Pokaż informacje dodatkowe"
|
519 |
|
539 |
msgid "Mismatch"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:221
|
543 |
msgid "Password"
|
544 |
msgstr "Hasło"
|
545 |
|
546 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:241
|
547 |
msgid "Password confirmation"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:261
|
551 |
msgid "First name"
|
552 |
msgstr "Imię"
|
553 |
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:281
|
555 |
msgid "Last name"
|
556 |
msgstr "Nazwisko"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:301
|
559 |
msgid "Nickname"
|
560 |
msgstr "Pseudonim"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:321
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1548
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
|
565 |
msgid "Website"
|
566 |
msgstr "Strona internetowa"
|
567 |
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:341
|
569 |
msgid "AIM"
|
570 |
msgstr "AIM"
|
571 |
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:361
|
573 |
msgid "Yahoo IM"
|
574 |
msgstr "Yahoo IM"
|
575 |
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:381
|
577 |
msgid "Jabber / Google Talk"
|
578 |
msgstr "Jabber / Google Talk"
|
579 |
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:401
|
581 |
msgid "Biographical Info"
|
582 |
msgstr "Biografia"
|
583 |
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
586 |
msgid "Fields"
|
587 |
msgstr "Pola"
|
588 |
|
|
|
589 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:765
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1421
|
593 |
msgid "Users Extended"
|
594 |
msgstr "Lista rozszerzona"
|
595 |
|
607 |
msgid "File '%s' is not an image."
|
608 |
msgstr "Plik '%s' musi być obrazkiem"
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:446
|
611 |
msgid "Delete the file"
|
612 |
msgstr "Usuń plik"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
615 |
msgid "Update the file"
|
616 |
msgstr "Zaktualizuj plik"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:451
|
619 |
msgid "Update the picture"
|
620 |
msgstr "Wgraj obrazek"
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:471
|
623 |
msgid "Picture URL:"
|
624 |
msgstr "URL obrazka:"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:712
|
627 |
#, php-format
|
628 |
msgid "%s previous value: %s new value: %s"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:727
|
632 |
#, php-format
|
633 |
msgid "%s (%s) has changed one or more fields"
|
634 |
msgstr ""
|
639 |
msgstr ""
|
640 |
|
641 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
|
|
642 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:213
|
644 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:289
|
645 |
#, fuzzy, php-format
|
646 |
msgid "Username: %s"
|
647 |
msgstr "Nazwa użytkownika"
|
656 |
msgid "[%s] New User Registration"
|
657 |
msgstr ""
|
658 |
|
|
|
|
|
|
|
|
|
|
|
|
|
659 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
660 |
#, php-format
|
661 |
msgid "[%s] Your username and password"
|
694 |
msgid "An error occurred during the activation"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:290
|
700 |
+
#, fuzzy, php-format
|
701 |
+
msgid "Password: %s"
|
702 |
+
msgstr "Hasło"
|
703 |
+
|
704 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
705 |
msgid "Invalid activation key."
|
706 |
msgstr ""
|
729 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
733 |
msgid "Add field"
|
734 |
msgstr "Dodaj pole"
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
737 |
msgid "Update field"
|
738 |
msgstr "Zaktualizuj pole"
|
739 |
|
740 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
|
741 |
msgid "Delete field"
|
742 |
msgstr "Usuń pole"
|
743 |
|
744 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
|
745 |
msgid "Delete selected fields"
|
746 |
msgstr "Usuń wybrane pola"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
|
749 |
msgid "Change order"
|
750 |
msgstr "Zmień kolejność"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
753 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
|
754 |
msgid "Min length"
|
755 |
msgstr "Długość min"
|
756 |
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
758 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
759 |
msgid "Exact length"
|
760 |
msgstr "Długość dokładna"
|
761 |
|
762 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
763 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
764 |
msgid "Max length"
|
765 |
msgstr "Długość max"
|
766 |
|
767 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
|
768 |
msgid "Exact or Max length"
|
769 |
msgstr "Dokładna lub maksymalna długość"
|
770 |
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
772 |
msgid "changed to"
|
773 |
msgstr "zmieniona na"
|
774 |
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
776 |
msgid "You cannot give an order that misses some numbers"
|
777 |
msgstr "Nie możesz podać kolejności która pomija część liczb"
|
778 |
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:210
|
781 |
msgid "Nothing selected"
|
782 |
msgstr "Nie wybrano niczego"
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
785 |
msgid "Field(s)"
|
786 |
msgstr "Pole(a)"
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
789 |
msgid "deleted correctly"
|
790 |
msgstr "wykasowano prawidłowo"
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:239
|
793 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1056
|
794 |
msgid "Min size"
|
795 |
msgstr "Rozmiar min"
|
796 |
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
798 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
799 |
msgid "Exact size"
|
800 |
msgstr "Rozmiar dokładny"
|
801 |
|
802 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:241
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
804 |
msgid "Max size"
|
805 |
msgstr "Rozmiar max"
|
806 |
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
808 |
msgid "Exact or Max size"
|
809 |
msgstr "Rozmiar dokładny lub max"
|
810 |
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:299
|
812 |
msgid "Name not specified"
|
813 |
msgstr "Nazwa nie określona"
|
814 |
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
816 |
msgid "Name cannot contains spaces"
|
817 |
msgstr "Nazwa nie może zawierać spacji"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
|
820 |
msgid "Label not specified"
|
821 |
msgstr "Etykieta nie określona"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
|
824 |
msgid "not selected (with this type is necessary)"
|
825 |
msgstr "nie wybrano (niezbędne dla tego typu)"
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
828 |
msgid "If you select"
|
829 |
msgstr "Jeżeli wybierzesz"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
832 |
msgid "you cannot select Min or Max"
|
833 |
msgstr "Nie możesz wybrać Min lub Max"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:330
|
838 |
msgid "should be in the range of"
|
839 |
msgstr "powinien się mieścić w zakresie"
|
840 |
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:340
|
|
|
842 |
msgid "Equal TO not specified"
|
843 |
msgstr "równość (=) nie określona"
|
844 |
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:343
|
846 |
msgid "With checkbox type Equal TO can only be"
|
847 |
msgstr "Dla <strong>checkbox</strong> może być tylko równość"
|
848 |
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:346
|
850 |
msgid "With radio type Equal TO can only be"
|
851 |
msgstr "Dla <strong>radio</strong> może być tylko równość"
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:362
|
854 |
msgid "With checkbox type Value can only be"
|
855 |
msgstr "Dla <strong>checkbox</strong> wartość może być tylko"
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:365
|
858 |
msgid "With radio type Value can only be"
|
859 |
msgstr "Dla <strong>radio</strong> wartość może być tylko"
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
862 |
msgid "Field inserted correctly"
|
863 |
msgstr "Pole wstawione poprawnie"
|
864 |
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
866 |
msgid "Field #"
|
867 |
msgstr "Pole #"
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
870 |
msgid "updated correctly"
|
871 |
msgstr "zaktualizowane prawidłowo"
|
872 |
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
874 |
msgid "Name inserted is just in the database, change to another one"
|
875 |
msgstr "Podana nazwa już jest w bazie danych, zmień na inną"
|
876 |
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
878 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
879 |
msgstr "Aby dodać nowe pole musisz nadać mu nazwę, typ i etykietę; wartość i opis są opcjonalne. Reguły są stosowane podczas rejestracji użytkownika."
|
880 |
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
882 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
883 |
msgstr "Dla <strong>radio</strong> i <strong>checkbox</strong>: <em>wartość</em> i <em>równe</em> mogą być tylko \"Yes\" lub \"No\", co oznacza zaznaczone lub nie zaznaczone."
|
884 |
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
886 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
887 |
msgstr "Dla <strong>listy (drop-down)</strong>: musisz podać wszystkie opcje w etykiecie. Np.: etykieta/wartość1,wartość2,wartość3. "
|
888 |
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
890 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
891 |
msgstr "Dla <strong>obrazka (picture)</strong>: należy uprzednio wgrać obrazek i podać jego Url w polu <em>wartość</em>; rozmiary min, dokładny, max są w KB; <em>równość</em> oznacza maksymalny rozmiar miniaturki (wysokość i szerokość) i będzie ustawiona automatycznie na 512 pikseli."
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
894 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
895 |
msgstr "Dla <strong>url obrazka</strong>: można wgrać domyślny obrazek i wstawić jego adres (Url) do pola <em>wartość</em>; <em>równe</em> oznacza maksymalną szerokość w pikselach (wysokość zostanie ustawiona proporcjonalnie)."
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
898 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
899 |
msgstr "Dla <strong>daty rejestracji</strong>: <em>równe</em> oznacza datę i czas rejestracji."
|
900 |
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
902 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
903 |
msgstr "Dla <strong>avatara</strong>: możesz wgrać domyślny obrazek wstawiając URL do <em>wartość</em>; \"min, dokładny i max rozmiar\" są w KB; <em>równe</em> oznacza maksymalny rozmiar w pikselach (wysokość i szerokość) dla miniaturki i będzie ustawiony automatycznie na 512 pikseli."
|
904 |
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
906 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
907 |
msgstr "Dla <strong>Pliku</strong>: możesz wgrać plik domyślny podająć URL w polu <em>Wartość</em>; 'min,dokładny,max rozmiar' podane są w KB; w polu <em>równe</em> można podać dopuszczalne rozszerzenia, np.: zip,pdf,doc"
|
908 |
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:648
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
912 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1089
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1533
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
|
915 |
msgid "Name"
|
916 |
msgstr "Nazwa"
|
917 |
|
|
|
918 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
|
920 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1092
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
924 |
msgid "Value"
|
925 |
msgstr "Wartość"
|
926 |
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:639
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1095
|
931 |
msgid "Type"
|
932 |
msgstr "Typ"
|
933 |
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
938 |
msgid "Label"
|
939 |
msgstr "Etykieta"
|
940 |
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:672
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
945 |
msgid "Description"
|
946 |
msgstr "Opis"
|
947 |
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
950 |
msgid "Rules"
|
951 |
msgstr "Reguły"
|
952 |
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
955 |
msgid "Actions"
|
956 |
msgstr "Działania"
|
957 |
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
961 |
msgid "Fieldset"
|
962 |
msgstr "Grupa pól"
|
963 |
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
966 |
msgid "Can be empty"
|
967 |
msgstr "Może być puste"
|
968 |
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
971 |
msgid "Check for E-mail syntax"
|
972 |
msgstr "Sprawdzaj poprawność adresu email"
|
973 |
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:688
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
976 |
msgid "Can be modified"
|
977 |
msgstr "Może być zmieniane"
|
978 |
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1139
|
981 |
msgid "Can be modified only if empty"
|
982 |
msgstr "Może być zmienione tylko jeśli jest puste"
|
983 |
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
986 |
msgid "Can be modified only by admin"
|
987 |
msgstr "Może być modyfikowane tylko przez administratora"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
990 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
991 |
msgid "Can be modified only by admin or if empty"
|
992 |
msgstr "Może być modyfikowane tylko przez administratora jeśli jest puste"
|
993 |
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:692
|
995 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
996 |
msgid "Cannot be modified"
|
997 |
msgstr "Nie może być zmieniane"
|
998 |
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
1000 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
1001 |
msgid "Should be equal TO"
|
1002 |
msgstr "Powinno być równe"
|
1003 |
|
1004 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
1006 |
msgid "Case sensitive"
|
1007 |
msgstr "Rozróżnia wielkość liter"
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
1011 |
msgid "Regular Expression"
|
1012 |
msgstr "Wyrażenie regularne"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1155
|
1016 |
msgid "Show the field in the registration"
|
1017 |
msgstr "Pokaż pole podczas rejestracji"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
1020 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
1021 |
msgid "Show the field in User's profile"
|
1022 |
msgstr "Pokaż pole w profilu użytkownika"
|
1023 |
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
1025 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1167
|
1026 |
+
#, fuzzy
|
1027 |
+
msgid "Show the field in Users Extended menu"
|
1028 |
msgstr "Pokaż pole na rozszerzonej liście użytkowników"
|
1029 |
|
1030 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
1031 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1170
|
1032 |
msgid "Show the field in the search engine"
|
1033 |
msgstr "Pokaż pole w profilu użytkownika"
|
1034 |
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
1036 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1173
|
1037 |
msgid "Show the field in the blog"
|
1038 |
msgstr "Pokaż pole na blogu"
|
1039 |
|
1040 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:723
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1176
|
1042 |
msgid "Show the field if the role is at least:"
|
1043 |
msgstr "Pokaż pole jeżeli rolą użytkownika jest przynajmniej:"
|
1044 |
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:725
|
1046 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1047 |
msgid "Anonymous"
|
1048 |
msgstr "Anonim"
|
1049 |
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1184
|
1052 |
+
msgid "User has 'view_cimy_extra_fields' capability"
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:736
|
1056 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
1057 |
msgid "Send an email to the admin if the user changes its value"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:738
|
1061 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1197
|
1062 |
+
#, fuzzy
|
1063 |
+
msgid "Advanced options"
|
1064 |
+
msgstr "Działania"
|
1065 |
+
|
1066 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
1067 |
msgid "Clear"
|
1068 |
msgstr "Wyczyść"
|
1069 |
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
|
1071 |
msgid "Invert selection"
|
1072 |
msgstr "Odwróć wybór"
|
1073 |
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
|
1075 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1076 |
msgstr "Czy na pewno chcesz wykasować pola i wszystkie dane wprowadzone w nie przez użytkowników"
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1079 |
msgid "WordPress Fields"
|
1080 |
msgstr "Pola Wordpressa"
|
1081 |
|
1082 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
1083 |
msgid "None!"
|
1084 |
msgstr "Brak!"
|
1085 |
|
1086 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
|
1087 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1077
|
1088 |
msgid "Order"
|
1089 |
msgstr "Kolejność"
|
1090 |
|
1091 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1201
|
1092 |
msgid "Reset"
|
1093 |
msgstr "Wyczyść"
|
1094 |
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1288
|
1096 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1903
|
1097 |
msgid "select"
|
1098 |
msgstr "- Wybierz -"
|
1099 |
|
1100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1429
|
1101 |
#, php-format
|
1102 |
msgid "Search results for “%s”"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
|
1106 |
#, php-format
|
1107 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1465
|
1111 |
msgid "Search Users"
|
1112 |
msgstr "Szukaj użytkowników"
|
1113 |
|
1114 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
1115 |
msgid "« Back to All Users"
|
1116 |
msgstr "« Powrót do wszystkich"
|
1117 |
|
1118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1501
|
1119 |
msgid "Users per page"
|
1120 |
msgstr "Użytkowników na stronie"
|
1121 |
|
1122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1123 |
msgid "Apply"
|
1124 |
msgstr "Zastosuj"
|
1125 |
|
1126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1543
|
1127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1128 |
msgid "Role"
|
1129 |
msgstr "Rola"
|
1130 |
|
1131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1553
|
1132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
|
1133 |
msgid "Posts"
|
1134 |
msgstr "Wpisy"
|
1135 |
|
1136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1691
|
1137 |
msgid "View posts by this author"
|
1138 |
msgstr "Zobacz wpisy tego autora"
|
1139 |
|
1140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1725
|
1141 |
#, php-format
|
1142 |
msgid "e-mail: %s"
|
1143 |
msgstr "e-mail: %s"
|
1144 |
|
1145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1847
|
1146 |
#, fuzzy
|
1147 |
msgid "Change"
|
1148 |
msgstr "Zmień kolejność"
|
1149 |
|
1150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1872
|
1151 |
#, fuzzy
|
1152 |
msgid "Update selected users"
|
1153 |
msgstr "Usuń wybrane pola"
|
1154 |
|
1155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1156 |
#, fuzzy
|
1157 |
msgid "Update"
|
1158 |
msgstr "Zaktualizuj pole"
|
1159 |
|
1160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1908
|
1161 |
msgid "OK"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1909
|
1165 |
msgid "Cancel"
|
1166 |
msgstr ""
|
1167 |
|
langs/cimy_uef-pt_BR.mo
CHANGED
Binary file
|
langs/cimy_uef-pt_BR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Diana K. Cury <dianakac@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,115 +16,144 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERRO"
|
36 |
|
37 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
38 |
msgid "does not match."
|
39 |
msgstr "não coincide."
|
40 |
|
41 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "não tem uma sintaxe de e-mail válida."
|
44 |
|
45 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "não pode estar vazio."
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "não está correto"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
55 |
msgid "YES"
|
56 |
msgstr "SIM"
|
57 |
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
59 |
msgid "NO"
|
60 |
msgstr "NÃO"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
msgid "should be"
|
64 |
msgstr "deve ser"
|
65 |
|
66 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
67 |
msgid "should be an image."
|
68 |
msgstr "deve ser uma imagem"
|
69 |
|
70 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "não pode ter tamanho inferior a"
|
73 |
|
74 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "não poder tamanho inferior a"
|
77 |
|
78 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "não pode ter tamanho diferrente de"
|
81 |
|
82 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "não pode ter comprimento diferente de"
|
85 |
|
86 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "não pode ter tamanho maior que"
|
89 |
|
90 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "não pode ter comprimento maior que"
|
93 |
|
94 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
95 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr "Código digitado não está correto."
|
98 |
|
99 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
msgid "Please upload a file with one of the following extensions"
|
102 |
msgstr "Por favor envie um arquivo com uma das seguintes extensões"
|
103 |
|
104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
107 |
msgid "Please upload an image with one of the following extensions"
|
108 |
msgstr "Por favor envie uma imagem com uma das seguintes extensões"
|
109 |
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
111 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
112 |
msgid "Strength indicator"
|
113 |
msgstr "Indicador de força"
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
#, fuzzy
|
117 |
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 ! \" ? $ % ^ & )."
|
118 |
msgstr "Dica: A senha deve ter ao menos sete caracteres. Para torná-la mais segura, use maiúsculas, minúsculas, números e simbolos como ! \\\" ? $ % ^ & )."
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
121 |
msgid "Change image"
|
122 |
msgstr "Mudar imagem"
|
123 |
|
124 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
125 |
msgid "Insert the code:"
|
126 |
msgstr "Inserir o código:"
|
127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
129 |
msgid "no fieldset"
|
130 |
msgstr "sem campo"
|
@@ -133,339 +162,356 @@ msgstr "sem campo"
|
|
133 |
msgid "All"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
137 |
msgid "WordPress Fields table emptied"
|
138 |
msgstr "Tabela de campos do WordPress esvaziada"
|
139 |
|
140 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
141 |
msgid "WordPress Fields table deleted"
|
142 |
msgstr "Tabela de campos do WordPress excluída"
|
143 |
|
144 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
145 |
msgid "Extra Fields table emptied"
|
146 |
msgstr "Tabela de Extra Fields esvaziada"
|
147 |
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
149 |
msgid "Extra Fields table deleted"
|
150 |
msgstr "Tabela de Extra Fields esxcluída"
|
151 |
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
153 |
msgid "Users Data table emptied"
|
154 |
msgstr "Tabela com dados de usuários esvaziada"
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
157 |
msgid "Users Data table deleted"
|
158 |
msgstr "Tabela com dados de usuários excluída"
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
161 |
msgid "Options set to default values"
|
162 |
msgstr "Opções definidas para valores padrão"
|
163 |
|
164 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
165 |
msgid "Options deleted"
|
166 |
msgstr "Opções excluídas"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
169 |
msgid "Options changed"
|
170 |
msgstr "Opções alteradas"
|
171 |
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
173 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
174 |
msgstr "Esta operação vai criar/atualizar todas a opções/tabelas que faltam, continuar?"
|
175 |
|
176 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
177 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
179 |
msgid "Options"
|
180 |
msgstr "Opções"
|
181 |
|
182 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
184 |
msgid "Add a new Field"
|
185 |
msgstr "Adicionar Novo Campo"
|
186 |
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
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 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
193 |
msgid "Extra Fields"
|
194 |
msgstr "Campos Adicionais"
|
195 |
|
196 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
197 |
msgid "Support the Cimy Project"
|
198 |
msgstr "Suporte o Projeto Cimy"
|
199 |
|
200 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
201 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
202 |
msgstr "Este plugin é o resultado de horas de desenvolvimento para adicionar novos recurso, suportar novas versões do WordPress e corrigir bugs, por favor, faça um donativo ao autor! <br /><br /><small>Tradução para pt_BR: <a href=\"http://www.arquivo.tk\" target=_blank\">Diana K. C</a></small>"
|
203 |
|
204 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
205 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
206 |
msgid "SUCCESSFUL"
|
207 |
msgstr "CONCLUÍDO"
|
208 |
|
209 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
msgid "Save Changes"
|
212 |
msgstr "Salvar Mudanças"
|
213 |
|
214 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
215 |
msgid "General"
|
216 |
msgstr "Geral"
|
217 |
|
218 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
219 |
msgid "installed is"
|
220 |
msgstr "instalado é"
|
221 |
|
222 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
223 |
msgid "OPTIONS DELETED!"
|
224 |
msgstr "OPÇÕES EXCLUÍDAS`"
|
225 |
|
226 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
228 |
msgid "Fix the problem"
|
229 |
msgstr "Corrigir problema"
|
230 |
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
232 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
233 |
msgstr "Versões não coincidem! Isto pode ter sido causado porque não desativou e reativou o plugin depois da atualização!"
|
234 |
|
235 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
236 |
msgid "Picture/Avatar upload"
|
237 |
msgstr "Envio de Figura/Avatar"
|
238 |
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
240 |
msgid "is created and writable"
|
241 |
msgstr "foi criado e pode ser escrito"
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
244 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
245 |
msgstr "não foi criado ou o serviço de hospedam não tem permissão de escrever nele."
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
248 |
msgid "Show all fields in the welcome email"
|
249 |
msgstr "Mostrar todos os campos no e-mail de boas-vindas"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
252 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
253 |
msgstr "O e-mail enviado ao admin e ao usuário que se registrou, mostrará todos os campos."
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
256 |
msgid "Enable email confirmation"
|
257 |
msgstr "Ativar configuração de e-mail"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
260 |
msgid "user that registers should confirm its email address via a link click"
|
261 |
msgstr "Usuários que se registrarem devem confirmar seu e-mail através de link"
|
262 |
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
264 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
265 |
msgstr "<strong>Nota:</strong> se ativar esta opção, todas os itens de envio de arquivos serão destaivados como envio de arquivos, avatar etc."
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
msgid "Redirect to the source"
|
269 |
msgstr "Redirecionar para a origem"
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
272 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
273 |
msgstr "Depois do registro ou confirmação, o usuário será redirecionado para o endereço onde estava antes de clicar no link para se registrar."
|
274 |
|
275 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
276 |
msgid "No captcha"
|
277 |
msgstr "Sem CAPTCHA"
|
278 |
|
279 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
280 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
281 |
msgstr "Ativar <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
282 |
|
283 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
284 |
msgid "Public KEY"
|
285 |
msgstr "Chave pública (Public KEY)"
|
286 |
|
287 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
288 |
msgid "Private KEY"
|
289 |
msgstr "Chave privativa (Private KEY)"
|
290 |
|
291 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
292 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
293 |
msgstr "Ativar <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage CAPTCHA</a>"
|
294 |
|
295 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
296 |
msgid "This captcha is probably weaker, but is easier for users"
|
297 |
msgstr "Este CAPTCHA é mais fraco, porém, mais simples para usuários"
|
298 |
|
299 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
300 |
#, php-format
|
301 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
302 |
msgstr "<strong>ATENÇÃO: para ativar este captcha, faça download da extensção<a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">PHP Captcha</a> e extraia em %s</strong>"
|
303 |
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
305 |
msgid "Change login/registration page logo"
|
306 |
msgstr "Mudar logotipo da página de registro"
|
307 |
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
310 |
msgid "Delete the picture"
|
311 |
msgstr "Excluir figura"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
314 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
315 |
msgstr "Dimensão máxima recomendada da largura é 328px"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
318 |
msgid "Database"
|
319 |
msgstr "Banco de Dados"
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
323 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
324 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
325 |
msgid "select action"
|
326 |
msgstr "Selecione uma ação"
|
327 |
|
328 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
329 |
msgid "Default values"
|
330 |
msgstr "Valores padrão"
|
331 |
|
332 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
335 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
336 |
msgid "Delete"
|
337 |
msgstr "Excluir"
|
338 |
|
339 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
340 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
343 |
msgid "NOT PRESENT"
|
344 |
msgstr "NÃO PRESENTE"
|
345 |
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
347 |
msgid "WordPress Fields table"
|
348 |
msgstr "Tabela de Campos do WordPress"
|
349 |
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
353 |
msgid "Empty"
|
354 |
msgstr "Esvaziar"
|
355 |
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
357 |
msgid "Extra Fields table"
|
358 |
msgstr "Tabela de Campos Extras"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
361 |
msgid "Users Data table"
|
362 |
msgstr "Tabela de Dados do Usuário"
|
363 |
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
365 |
msgid "all data inserted by users in all and only extra fields"
|
366 |
msgstr "Todos os dados inseridos pelos usuários em todos os campos extras"
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
369 |
msgid "Force tables creation"
|
370 |
msgstr "Forçar criação de tabelas"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
373 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
374 |
msgstr "Equivalente a desativar e ativar o plugin, nenhuma outra operação é feita"
|
375 |
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
377 |
msgid "User Profile"
|
378 |
msgstr "Perfil do Usuário"
|
379 |
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
381 |
msgid "Extra Fields section title"
|
382 |
msgstr "Títulos para seção de Campos Adicionais"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
385 |
msgid "Fieldset's titles, separates with comma"
|
386 |
msgstr "Tïtulos da seções, separados por vírgulas"
|
387 |
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
389 |
msgid "example: title1,title2,title3"
|
390 |
msgstr "Ex.: título A, título B, Título C"
|
391 |
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
393 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
394 |
msgstr "<strong>Nota:</strong> ao mudar a ordem ou remover qualquer campo adicional, é preciso definir onde os campos aparecem novamente"
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
397 |
msgid "Authors & Users Extended"
|
398 |
msgstr "Autores & Usuários Extendidos"
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
401 |
msgid "Hide username field"
|
402 |
msgstr "Esconder campo <strong>Nome de Usuário</strong>"
|
403 |
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
405 |
msgid "Hide name field"
|
406 |
msgstr "Esconder campo <strong>Nome</strong>"
|
407 |
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
409 |
msgid "Hide email field"
|
410 |
msgstr "Esconder campo <strong>E-mail</strong>"
|
411 |
|
412 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
413 |
msgid "Hide role field"
|
414 |
msgstr "Esconder campo <strong>Função</strong>"
|
415 |
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
417 |
msgid "Hide website field"
|
418 |
msgstr "Esconder campo <strong>Website</strong>"
|
419 |
|
420 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
421 |
msgid "Hide n. posts field"
|
422 |
msgstr "Esconder número de postagens"
|
423 |
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
425 |
msgid "WordPress hidden fields"
|
426 |
msgstr "Campos WordPress"
|
427 |
|
428 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
429 |
msgid "Show password"
|
430 |
msgstr "Mostrar senha"
|
431 |
|
432 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
433 |
msgid "Show confirmation password"
|
434 |
msgstr "Mostrar senha de confirmação"
|
435 |
|
436 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
437 |
msgid "Show password strength meter"
|
438 |
msgstr "Mostrar indicador de força da senha"
|
439 |
|
440 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
441 |
msgid "Show first name"
|
442 |
msgstr "Mostrar Nome"
|
443 |
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
445 |
msgid "Show last name"
|
446 |
msgstr "Mostrar Sobrenome"
|
447 |
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
449 |
msgid "Show nickname"
|
450 |
msgstr "Mostrar Apelido"
|
451 |
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
453 |
msgid "Show website"
|
454 |
msgstr "Mostrar Website"
|
455 |
|
456 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
457 |
msgid "Show AIM"
|
458 |
msgstr "Mostrar AIM"
|
459 |
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
461 |
msgid "Show Yahoo IM"
|
462 |
msgstr "Mostrar Yahoo IM"
|
463 |
|
464 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
465 |
msgid "Show Jabber / Google Talk"
|
466 |
msgstr "Mostrar Jabber/ Google Talk"
|
467 |
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
469 |
msgid "Show Biographical Info"
|
470 |
msgstr "Mostrar Biografia"
|
471 |
|
@@ -491,57 +537,57 @@ msgstr ""
|
|
491 |
msgid "Mismatch"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
495 |
msgid "Password"
|
496 |
msgstr "Senha"
|
497 |
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
499 |
msgid "Password confirmation"
|
500 |
msgstr "Confirmação de senha"
|
501 |
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
503 |
msgid "First name"
|
504 |
msgstr "Nome"
|
505 |
|
506 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
507 |
msgid "Last name"
|
508 |
msgstr "Sobrenome"
|
509 |
|
510 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
511 |
msgid "Nickname"
|
512 |
msgstr "Apelido"
|
513 |
|
514 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
515 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
516 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
517 |
msgid "Website"
|
518 |
msgstr "Website"
|
519 |
|
520 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
521 |
msgid "AIM"
|
522 |
msgstr "AIM"
|
523 |
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
525 |
msgid "Yahoo IM"
|
526 |
msgstr "Yahoo IM"
|
527 |
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
529 |
msgid "Jabber / Google Talk"
|
530 |
msgstr "Jabber / Google Talk"
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
533 |
msgid "Biographical Info"
|
534 |
msgstr "Biografias"
|
535 |
|
536 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
538 |
msgid "Fields"
|
539 |
msgstr "Campos"
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:752
|
542 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
545 |
msgid "Users Extended"
|
546 |
msgstr "Usuários Extendidos"
|
547 |
|
@@ -559,28 +605,28 @@ msgstr "A <em>biblioteca GD image</em> não está disponível"
|
|
559 |
msgid "File '%s' is not an image."
|
560 |
msgstr "Arquivo '%s' não é uma imagem."
|
561 |
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
563 |
msgid "Delete the file"
|
564 |
msgstr "Excluir arquivo"
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
567 |
msgid "Update the file"
|
568 |
msgstr "Atualizar o arquivo"
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
571 |
msgid "Update the picture"
|
572 |
msgstr "Atualizar figura"
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
575 |
msgid "Picture URL:"
|
576 |
msgstr "URL da figura:"
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
579 |
#, php-format
|
580 |
msgid "%s previous value: %s new value: %s"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
584 |
#, php-format
|
585 |
msgid "%s (%s) has changed one or more fields"
|
586 |
msgstr ""
|
@@ -591,8 +637,9 @@ msgid "New user registration on your site %s:"
|
|
591 |
msgstr "Novos usuários registrados no site %s:"
|
592 |
|
593 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
595 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
|
|
|
|
596 |
#, php-format
|
597 |
msgid "Username: %s"
|
598 |
msgstr "Nome de usuário: %s"
|
@@ -607,12 +654,6 @@ msgstr "E-mail: %s"
|
|
607 |
msgid "[%s] New User Registration"
|
608 |
msgstr "[%s] Registro de novo usuário"
|
609 |
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
612 |
-
#, php-format
|
613 |
-
msgid "Password: %s"
|
614 |
-
msgstr "Senha: %s"
|
615 |
-
|
616 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
617 |
#, php-format
|
618 |
msgid "[%s] Your username and password"
|
@@ -657,6 +698,13 @@ msgstr "Seu site em <a href=\"%1$s\">%2$s</a> Está ativo. Faça login usando se
|
|
657 |
msgid "An error occurred during the activation"
|
658 |
msgstr "Um erro ocorreu durante a ativação"
|
659 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
660 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
661 |
msgid "Invalid activation key."
|
662 |
msgstr "Chave de ativação inválida"
|
@@ -685,436 +733,437 @@ msgstr "Nome de usuário e e-mail usados"
|
|
685 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
686 |
msgstr "E-mail já usado. Verifique se não há um e-mail de ativação na sua caixa de entrada. Estará disponível em alguns dias se nada fizer."
|
687 |
|
688 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
689 |
msgid "Add field"
|
690 |
msgstr "Adicionar Campo"
|
691 |
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
693 |
msgid "Update field"
|
694 |
msgstr "Atualizar Campo"
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
697 |
msgid "Delete field"
|
698 |
msgstr "Excluir Campo"
|
699 |
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
701 |
msgid "Delete selected fields"
|
702 |
msgstr "Excluir campos selecionados"
|
703 |
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
705 |
msgid "Change order"
|
706 |
msgstr "Mudar ordem"
|
707 |
|
708 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
710 |
msgid "Min length"
|
711 |
msgstr "Caracteres Mín."
|
712 |
|
713 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
715 |
msgid "Exact length"
|
716 |
msgstr "Caracteres Exatos"
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
720 |
msgid "Max length"
|
721 |
msgstr "Caracteres Máx."
|
722 |
|
723 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
724 |
msgid "Exact or Max length"
|
725 |
msgstr "Caracteres Exatos ou Máx."
|
726 |
|
727 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
728 |
msgid "changed to"
|
729 |
msgstr "mudou para"
|
730 |
|
731 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
732 |
msgid "You cannot give an order that misses some numbers"
|
733 |
msgstr "Você não pode dar uma ordem que precisa de alguns números"
|
734 |
|
735 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
737 |
msgid "Nothing selected"
|
738 |
msgstr "Nada selecionado"
|
739 |
|
740 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
741 |
msgid "Field(s)"
|
742 |
msgstr "Campo(s)"
|
743 |
|
744 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
745 |
msgid "deleted correctly"
|
746 |
msgstr "excluído(s)"
|
747 |
|
748 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
749 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
750 |
msgid "Min size"
|
751 |
msgstr "Tamanho Mín."
|
752 |
|
753 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
754 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
755 |
msgid "Exact size"
|
756 |
msgstr "Tamanho Exato"
|
757 |
|
758 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
759 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
760 |
msgid "Max size"
|
761 |
msgstr "Tamanho Máx."
|
762 |
|
763 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
764 |
msgid "Exact or Max size"
|
765 |
msgstr "Tamanho Máx. ou Exato"
|
766 |
|
767 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
768 |
msgid "Name not specified"
|
769 |
msgstr "Nome não especificado"
|
770 |
|
771 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
772 |
msgid "Name cannot contains spaces"
|
773 |
msgstr "Nome não pode conter espaços"
|
774 |
|
775 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
776 |
msgid "Label not specified"
|
777 |
msgstr "Rótulo não especificado"
|
778 |
|
779 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
780 |
msgid "not selected (with this type is necessary)"
|
781 |
msgstr "não selecionado (necessário neste tipo de campo)"
|
782 |
|
783 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
784 |
msgid "If you select"
|
785 |
msgstr "Se você selecionar"
|
786 |
|
787 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
788 |
msgid "you cannot select Min or Max"
|
789 |
msgstr "você não pode selecionar Mínimo ou Máximo"
|
790 |
|
791 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
792 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
793 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
794 |
msgid "should be in the range of"
|
795 |
msgstr "deve ser no limite de"
|
796 |
|
797 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
799 |
msgid "Equal TO not specified"
|
800 |
msgstr "<strong>Igual a</strong> não especificado"
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
803 |
msgid "With checkbox type Equal TO can only be"
|
804 |
msgstr "Com caixas de marcação <strong>Igual a</strong> só pode ser"
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
msgid "With radio type Equal TO can only be"
|
808 |
msgstr "Com botões de rádio <strong>Igual a</strong> só pode ser"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
msgid "With checkbox type Value can only be"
|
812 |
msgstr "Com caixas de marcação <strong>Valor</strong> só pode ser"
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
msgid "With radio type Value can only be"
|
816 |
msgstr "Com botões de rádio <strong>valor</strong> só podeser"
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
819 |
msgid "Field inserted correctly"
|
820 |
msgstr "Campo inserido!"
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
msgid "Field #"
|
824 |
msgstr "Campo #"
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
827 |
msgid "updated correctly"
|
828 |
msgstr "atualizado!"
|
829 |
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
msgid "Name inserted is just in the database, change to another one"
|
832 |
msgstr "Nome inserido já está no banco de dados, escolha outro."
|
833 |
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
836 |
msgstr "Para adicionar um novo campo, você deve escolher o <strong>Tipo</strong> e o <strong>Rótulo</strong>, opcionalmente o <strong>Valor</strong> e <strong>Descrição</strong>. As <strong>Regras</strong> são aplicadas durante o registro."
|
837 |
|
838 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
839 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
840 |
msgstr "<strong>radio</strong> e <strong>checkbox: </strong><em>Valor</em> e <em>Igual A</em> pode ser 'Sim/Verdadeiro' ou 'Não/Falso' ou seja, 'selecionado' ou 'não selecionado'"
|
841 |
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
843 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
844 |
msgstr "<strong>drop-down</strong>: Lista de opções. É necessário informar todos os rótulos. Ex. de sintaxe: Gênero/Masculino,Feminino"
|
845 |
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
848 |
msgstr "<strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à dimensão (altura ou largura) da miniatura."
|
849 |
|
850 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
851 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
852 |
msgstr "<strong>picture-url</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Item <em>Deve ser Igual a:</em> se refere à largura máxima da imagem, a altura será proporcional"
|
853 |
|
854 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
855 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
856 |
msgstr "<strong>registration-date</strong>: <em>Deve ser Igual a:</em> se refere a um formato de data."
|
857 |
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
860 |
msgstr "<strong>avatar</strong>: <strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> é automaticamente definido em 512 pixels"
|
861 |
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
863 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
864 |
msgstr "<strong>file</strong>: Permite carregar um arquivo informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à extensões de arquivo permitidas, separadas por vírgulas. Ex. de sintaxe: zip, pdf, doc"
|
865 |
|
866 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
867 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
870 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
871 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
872 |
msgid "Name"
|
873 |
msgstr "Nome"
|
874 |
|
875 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
876 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
877 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
881 |
msgid "Value"
|
882 |
msgstr "Valor"
|
883 |
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
886 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
887 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
888 |
msgid "Type"
|
889 |
msgstr "Tipo"
|
890 |
|
891 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
892 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
895 |
msgid "Label"
|
896 |
msgstr "Rótulo"
|
897 |
|
898 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
899 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
901 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
902 |
msgid "Description"
|
903 |
msgstr "Descrição"
|
904 |
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
906 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
907 |
msgid "Rules"
|
908 |
msgstr "Regras"
|
909 |
|
910 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
911 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
912 |
msgid "Actions"
|
913 |
msgstr "Ações"
|
914 |
|
915 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
917 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
918 |
msgid "Fieldset"
|
919 |
msgstr "Área do Campo"
|
920 |
|
921 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
922 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
923 |
msgid "Can be empty"
|
924 |
msgstr "Pode ser vazio"
|
925 |
|
926 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
927 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
928 |
msgid "Check for E-mail syntax"
|
929 |
msgstr "Verficar sintaxe de e-mail"
|
930 |
|
931 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
932 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
933 |
msgid "Can be modified"
|
934 |
msgstr "Pode ser modificado"
|
935 |
|
936 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
937 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
938 |
msgid "Can be modified only if empty"
|
939 |
msgstr "Pode ser modificado se vazio"
|
940 |
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
942 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
943 |
msgid "Can be modified only by admin"
|
944 |
msgstr "Pode ser modificado apenas por Admin"
|
945 |
|
946 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
948 |
msgid "Can be modified only by admin or if empty"
|
949 |
msgstr "Pode ser modificado por Admin ou se vazio"
|
950 |
|
951 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
952 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
953 |
msgid "Cannot be modified"
|
954 |
msgstr "Não pode ser modificado"
|
955 |
|
956 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
958 |
msgid "Should be equal TO"
|
959 |
msgstr "Deve ser <strong>Igual a</strong>"
|
960 |
|
961 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
962 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
963 |
msgid "Case sensitive"
|
964 |
msgstr "Diferenciar maiúsc./minúsc."
|
965 |
|
966 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
967 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
968 |
msgid "Regular Expression"
|
969 |
msgstr "Expressão Regular"
|
970 |
|
971 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
973 |
msgid "Show the field in the registration"
|
974 |
msgstr "Mostrar na <strong>Página de Registro</strong>"
|
975 |
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
978 |
msgid "Show the field in User's profile"
|
979 |
msgstr "Mostrar no <strong>Perfil do Usuário</strong>"
|
980 |
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
983 |
-
|
|
|
984 |
msgstr "Mostrar em <strong>Autores & Usuários</strong>"
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
988 |
msgid "Show the field in the search engine"
|
989 |
msgstr "Mostrar no formulário de pesquisa"
|
990 |
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
993 |
msgid "Show the field in the blog"
|
994 |
msgstr "Mostrar no site"
|
995 |
|
996 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
997 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
998 |
msgid "Show the field if the role is at least:"
|
999 |
msgstr "Mostrar se usuário for ao menos:"
|
1000 |
|
1001 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1002 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1003 |
msgid "Anonymous"
|
1004 |
msgstr "Anônimo"
|
1005 |
|
1006 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1007 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1008 |
msgid "Send an email to the admin if the user changes its value"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1012 |
msgid "Clear"
|
1013 |
msgstr "Limpar"
|
1014 |
|
1015 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1016 |
msgid "Invert selection"
|
1017 |
msgstr "Inverter seleção"
|
1018 |
|
1019 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1020 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1021 |
msgstr "Tem certeza que quer excluir os campos e todos os dados informados pelos usuários?"
|
1022 |
|
1023 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1024 |
msgid "WordPress Fields"
|
1025 |
msgstr "Campos WordPress"
|
1026 |
|
1027 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1028 |
msgid "None!"
|
1029 |
msgstr "Nenhum!"
|
1030 |
|
1031 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1033 |
msgid "Order"
|
1034 |
msgstr "Ordem"
|
1035 |
|
1036 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1037 |
msgid "Reset"
|
1038 |
msgstr "Redefinir"
|
1039 |
|
1040 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1041 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1042 |
msgid "select"
|
1043 |
msgstr "Selecionar"
|
1044 |
|
1045 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1046 |
#, php-format
|
1047 |
msgid "Search results for “%s”"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1051 |
#, php-format
|
1052 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1053 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
1054 |
|
1055 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1056 |
msgid "Search Users"
|
1057 |
msgstr "Pesquisar por Usuários"
|
1058 |
|
1059 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1060 |
msgid "« Back to All Users"
|
1061 |
msgstr "« Voltar para Todos os Usuários"
|
1062 |
|
1063 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1064 |
msgid "Users per page"
|
1065 |
msgstr "Usuários por Páginas"
|
1066 |
|
1067 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1068 |
msgid "Apply"
|
1069 |
msgstr "Aplicar"
|
1070 |
|
1071 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1072 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1073 |
-
msgid "Username"
|
1074 |
-
msgstr "Nome de Usuário"
|
1075 |
-
|
1076 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1515
|
1077 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1078 |
-
msgid "E-mail"
|
1079 |
-
msgstr "E-mail"
|
1080 |
-
|
1081 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1082 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1083 |
msgid "Role"
|
1084 |
msgstr "Função"
|
1085 |
|
1086 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1087 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1088 |
msgid "Posts"
|
1089 |
msgstr "Postagens"
|
1090 |
|
1091 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1092 |
msgid "View posts by this author"
|
1093 |
msgstr "Ver postagens desse autor"
|
1094 |
|
1095 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1096 |
#, php-format
|
1097 |
msgid "e-mail: %s"
|
1098 |
msgstr "e-mail: %s"
|
1099 |
|
1100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1101 |
#, fuzzy
|
1102 |
msgid "Change"
|
1103 |
msgstr "Mudar imagem"
|
1104 |
|
1105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1106 |
msgid "Update selected users"
|
1107 |
msgstr "Atualizar Usuários selecionados"
|
1108 |
|
1109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1110 |
msgid "Update"
|
1111 |
msgstr "Atualizar"
|
1112 |
|
1113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1114 |
msgid "OK"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1118 |
msgid "Cancel"
|
1119 |
msgstr ""
|
1120 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-06-19 16:35+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-06-19 16:35+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Diana K. Cury <dianakac@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:453
|
|
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1241
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERRO"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
38 |
msgid "does not match."
|
39 |
msgstr "não coincide."
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "não tem uma sintaxe de e-mail válida."
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "não pode estar vazio."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "não está correto"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
57 |
msgid "YES"
|
58 |
msgstr "SIM"
|
59 |
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
63 |
msgid "NO"
|
64 |
msgstr "NÃO"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:463
|
67 |
msgid "should be"
|
68 |
msgstr "deve ser"
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "should be an image."
|
72 |
msgstr "deve ser uma imagem"
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
75 |
msgid "couldn’t have size less than"
|
76 |
msgstr "não pode ter tamanho inferior a"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
79 |
msgid "couldn’t have length less than"
|
80 |
msgstr "não poder tamanho inferior a"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
83 |
msgid "couldn’t have size different than"
|
84 |
msgstr "não pode ter tamanho diferrente de"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
87 |
msgid "couldn’t have length different than"
|
88 |
msgstr "não pode ter comprimento diferente de"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
91 |
msgid "couldn’t have size more than"
|
92 |
msgstr "não pode ter tamanho maior que"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
95 |
msgid "couldn’t have length more than"
|
96 |
msgstr "não pode ter comprimento maior que"
|
97 |
|
98 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
100 |
msgid "Typed code is not correct."
|
101 |
msgstr "Código digitado não está correto."
|
102 |
|
103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:636
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1528
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1529
|
106 |
+
msgid "Username"
|
107 |
+
msgstr "Nome de Usuário"
|
108 |
+
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:639
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1538
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
|
112 |
+
msgid "E-mail"
|
113 |
+
msgstr "E-mail"
|
114 |
+
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:889
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:302
|
117 |
msgid "Please upload a file with one of the following extensions"
|
118 |
msgstr "Por favor envie um arquivo com uma das seguintes extensões"
|
119 |
|
120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:895
|
121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:308
|
123 |
msgid "Please upload an image with one of the following extensions"
|
124 |
msgstr "Por favor envie uma imagem com uma das seguintes extensões"
|
125 |
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1052
|
127 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
128 |
msgid "Strength indicator"
|
129 |
msgstr "Indicador de força"
|
130 |
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1053
|
132 |
#, fuzzy
|
133 |
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 ! \" ? $ % ^ & )."
|
134 |
msgstr "Dica: A senha deve ter ao menos sete caracteres. Para torná-la mais segura, use maiúsculas, minúsculas, números e simbolos como ! \\\" ? $ % ^ & )."
|
135 |
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1099
|
137 |
msgid "Change image"
|
138 |
msgstr "Mudar imagem"
|
139 |
|
140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1102
|
141 |
msgid "Insert the code:"
|
142 |
msgstr "Inserir o código:"
|
143 |
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1163
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1165
|
146 |
+
msgid "Confirm your registration"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1171
|
150 |
+
msgid "A password will be e-mailed to you."
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1178
|
154 |
+
msgid "← Back"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
158 |
msgid "no fieldset"
|
159 |
msgstr "sem campo"
|
162 |
msgid "All"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:44
|
166 |
msgid "WordPress Fields table emptied"
|
167 |
msgstr "Tabela de campos do WordPress esvaziada"
|
168 |
|
169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:49
|
170 |
msgid "WordPress Fields table deleted"
|
171 |
msgstr "Tabela de campos do WordPress excluída"
|
172 |
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:58
|
174 |
msgid "Extra Fields table emptied"
|
175 |
msgstr "Tabela de Extra Fields esvaziada"
|
176 |
|
177 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:63
|
178 |
msgid "Extra Fields table deleted"
|
179 |
msgstr "Tabela de Extra Fields esxcluída"
|
180 |
|
181 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:72
|
182 |
msgid "Users Data table emptied"
|
183 |
msgstr "Tabela com dados de usuários esvaziada"
|
184 |
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:77
|
186 |
msgid "Users Data table deleted"
|
187 |
msgstr "Tabela com dados de usuários excluída"
|
188 |
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:88
|
190 |
msgid "Options set to default values"
|
191 |
msgstr "Opções definidas para valores padrão"
|
192 |
|
193 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:94
|
194 |
msgid "Options deleted"
|
195 |
msgstr "Opções excluídas"
|
196 |
|
197 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:349
|
198 |
msgid "Options changed"
|
199 |
msgstr "Opções alteradas"
|
200 |
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
202 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
203 |
msgstr "Esta operação vai criar/atualizar todas a opções/tabelas que faltam, continuar?"
|
204 |
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:489
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:754
|
208 |
msgid "Options"
|
209 |
msgstr "Opções"
|
210 |
|
211 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
212 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:442
|
213 |
msgid "Add a new Field"
|
214 |
msgstr "Adicionar Novo Campo"
|
215 |
|
216 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:809
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
220 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:294
|
222 |
msgid "Extra Fields"
|
223 |
msgstr "Campos Adicionais"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
226 |
msgid "Support the Cimy Project"
|
227 |
msgstr "Suporte o Projeto Cimy"
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
|
230 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
231 |
msgstr "Este plugin é o resultado de horas de desenvolvimento para adicionar novos recurso, suportar novas versões do WordPress e corrigir bugs, por favor, faça um donativo ao autor! <br /><br /><small>Tradução para pt_BR: <a href=\"http://www.arquivo.tk\" target=_blank\">Diana K. C</a></small>"
|
232 |
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:516
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1259
|
235 |
msgid "SUCCESSFUL"
|
236 |
msgstr "CONCLUÍDO"
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:856
|
240 |
msgid "Save Changes"
|
241 |
msgstr "Salvar Mudanças"
|
242 |
|
243 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:531
|
244 |
msgid "General"
|
245 |
msgstr "Geral"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:539
|
248 |
msgid "installed is"
|
249 |
msgstr "instalado é"
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
252 |
msgid "OPTIONS DELETED!"
|
253 |
msgstr "OPÇÕES EXCLUÍDAS`"
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
257 |
msgid "Fix the problem"
|
258 |
msgstr "Corrigir problema"
|
259 |
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
261 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
262 |
msgstr "Versões não coincidem! Isto pode ter sido causado porque não desativou e reativou o plugin depois da atualização!"
|
263 |
|
264 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
265 |
msgid "Picture/Avatar upload"
|
266 |
msgstr "Envio de Figura/Avatar"
|
267 |
|
268 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
269 |
msgid "is created and writable"
|
270 |
msgstr "foi criado e pode ser escrito"
|
271 |
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
273 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
274 |
msgstr "não foi criado ou o serviço de hospedam não tem permissão de escrever nele."
|
275 |
|
276 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
277 |
msgid "Show all fields in the welcome email"
|
278 |
msgstr "Mostrar todos os campos no e-mail de boas-vindas"
|
279 |
|
280 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
281 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
282 |
msgstr "O e-mail enviado ao admin e ao usuário que se registrou, mostrará todos os campos."
|
283 |
|
284 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
285 |
msgid "Enable email confirmation"
|
286 |
msgstr "Ativar configuração de e-mail"
|
287 |
|
288 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
289 |
msgid "user that registers should confirm its email address via a link click"
|
290 |
msgstr "Usuários que se registrarem devem confirmar seu e-mail através de link"
|
291 |
|
292 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
|
293 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
294 |
msgstr "<strong>Nota:</strong> se ativar esta opção, todas os itens de envio de arquivos serão destaivados como envio de arquivos, avatar etc."
|
295 |
|
296 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:595
|
297 |
+
#, fuzzy
|
298 |
+
msgid "Enable form confirmation"
|
299 |
+
msgstr "Ativar configuração de e-mail"
|
300 |
+
|
301 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
302 |
+
msgid "a summary of the registration form will be presented to the user"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
306 |
+
msgid "Customize welcome email sent to the new user"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
310 |
+
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
314 |
msgid "Redirect to the source"
|
315 |
msgstr "Redirecionar para a origem"
|
316 |
|
317 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
|
318 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
319 |
msgstr "Depois do registro ou confirmação, o usuário será redirecionado para o endereço onde estava antes de clicar no link para se registrar."
|
320 |
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
|
322 |
msgid "No captcha"
|
323 |
msgstr "Sem CAPTCHA"
|
324 |
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
326 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
327 |
msgstr "Ativar <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
328 |
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
330 |
msgid "Public KEY"
|
331 |
msgstr "Chave pública (Public KEY)"
|
332 |
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
334 |
msgid "Private KEY"
|
335 |
msgstr "Chave privativa (Private KEY)"
|
336 |
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:651
|
338 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
339 |
msgstr "Ativar <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage CAPTCHA</a>"
|
340 |
|
341 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:654
|
342 |
msgid "This captcha is probably weaker, but is easier for users"
|
343 |
msgstr "Este CAPTCHA é mais fraco, porém, mais simples para usuários"
|
344 |
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
346 |
#, php-format
|
347 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
348 |
msgstr "<strong>ATENÇÃO: para ativar este captcha, faça download da extensção<a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">PHP Captcha</a> e extraia em %s</strong>"
|
349 |
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
351 |
msgid "Change login/registration page logo"
|
352 |
msgstr "Mudar logotipo da página de registro"
|
353 |
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:450
|
356 |
msgid "Delete the picture"
|
357 |
msgstr "Excluir figura"
|
358 |
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
360 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
361 |
msgstr "Dimensão máxima recomendada da largura é 328px"
|
362 |
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
364 |
msgid "Database"
|
365 |
msgstr "Banco de Dados"
|
366 |
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:688
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:706
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
371 |
msgid "select action"
|
372 |
msgstr "Selecione uma ação"
|
373 |
|
374 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
375 |
msgid "Default values"
|
376 |
msgstr "Valores padrão"
|
377 |
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:708
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:727
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
382 |
msgid "Delete"
|
383 |
msgstr "Excluir"
|
384 |
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:694
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:749
|
389 |
msgid "NOT PRESENT"
|
390 |
msgstr "NÃO PRESENTE"
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
393 |
msgid "WordPress Fields table"
|
394 |
msgstr "Tabela de Campos do WordPress"
|
395 |
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:726
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:743
|
399 |
msgid "Empty"
|
400 |
msgstr "Esvaziar"
|
401 |
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:719
|
403 |
msgid "Extra Fields table"
|
404 |
msgstr "Tabela de Campos Extras"
|
405 |
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:736
|
407 |
msgid "Users Data table"
|
408 |
msgstr "Tabela de Dados do Usuário"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:746
|
411 |
msgid "all data inserted by users in all and only extra fields"
|
412 |
msgstr "Todos os dados inseridos pelos usuários em todos os campos extras"
|
413 |
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
415 |
msgid "Force tables creation"
|
416 |
msgstr "Forçar criação de tabelas"
|
417 |
|
418 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
419 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
420 |
msgstr "Equivalente a desativar e ativar o plugin, nenhuma outra operação é feita"
|
421 |
|
422 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:763
|
423 |
msgid "User Profile"
|
424 |
msgstr "Perfil do Usuário"
|
425 |
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
427 |
msgid "Extra Fields section title"
|
428 |
msgstr "Títulos para seção de Campos Adicionais"
|
429 |
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
431 |
msgid "Fieldset's titles, separates with comma"
|
432 |
msgstr "Tïtulos da seções, separados por vírgulas"
|
433 |
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
435 |
msgid "example: title1,title2,title3"
|
436 |
msgstr "Ex.: título A, título B, Título C"
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:771
|
439 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
440 |
msgstr "<strong>Nota:</strong> ao mudar a ordem ou remover qualquer campo adicional, é preciso definir onde os campos aparecem novamente"
|
441 |
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:776
|
443 |
msgid "Authors & Users Extended"
|
444 |
msgstr "Autores & Usuários Extendidos"
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:780
|
447 |
msgid "Hide username field"
|
448 |
msgstr "Esconder campo <strong>Nome de Usuário</strong>"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
451 |
msgid "Hide name field"
|
452 |
msgstr "Esconder campo <strong>Nome</strong>"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:791
|
455 |
msgid "Hide email field"
|
456 |
msgstr "Esconder campo <strong>E-mail</strong>"
|
457 |
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:795
|
459 |
msgid "Hide role field"
|
460 |
msgstr "Esconder campo <strong>Função</strong>"
|
461 |
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
|
463 |
msgid "Hide website field"
|
464 |
msgstr "Esconder campo <strong>Website</strong>"
|
465 |
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:803
|
467 |
msgid "Hide n. posts field"
|
468 |
msgstr "Esconder número de postagens"
|
469 |
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:808
|
471 |
msgid "WordPress hidden fields"
|
472 |
msgstr "Campos WordPress"
|
473 |
|
474 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:811
|
475 |
msgid "Show password"
|
476 |
msgstr "Mostrar senha"
|
477 |
|
478 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:815
|
479 |
msgid "Show confirmation password"
|
480 |
msgstr "Mostrar senha de confirmação"
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:819
|
483 |
msgid "Show password strength meter"
|
484 |
msgstr "Mostrar indicador de força da senha"
|
485 |
|
486 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:823
|
487 |
msgid "Show first name"
|
488 |
msgstr "Mostrar Nome"
|
489 |
|
490 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
491 |
msgid "Show last name"
|
492 |
msgstr "Mostrar Sobrenome"
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:831
|
495 |
msgid "Show nickname"
|
496 |
msgstr "Mostrar Apelido"
|
497 |
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:835
|
499 |
msgid "Show website"
|
500 |
msgstr "Mostrar Website"
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:839
|
503 |
msgid "Show AIM"
|
504 |
msgstr "Mostrar AIM"
|
505 |
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:843
|
507 |
msgid "Show Yahoo IM"
|
508 |
msgstr "Mostrar Yahoo IM"
|
509 |
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:847
|
511 |
msgid "Show Jabber / Google Talk"
|
512 |
msgstr "Mostrar Jabber/ Google Talk"
|
513 |
|
514 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:851
|
515 |
msgid "Show Biographical Info"
|
516 |
msgstr "Mostrar Biografia"
|
517 |
|
537 |
msgid "Mismatch"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:221
|
541 |
msgid "Password"
|
542 |
msgstr "Senha"
|
543 |
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:241
|
545 |
msgid "Password confirmation"
|
546 |
msgstr "Confirmação de senha"
|
547 |
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:261
|
549 |
msgid "First name"
|
550 |
msgstr "Nome"
|
551 |
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:281
|
553 |
msgid "Last name"
|
554 |
msgstr "Sobrenome"
|
555 |
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:301
|
557 |
msgid "Nickname"
|
558 |
msgstr "Apelido"
|
559 |
|
560 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:321
|
561 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1548
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
|
563 |
msgid "Website"
|
564 |
msgstr "Website"
|
565 |
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:341
|
567 |
msgid "AIM"
|
568 |
msgstr "AIM"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:361
|
571 |
msgid "Yahoo IM"
|
572 |
msgstr "Yahoo IM"
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:381
|
575 |
msgid "Jabber / Google Talk"
|
576 |
msgstr "Jabber / Google Talk"
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:401
|
579 |
msgid "Biographical Info"
|
580 |
msgstr "Biografias"
|
581 |
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
584 |
msgid "Fields"
|
585 |
msgstr "Campos"
|
586 |
|
|
|
587 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:765
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1421
|
591 |
msgid "Users Extended"
|
592 |
msgstr "Usuários Extendidos"
|
593 |
|
605 |
msgid "File '%s' is not an image."
|
606 |
msgstr "Arquivo '%s' não é uma imagem."
|
607 |
|
608 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:446
|
609 |
msgid "Delete the file"
|
610 |
msgstr "Excluir arquivo"
|
611 |
|
612 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
613 |
msgid "Update the file"
|
614 |
msgstr "Atualizar o arquivo"
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:451
|
617 |
msgid "Update the picture"
|
618 |
msgstr "Atualizar figura"
|
619 |
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:471
|
621 |
msgid "Picture URL:"
|
622 |
msgstr "URL da figura:"
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:712
|
625 |
#, php-format
|
626 |
msgid "%s previous value: %s new value: %s"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:727
|
630 |
#, php-format
|
631 |
msgid "%s (%s) has changed one or more fields"
|
632 |
msgstr ""
|
637 |
msgstr "Novos usuários registrados no site %s:"
|
638 |
|
639 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
|
|
640 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:213
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:289
|
643 |
#, php-format
|
644 |
msgid "Username: %s"
|
645 |
msgstr "Nome de usuário: %s"
|
654 |
msgid "[%s] New User Registration"
|
655 |
msgstr "[%s] Registro de novo usuário"
|
656 |
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
658 |
#, php-format
|
659 |
msgid "[%s] Your username and password"
|
698 |
msgid "An error occurred during the activation"
|
699 |
msgstr "Um erro ocorreu durante a ativação"
|
700 |
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:290
|
704 |
+
#, php-format
|
705 |
+
msgid "Password: %s"
|
706 |
+
msgstr "Senha: %s"
|
707 |
+
|
708 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
709 |
msgid "Invalid activation key."
|
710 |
msgstr "Chave de ativação inválida"
|
733 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
734 |
msgstr "E-mail já usado. Verifique se não há um e-mail de ativação na sua caixa de entrada. Estará disponível em alguns dias se nada fizer."
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
737 |
msgid "Add field"
|
738 |
msgstr "Adicionar Campo"
|
739 |
|
740 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
741 |
msgid "Update field"
|
742 |
msgstr "Atualizar Campo"
|
743 |
|
744 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
|
745 |
msgid "Delete field"
|
746 |
msgstr "Excluir Campo"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
|
749 |
msgid "Delete selected fields"
|
750 |
msgstr "Excluir campos selecionados"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
|
753 |
msgid "Change order"
|
754 |
msgstr "Mudar ordem"
|
755 |
|
756 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
|
758 |
msgid "Min length"
|
759 |
msgstr "Caracteres Mín."
|
760 |
|
761 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
762 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
763 |
msgid "Exact length"
|
764 |
msgstr "Caracteres Exatos"
|
765 |
|
766 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
767 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
768 |
msgid "Max length"
|
769 |
msgstr "Caracteres Máx."
|
770 |
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
|
772 |
msgid "Exact or Max length"
|
773 |
msgstr "Caracteres Exatos ou Máx."
|
774 |
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
776 |
msgid "changed to"
|
777 |
msgstr "mudou para"
|
778 |
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
780 |
msgid "You cannot give an order that misses some numbers"
|
781 |
msgstr "Você não pode dar uma ordem que precisa de alguns números"
|
782 |
|
783 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:210
|
785 |
msgid "Nothing selected"
|
786 |
msgstr "Nada selecionado"
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
789 |
msgid "Field(s)"
|
790 |
msgstr "Campo(s)"
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
793 |
msgid "deleted correctly"
|
794 |
msgstr "excluído(s)"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:239
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1056
|
798 |
msgid "Min size"
|
799 |
msgstr "Tamanho Mín."
|
800 |
|
801 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
802 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
803 |
msgid "Exact size"
|
804 |
msgstr "Tamanho Exato"
|
805 |
|
806 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:241
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
808 |
msgid "Max size"
|
809 |
msgstr "Tamanho Máx."
|
810 |
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
812 |
msgid "Exact or Max size"
|
813 |
msgstr "Tamanho Máx. ou Exato"
|
814 |
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:299
|
816 |
msgid "Name not specified"
|
817 |
msgstr "Nome não especificado"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
820 |
msgid "Name cannot contains spaces"
|
821 |
msgstr "Nome não pode conter espaços"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
|
824 |
msgid "Label not specified"
|
825 |
msgstr "Rótulo não especificado"
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
|
828 |
msgid "not selected (with this type is necessary)"
|
829 |
msgstr "não selecionado (necessário neste tipo de campo)"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
832 |
msgid "If you select"
|
833 |
msgstr "Se você selecionar"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
836 |
msgid "you cannot select Min or Max"
|
837 |
msgstr "você não pode selecionar Mínimo ou Máximo"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:330
|
842 |
msgid "should be in the range of"
|
843 |
msgstr "deve ser no limite de"
|
844 |
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:340
|
|
|
846 |
msgid "Equal TO not specified"
|
847 |
msgstr "<strong>Igual a</strong> não especificado"
|
848 |
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:343
|
850 |
msgid "With checkbox type Equal TO can only be"
|
851 |
msgstr "Com caixas de marcação <strong>Igual a</strong> só pode ser"
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:346
|
854 |
msgid "With radio type Equal TO can only be"
|
855 |
msgstr "Com botões de rádio <strong>Igual a</strong> só pode ser"
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:362
|
858 |
msgid "With checkbox type Value can only be"
|
859 |
msgstr "Com caixas de marcação <strong>Valor</strong> só pode ser"
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:365
|
862 |
msgid "With radio type Value can only be"
|
863 |
msgstr "Com botões de rádio <strong>valor</strong> só podeser"
|
864 |
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
866 |
msgid "Field inserted correctly"
|
867 |
msgstr "Campo inserido!"
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
870 |
msgid "Field #"
|
871 |
msgstr "Campo #"
|
872 |
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
874 |
msgid "updated correctly"
|
875 |
msgstr "atualizado!"
|
876 |
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
878 |
msgid "Name inserted is just in the database, change to another one"
|
879 |
msgstr "Nome inserido já está no banco de dados, escolha outro."
|
880 |
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
882 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
883 |
msgstr "Para adicionar um novo campo, você deve escolher o <strong>Tipo</strong> e o <strong>Rótulo</strong>, opcionalmente o <strong>Valor</strong> e <strong>Descrição</strong>. As <strong>Regras</strong> são aplicadas durante o registro."
|
884 |
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
886 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
887 |
msgstr "<strong>radio</strong> e <strong>checkbox: </strong><em>Valor</em> e <em>Igual A</em> pode ser 'Sim/Verdadeiro' ou 'Não/Falso' ou seja, 'selecionado' ou 'não selecionado'"
|
888 |
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
890 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
891 |
msgstr "<strong>drop-down</strong>: Lista de opções. É necessário informar todos os rótulos. Ex. de sintaxe: Gênero/Masculino,Feminino"
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
894 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
895 |
msgstr "<strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à dimensão (altura ou largura) da miniatura."
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
898 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
899 |
msgstr "<strong>picture-url</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Item <em>Deve ser Igual a:</em> se refere à largura máxima da imagem, a altura será proporcional"
|
900 |
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
902 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
903 |
msgstr "<strong>registration-date</strong>: <em>Deve ser Igual a:</em> se refere a um formato de data."
|
904 |
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
906 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
907 |
msgstr "<strong>avatar</strong>: <strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> é automaticamente definido em 512 pixels"
|
908 |
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
910 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
911 |
msgstr "<strong>file</strong>: Permite carregar um arquivo informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à extensões de arquivo permitidas, separadas por vírgulas. Ex. de sintaxe: zip, pdf, doc"
|
912 |
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:648
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1089
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1533
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
|
919 |
msgid "Name"
|
920 |
msgstr "Nome"
|
921 |
|
|
|
922 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1092
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
928 |
msgid "Value"
|
929 |
msgstr "Valor"
|
930 |
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:639
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1095
|
935 |
msgid "Type"
|
936 |
msgstr "Tipo"
|
937 |
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
942 |
msgid "Label"
|
943 |
msgstr "Rótulo"
|
944 |
|
945 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:672
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
949 |
msgid "Description"
|
950 |
msgstr "Descrição"
|
951 |
|
952 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
954 |
msgid "Rules"
|
955 |
msgstr "Regras"
|
956 |
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
959 |
msgid "Actions"
|
960 |
msgstr "Ações"
|
961 |
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
965 |
msgid "Fieldset"
|
966 |
msgstr "Área do Campo"
|
967 |
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
970 |
msgid "Can be empty"
|
971 |
msgstr "Pode ser vazio"
|
972 |
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
975 |
msgid "Check for E-mail syntax"
|
976 |
msgstr "Verficar sintaxe de e-mail"
|
977 |
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:688
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
980 |
msgid "Can be modified"
|
981 |
msgstr "Pode ser modificado"
|
982 |
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1139
|
985 |
msgid "Can be modified only if empty"
|
986 |
msgstr "Pode ser modificado se vazio"
|
987 |
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
990 |
msgid "Can be modified only by admin"
|
991 |
msgstr "Pode ser modificado apenas por Admin"
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
995 |
msgid "Can be modified only by admin or if empty"
|
996 |
msgstr "Pode ser modificado por Admin ou se vazio"
|
997 |
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:692
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
1000 |
msgid "Cannot be modified"
|
1001 |
msgstr "Não pode ser modificado"
|
1002 |
|
1003 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
1004 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
1005 |
msgid "Should be equal TO"
|
1006 |
msgstr "Deve ser <strong>Igual a</strong>"
|
1007 |
|
1008 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
1010 |
msgid "Case sensitive"
|
1011 |
msgstr "Diferenciar maiúsc./minúsc."
|
1012 |
|
1013 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
1015 |
msgid "Regular Expression"
|
1016 |
msgstr "Expressão Regular"
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1155
|
1020 |
msgid "Show the field in the registration"
|
1021 |
msgstr "Mostrar na <strong>Página de Registro</strong>"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
1025 |
msgid "Show the field in User's profile"
|
1026 |
msgstr "Mostrar no <strong>Perfil do Usuário</strong>"
|
1027 |
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1167
|
1030 |
+
#, fuzzy
|
1031 |
+
msgid "Show the field in Users Extended menu"
|
1032 |
msgstr "Mostrar em <strong>Autores & Usuários</strong>"
|
1033 |
|
1034 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1170
|
1036 |
msgid "Show the field in the search engine"
|
1037 |
msgstr "Mostrar no formulário de pesquisa"
|
1038 |
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
1040 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1173
|
1041 |
msgid "Show the field in the blog"
|
1042 |
msgstr "Mostrar no site"
|
1043 |
|
1044 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:723
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1176
|
1046 |
msgid "Show the field if the role is at least:"
|
1047 |
msgstr "Mostrar se usuário for ao menos:"
|
1048 |
|
1049 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:725
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1051 |
msgid "Anonymous"
|
1052 |
msgstr "Anônimo"
|
1053 |
|
1054 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1184
|
1056 |
+
msgid "User has 'view_cimy_extra_fields' capability"
|
1057 |
+
msgstr ""
|
1058 |
+
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:736
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
1061 |
msgid "Send an email to the admin if the user changes its value"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:738
|
1065 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1197
|
1066 |
+
#, fuzzy
|
1067 |
+
msgid "Advanced options"
|
1068 |
+
msgstr "Ações"
|
1069 |
+
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
1071 |
msgid "Clear"
|
1072 |
msgstr "Limpar"
|
1073 |
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
|
1075 |
msgid "Invert selection"
|
1076 |
msgstr "Inverter seleção"
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
|
1079 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1080 |
msgstr "Tem certeza que quer excluir os campos e todos os dados informados pelos usuários?"
|
1081 |
|
1082 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1083 |
msgid "WordPress Fields"
|
1084 |
msgstr "Campos WordPress"
|
1085 |
|
1086 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
1087 |
msgid "None!"
|
1088 |
msgstr "Nenhum!"
|
1089 |
|
1090 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
|
1091 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1077
|
1092 |
msgid "Order"
|
1093 |
msgstr "Ordem"
|
1094 |
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1201
|
1096 |
msgid "Reset"
|
1097 |
msgstr "Redefinir"
|
1098 |
|
1099 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1288
|
1100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1903
|
1101 |
msgid "select"
|
1102 |
msgstr "Selecionar"
|
1103 |
|
1104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1429
|
1105 |
#, php-format
|
1106 |
msgid "Search results for “%s”"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
|
1110 |
#, php-format
|
1111 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1112 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
1113 |
|
1114 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1465
|
1115 |
msgid "Search Users"
|
1116 |
msgstr "Pesquisar por Usuários"
|
1117 |
|
1118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
1119 |
msgid "« Back to All Users"
|
1120 |
msgstr "« Voltar para Todos os Usuários"
|
1121 |
|
1122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1501
|
1123 |
msgid "Users per page"
|
1124 |
msgstr "Usuários por Páginas"
|
1125 |
|
1126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1127 |
msgid "Apply"
|
1128 |
msgstr "Aplicar"
|
1129 |
|
1130 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1543
|
1131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1132 |
msgid "Role"
|
1133 |
msgstr "Função"
|
1134 |
|
1135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1553
|
1136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
|
1137 |
msgid "Posts"
|
1138 |
msgstr "Postagens"
|
1139 |
|
1140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1691
|
1141 |
msgid "View posts by this author"
|
1142 |
msgstr "Ver postagens desse autor"
|
1143 |
|
1144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1725
|
1145 |
#, php-format
|
1146 |
msgid "e-mail: %s"
|
1147 |
msgstr "e-mail: %s"
|
1148 |
|
1149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1847
|
1150 |
#, fuzzy
|
1151 |
msgid "Change"
|
1152 |
msgstr "Mudar imagem"
|
1153 |
|
1154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1872
|
1155 |
msgid "Update selected users"
|
1156 |
msgstr "Atualizar Usuários selecionados"
|
1157 |
|
1158 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1159 |
msgid "Update"
|
1160 |
msgstr "Atualizar"
|
1161 |
|
1162 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1908
|
1163 |
msgid "OK"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1909
|
1167 |
msgid "Cancel"
|
1168 |
msgstr ""
|
1169 |
|
langs/cimy_uef-ru_RU.mo
CHANGED
Binary file
|
langs/cimy_uef-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: mikolka <mikolka.info@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,116 +16,145 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "ОШИБКА"
|
36 |
|
37 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "не верно введен email."
|
44 |
|
45 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "не может быть пустым."
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "не верно"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
55 |
msgid "YES"
|
56 |
msgstr "ДА"
|
57 |
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
59 |
msgid "NO"
|
60 |
msgstr "НЕТ"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
msgid "should be"
|
64 |
msgstr "должно быть"
|
65 |
|
66 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
67 |
msgid "should be an image."
|
68 |
msgstr "должно быть изображение."
|
69 |
|
70 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "не может иметь размер менее чем"
|
73 |
|
74 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "не может иметь длину менее чем"
|
77 |
|
78 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "не может иметь размер отличный от"
|
81 |
|
82 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "не может иметь длину отличную от"
|
85 |
|
86 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "имеет размер больше чем"
|
89 |
|
90 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "имеет длину больше чем"
|
93 |
|
94 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
95 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
104 |
|
105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
110 |
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
113 |
msgid "Strength indicator"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
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 ! \" ? $ % ^ & )."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
121 |
#, fuzzy
|
122 |
msgid "Change image"
|
123 |
msgstr "Изменить порядок"
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
126 |
msgid "Insert the code:"
|
127 |
msgstr ""
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
130 |
#, fuzzy
|
131 |
msgid "no fieldset"
|
@@ -135,343 +164,359 @@ msgstr "Пункты полей"
|
|
135 |
msgid "All"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
139 |
msgid "WordPress Fields table emptied"
|
140 |
msgstr "Таблица WordPress Fields очищена"
|
141 |
|
142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
143 |
msgid "WordPress Fields table deleted"
|
144 |
msgstr "Таблица WordPress Fields удалена"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
147 |
msgid "Extra Fields table emptied"
|
148 |
msgstr "Таблица Extra Fields очищена"
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
151 |
msgid "Extra Fields table deleted"
|
152 |
msgstr "Таблица Extra Fields удалена"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
155 |
msgid "Users Data table emptied"
|
156 |
msgstr "Таблица пользовательских данных очищена"
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
159 |
msgid "Users Data table deleted"
|
160 |
msgstr "Таблица пользовательских данных удалена"
|
161 |
|
162 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
163 |
msgid "Options set to default values"
|
164 |
msgstr "Установлены настройки по-умолчанию"
|
165 |
|
166 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
167 |
msgid "Options deleted"
|
168 |
msgstr "Настройки удалены"
|
169 |
|
170 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
171 |
msgid "Options changed"
|
172 |
msgstr "Настройки изменены"
|
173 |
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
175 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
180 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
181 |
msgid "Options"
|
182 |
msgstr "Настройки"
|
183 |
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
185 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
186 |
msgid "Add a new Field"
|
187 |
msgstr "Добавить новое поле"
|
188 |
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
190 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
191 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
195 |
msgid "Extra Fields"
|
196 |
msgstr "Extra Fields"
|
197 |
|
198 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
199 |
msgid "Support the Cimy Project"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
203 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
207 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
208 |
msgid "SUCCESSFUL"
|
209 |
msgstr "УСПЕШНО"
|
210 |
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
213 |
msgid "Save Changes"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
217 |
msgid "General"
|
218 |
msgstr "Главное"
|
219 |
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
221 |
msgid "installed is"
|
222 |
msgstr "установлено"
|
223 |
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
225 |
msgid "OPTIONS DELETED!"
|
226 |
msgstr "НАСТРОЙКИ УДАЛЕНЫ!"
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
230 |
msgid "Fix the problem"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
234 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
235 |
msgstr "ВЕРСИИ НЕ СОВПАДАЮТ! Это из-за того, что Вы не деактивировали, а затем активировали плагин после обновления! Могут возникнуть проблемы..."
|
236 |
|
237 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
238 |
msgid "Picture/Avatar upload"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
242 |
msgid "is created and writable"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
246 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
250 |
#, fuzzy
|
251 |
msgid "Show all fields in the welcome email"
|
252 |
msgstr "Показывать поле при регистрации"
|
253 |
|
254 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
255 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
259 |
msgid "Enable email confirmation"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
263 |
msgid "user that registers should confirm its email address via a link click"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
267 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
msgid "Redirect to the source"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
275 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
279 |
msgid "No captcha"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
283 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
287 |
msgid "Public KEY"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
291 |
msgid "Private KEY"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
295 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
299 |
msgid "This captcha is probably weaker, but is easier for users"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
303 |
#, php-format
|
304 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
308 |
msgid "Change login/registration page logo"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
313 |
#, fuzzy
|
314 |
msgid "Delete the picture"
|
315 |
msgstr "Удалить поле"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
318 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
322 |
msgid "Database"
|
323 |
msgstr "База данных"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
327 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
328 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
329 |
msgid "select action"
|
330 |
msgstr "выберите действие"
|
331 |
|
332 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
333 |
msgid "Default values"
|
334 |
msgstr "Значения по-умолчанию"
|
335 |
|
336 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
339 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
340 |
msgid "Delete"
|
341 |
msgstr "Удалить"
|
342 |
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
344 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
347 |
msgid "NOT PRESENT"
|
348 |
msgstr "НЕ СУЩЕСТВУЕТ"
|
349 |
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
351 |
msgid "WordPress Fields table"
|
352 |
msgstr "Таблица WordPress Fields"
|
353 |
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
357 |
msgid "Empty"
|
358 |
msgstr "Очистить"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
361 |
msgid "Extra Fields table"
|
362 |
msgstr "Таблица Extra Fields"
|
363 |
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
365 |
msgid "Users Data table"
|
366 |
msgstr "Таблица данных пользователей"
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
369 |
msgid "all data inserted by users in all and only extra fields"
|
370 |
msgstr "все данные, вставленные пользователями во все и только в дополнительные поля"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
373 |
msgid "Force tables creation"
|
374 |
msgstr "Force tables creation"
|
375 |
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
377 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
381 |
msgid "User Profile"
|
382 |
msgstr "Профиль пользователя"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
385 |
#, fuzzy
|
386 |
msgid "Extra Fields section title"
|
387 |
msgstr "Таблица Extra Fields"
|
388 |
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
390 |
msgid "Fieldset's titles, separates with comma"
|
391 |
msgstr "Названия полей через запятую"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
394 |
msgid "example: title1,title2,title3"
|
395 |
msgstr "пример: заголовок1,заголовок2, заголовок3"
|
396 |
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
398 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
402 |
msgid "Authors & Users Extended"
|
403 |
msgstr "Авторы и Продвинутые пользователи"
|
404 |
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
406 |
msgid "Hide username field"
|
407 |
msgstr "Скрыть поле с именем пользователя"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
410 |
msgid "Hide name field"
|
411 |
msgstr "Скрыть поле с именем"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
414 |
msgid "Hide email field"
|
415 |
msgstr "Скрыть поле с email"
|
416 |
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
418 |
#, fuzzy
|
419 |
msgid "Hide role field"
|
420 |
msgstr "Скрыть поле с именем"
|
421 |
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
423 |
msgid "Hide website field"
|
424 |
msgstr "Скрыть поле с адресом сайта"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
427 |
msgid "Hide n. posts field"
|
428 |
msgstr "Скрыть поле с № постов"
|
429 |
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
431 |
msgid "WordPress hidden fields"
|
432 |
msgstr "Скрытые поля WordPress"
|
433 |
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
435 |
msgid "Show password"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
439 |
msgid "Show confirmation password"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
443 |
msgid "Show password strength meter"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
447 |
msgid "Show first name"
|
448 |
msgstr "Показать имя"
|
449 |
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
451 |
msgid "Show last name"
|
452 |
msgstr "Показать фамилию"
|
453 |
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
455 |
msgid "Show nickname"
|
456 |
msgstr "Показать ник"
|
457 |
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
459 |
msgid "Show website"
|
460 |
msgstr "Показать адрес сайта"
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
463 |
msgid "Show AIM"
|
464 |
msgstr "Показать AIM"
|
465 |
|
466 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
467 |
msgid "Show Yahoo IM"
|
468 |
msgstr "Показать Yahoo IM"
|
469 |
|
470 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
471 |
msgid "Show Jabber / Google Talk"
|
472 |
msgstr "Показать Jabber / Google Talk"
|
473 |
|
474 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
475 |
msgid "Show Biographical Info"
|
476 |
msgstr ""
|
477 |
|
@@ -497,62 +542,62 @@ msgstr ""
|
|
497 |
msgid "Mismatch"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
501 |
msgid "Password"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
505 |
msgid "Password confirmation"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
509 |
#, fuzzy
|
510 |
msgid "First name"
|
511 |
msgstr "Показать имя"
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
514 |
#, fuzzy
|
515 |
msgid "Last name"
|
516 |
msgstr "Показать фамилию"
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
519 |
#, fuzzy
|
520 |
msgid "Nickname"
|
521 |
msgstr "Имя"
|
522 |
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
525 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
526 |
msgid "Website"
|
527 |
msgstr "Адрес сайта"
|
528 |
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
530 |
msgid "AIM"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
534 |
#, fuzzy
|
535 |
msgid "Yahoo IM"
|
536 |
msgstr "Показать Yahoo IM"
|
537 |
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
539 |
#, fuzzy
|
540 |
msgid "Jabber / Google Talk"
|
541 |
msgstr "Показать Jabber / Google Talk"
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
544 |
msgid "Biographical Info"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
549 |
msgid "Fields"
|
550 |
msgstr "Поля"
|
551 |
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:752
|
553 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
554 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
556 |
#, fuzzy
|
557 |
msgid "Users Extended"
|
558 |
msgstr "Список Авторов и продвинутых пользователей"
|
@@ -571,31 +616,31 @@ msgstr ""
|
|
571 |
msgid "File '%s' is not an image."
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
575 |
#, fuzzy
|
576 |
msgid "Delete the file"
|
577 |
msgstr "Удалить поле"
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
580 |
#, fuzzy
|
581 |
msgid "Update the file"
|
582 |
msgstr "Обновить поле"
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
585 |
#, fuzzy
|
586 |
msgid "Update the picture"
|
587 |
msgstr "Обновить поле"
|
588 |
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
590 |
msgid "Picture URL:"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
594 |
#, php-format
|
595 |
msgid "%s previous value: %s new value: %s"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
599 |
#, php-format
|
600 |
msgid "%s (%s) has changed one or more fields"
|
601 |
msgstr ""
|
@@ -606,8 +651,9 @@ msgid "New user registration on your site %s:"
|
|
606 |
msgstr ""
|
607 |
|
608 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
610 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
|
|
|
|
611 |
#, fuzzy, php-format
|
612 |
msgid "Username: %s"
|
613 |
msgstr "Имя пользователя"
|
@@ -622,12 +668,6 @@ msgstr "e-mail: %s"
|
|
622 |
msgid "[%s] New User Registration"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
627 |
-
#, php-format
|
628 |
-
msgid "Password: %s"
|
629 |
-
msgstr ""
|
630 |
-
|
631 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
632 |
#, php-format
|
633 |
msgid "[%s] Your username and password"
|
@@ -666,6 +706,13 @@ msgstr ""
|
|
666 |
msgid "An error occurred during the activation"
|
667 |
msgstr ""
|
668 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
669 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
670 |
msgid "Invalid activation key."
|
671 |
msgstr ""
|
@@ -694,447 +741,448 @@ msgstr ""
|
|
694 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
698 |
msgid "Add field"
|
699 |
msgstr "Добавить поле"
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
702 |
msgid "Update field"
|
703 |
msgstr "Обновить поле"
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
706 |
msgid "Delete field"
|
707 |
msgstr "Удалить поле"
|
708 |
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
710 |
msgid "Delete selected fields"
|
711 |
msgstr "Удалить выбранные поля"
|
712 |
|
713 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
714 |
msgid "Change order"
|
715 |
msgstr "Изменить порядок"
|
716 |
|
717 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
719 |
msgid "Min length"
|
720 |
msgstr "Мин длина"
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
723 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
724 |
msgid "Exact length"
|
725 |
msgstr "Точная длина"
|
726 |
|
727 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
729 |
msgid "Max length"
|
730 |
msgstr "Макс длина"
|
731 |
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
733 |
msgid "Exact or Max length"
|
734 |
msgstr "Точная или Макс длина"
|
735 |
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
737 |
msgid "changed to"
|
738 |
msgstr "изменена на"
|
739 |
|
740 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
741 |
msgid "You cannot give an order that misses some numbers"
|
742 |
msgstr "Вы не можете установить порядок, который пропускает некоторые числа"
|
743 |
|
744 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
745 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
746 |
msgid "Nothing selected"
|
747 |
msgstr "Ничего не выбрано"
|
748 |
|
749 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
750 |
msgid "Field(s)"
|
751 |
msgstr "Поле(я)"
|
752 |
|
753 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
754 |
msgid "deleted correctly"
|
755 |
msgstr "удалены правильно"
|
756 |
|
757 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
758 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
759 |
msgid "Min size"
|
760 |
msgstr "Мин размер"
|
761 |
|
762 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
763 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
764 |
msgid "Exact size"
|
765 |
msgstr "Точный размер"
|
766 |
|
767 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
768 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
769 |
msgid "Max size"
|
770 |
msgstr "Макс размер"
|
771 |
|
772 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
773 |
msgid "Exact or Max size"
|
774 |
msgstr "Точный или Макс размер"
|
775 |
|
776 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
777 |
msgid "Name not specified"
|
778 |
msgstr "Имя не задано"
|
779 |
|
780 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
781 |
msgid "Name cannot contains spaces"
|
782 |
msgstr "Имя не должно содержать пробелов"
|
783 |
|
784 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
785 |
msgid "Label not specified"
|
786 |
msgstr "Метка не выбрана"
|
787 |
|
788 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
789 |
msgid "not selected (with this type is necessary)"
|
790 |
msgstr "не выбрано (с этим типом необходимо)"
|
791 |
|
792 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
793 |
msgid "If you select"
|
794 |
msgstr "Если Вы выбрали"
|
795 |
|
796 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
797 |
msgid "you cannot select Min or Max"
|
798 |
msgstr "Вы не можете выбрать Мин или Макс"
|
799 |
|
800 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
801 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
803 |
msgid "should be in the range of"
|
804 |
msgstr "должно быть в диапозоне"
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
808 |
msgid "Equal TO not specified"
|
809 |
msgstr "Равная ЧЕМУ не выбрано"
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
msgid "With checkbox type Equal TO can only be"
|
813 |
msgstr "Может быть только с флажком выбора типа Равная ЧЕМУ"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
msgid "With radio type Equal TO can only be"
|
817 |
msgstr "Может быть только с переключателем выбора типа Равная ЧЕМУ"
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
820 |
msgid "With checkbox type Value can only be"
|
821 |
msgstr "Может быть только с флажками выбора типа Значение"
|
822 |
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
msgid "With radio type Value can only be"
|
825 |
msgstr "Может быть только с переключателем выбора типа Значение"
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
msgid "Field inserted correctly"
|
829 |
msgstr "Поле вставлено корректно"
|
830 |
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
832 |
msgid "Field #"
|
833 |
msgstr "Поле #"
|
834 |
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
msgid "updated correctly"
|
837 |
msgstr "обновлено корректно"
|
838 |
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
840 |
msgid "Name inserted is just in the database, change to another one"
|
841 |
msgstr "Вставляемое имя уже есть в БД, выберите другое"
|
842 |
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
844 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
845 |
msgstr "Для добавления нового поля вам необходимо задать имя, тип и метку; значение и описание. Правила применяются в процессе регистрации пользователя."
|
846 |
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
849 |
msgstr "С <strong>переключателем(radio)</strong> и <strong>флажками(checkbox)</strong>: <em>Значение</em> и <em>равно ЧЕМУ</em> может быть либо 'Yes', либо 'No' - это означает 'выбрано' или 'не выбрано'"
|
850 |
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
852 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
853 |
msgstr "С <strong>выпадающим списком(drop-down)</strong>: вы можете добавить все опции в метку, например: метка/элемент1,элемент2,элемент3"
|
854 |
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
857 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
858 |
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
860 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
861 |
msgstr "С <strong>picture-url</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; <em>равная ЧЕМУ</em> подразумевает max ширину для превью (высота будет установлена пропорционально)"
|
862 |
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
864 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
865 |
msgstr "С <strong>датой регистрации(registration-date)</strong>: <em>равна ЧЕМУ</em> подразумевает формат даты и времени"
|
866 |
|
867 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
868 |
#, fuzzy
|
869 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
870 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
871 |
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
873 |
#, fuzzy
|
874 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
875 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
876 |
|
877 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
882 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
883 |
msgid "Name"
|
884 |
msgstr "Имя"
|
885 |
|
886 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
887 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
891 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
892 |
msgid "Value"
|
893 |
msgstr "Значение"
|
894 |
|
895 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
898 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
899 |
msgid "Type"
|
900 |
msgstr "Тип"
|
901 |
|
902 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
903 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
906 |
msgid "Label"
|
907 |
msgstr "Метка"
|
908 |
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
910 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
911 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
912 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
913 |
msgid "Description"
|
914 |
msgstr "Описание"
|
915 |
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
917 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
918 |
msgid "Rules"
|
919 |
msgstr "Правила"
|
920 |
|
921 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
922 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
923 |
msgid "Actions"
|
924 |
msgstr "Действия"
|
925 |
|
926 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
927 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
929 |
#, fuzzy
|
930 |
msgid "Fieldset"
|
931 |
msgstr "Поля"
|
932 |
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
msgid "Can be empty"
|
936 |
msgstr "Может быть пустым"
|
937 |
|
938 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
msgid "Check for E-mail syntax"
|
941 |
msgstr "Проверка синтаксиса E-mail"
|
942 |
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
944 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
945 |
msgid "Can be modified"
|
946 |
msgstr "Может быть изменено"
|
947 |
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
950 |
msgid "Can be modified only if empty"
|
951 |
msgstr "Может быть изменено только если пустое"
|
952 |
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
955 |
msgid "Can be modified only by admin"
|
956 |
msgstr "Может быть изменено только админом"
|
957 |
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
msgid "Can be modified only by admin or if empty"
|
961 |
msgstr "Может быть изменено только админом или если пустое"
|
962 |
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
msgid "Cannot be modified"
|
966 |
msgstr "Не может быть изменено"
|
967 |
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
970 |
msgid "Should be equal TO"
|
971 |
msgstr "Долднадолжно быть равно ЧЕМУ"
|
972 |
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
975 |
msgid "Case sensitive"
|
976 |
msgstr "Чуствительность к регистру"
|
977 |
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
979 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
980 |
msgid "Regular Expression"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
984 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
985 |
msgid "Show the field in the registration"
|
986 |
msgstr "Показывать поле при регистрации"
|
987 |
|
988 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
989 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
990 |
msgid "Show the field in User's profile"
|
991 |
msgstr "Показывать поле в профиле пользователя"
|
992 |
|
993 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
994 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
995 |
-
|
|
|
996 |
msgstr "Показывать поле в меню A&продвинутых П"
|
997 |
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1000 |
#, fuzzy
|
1001 |
msgid "Show the field in the search engine"
|
1002 |
msgstr "Показывать поле при регистрации"
|
1003 |
|
1004 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1005 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1006 |
#, fuzzy
|
1007 |
msgid "Show the field in the blog"
|
1008 |
msgstr "Показывать поле при регистрации"
|
1009 |
|
1010 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1011 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1012 |
#, fuzzy
|
1013 |
msgid "Show the field if the role is at least:"
|
1014 |
msgstr "Показывать поле при регистрации"
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1018 |
msgid "Anonymous"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1023 |
msgid "Send an email to the admin if the user changes its value"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1027 |
msgid "Clear"
|
1028 |
msgstr "Очистить"
|
1029 |
|
1030 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1031 |
msgid "Invert selection"
|
1032 |
msgstr "Инветировать выбор"
|
1033 |
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1035 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1036 |
msgstr "Вы действительно хотите удалить поле(я) и данные вставленные в них пользователями?"
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1039 |
msgid "WordPress Fields"
|
1040 |
msgstr "WordPress Fields"
|
1041 |
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1043 |
msgid "None!"
|
1044 |
msgstr "Нет!"
|
1045 |
|
1046 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1047 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1048 |
msgid "Order"
|
1049 |
msgstr "Порядок"
|
1050 |
|
1051 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1052 |
msgid "Reset"
|
1053 |
msgstr "Сброс"
|
1054 |
|
1055 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1056 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1057 |
#, fuzzy
|
1058 |
msgid "select"
|
1059 |
msgstr "Удалить"
|
1060 |
|
1061 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1062 |
#, php-format
|
1063 |
msgid "Search results for “%s”"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1067 |
#, php-format
|
1068 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1072 |
msgid "Search Users"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1076 |
msgid "« Back to All Users"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1080 |
#, fuzzy
|
1081 |
msgid "Users per page"
|
1082 |
msgstr "Таблица данных пользователей"
|
1083 |
|
1084 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1085 |
msgid "Apply"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1089 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1090 |
-
msgid "Username"
|
1091 |
-
msgstr "Имя пользователя"
|
1092 |
-
|
1093 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1515
|
1094 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1095 |
-
msgid "E-mail"
|
1096 |
-
msgstr "E-mail"
|
1097 |
-
|
1098 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1099 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1100 |
#, fuzzy
|
1101 |
msgid "Role"
|
1102 |
msgstr "Правила"
|
1103 |
|
1104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1106 |
msgid "Posts"
|
1107 |
msgstr "Сообщения"
|
1108 |
|
1109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1110 |
msgid "View posts by this author"
|
1111 |
msgstr "Просмотреть сообщения этого автора"
|
1112 |
|
1113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1114 |
#, php-format
|
1115 |
msgid "e-mail: %s"
|
1116 |
msgstr "e-mail: %s"
|
1117 |
|
1118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1119 |
#, fuzzy
|
1120 |
msgid "Change"
|
1121 |
msgstr "Изменить порядок"
|
1122 |
|
1123 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1124 |
#, fuzzy
|
1125 |
msgid "Update selected users"
|
1126 |
msgstr "Удалить выбранные поля"
|
1127 |
|
1128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1129 |
#, fuzzy
|
1130 |
msgid "Update"
|
1131 |
msgstr "Обновить поле"
|
1132 |
|
1133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1134 |
msgid "OK"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1138 |
msgid "Cancel"
|
1139 |
msgstr ""
|
1140 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-06-19 16:35+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-06-19 16:35+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: mikolka <mikolka.info@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:453
|
|
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1241
|
34 |
msgid "ERROR"
|
35 |
msgstr "ОШИБКА"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "не верно введен email."
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "не может быть пустым."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "не верно"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
57 |
msgid "YES"
|
58 |
msgstr "ДА"
|
59 |
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
63 |
msgid "NO"
|
64 |
msgstr "НЕТ"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:463
|
67 |
msgid "should be"
|
68 |
msgstr "должно быть"
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "should be an image."
|
72 |
msgstr "должно быть изображение."
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
75 |
msgid "couldn’t have size less than"
|
76 |
msgstr "не может иметь размер менее чем"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
79 |
msgid "couldn’t have length less than"
|
80 |
msgstr "не может иметь длину менее чем"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
83 |
msgid "couldn’t have size different than"
|
84 |
msgstr "не может иметь размер отличный от"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
87 |
msgid "couldn’t have length different than"
|
88 |
msgstr "не может иметь длину отличную от"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
91 |
msgid "couldn’t have size more than"
|
92 |
msgstr "имеет размер больше чем"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
95 |
msgid "couldn’t have length more than"
|
96 |
msgstr "имеет длину больше чем"
|
97 |
|
98 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
100 |
msgid "Typed code is not correct."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:636
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1528
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1529
|
106 |
+
msgid "Username"
|
107 |
+
msgstr "Имя пользователя"
|
108 |
+
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:639
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1538
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
|
112 |
+
msgid "E-mail"
|
113 |
+
msgstr "E-mail"
|
114 |
+
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:889
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:302
|
117 |
#, fuzzy
|
118 |
msgid "Please upload a file with one of the following extensions"
|
119 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
120 |
|
121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:895
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:308
|
124 |
msgid "Please upload an image with one of the following extensions"
|
125 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1052
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
129 |
msgid "Strength indicator"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1053
|
133 |
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 ! \" ? $ % ^ & )."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1099
|
137 |
#, fuzzy
|
138 |
msgid "Change image"
|
139 |
msgstr "Изменить порядок"
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1102
|
142 |
msgid "Insert the code:"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1163
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1165
|
147 |
+
msgid "Confirm your registration"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1171
|
151 |
+
msgid "A password will be e-mailed to you."
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1178
|
155 |
+
msgid "← Back"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
159 |
#, fuzzy
|
160 |
msgid "no fieldset"
|
164 |
msgid "All"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:44
|
168 |
msgid "WordPress Fields table emptied"
|
169 |
msgstr "Таблица WordPress Fields очищена"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:49
|
172 |
msgid "WordPress Fields table deleted"
|
173 |
msgstr "Таблица WordPress Fields удалена"
|
174 |
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:58
|
176 |
msgid "Extra Fields table emptied"
|
177 |
msgstr "Таблица Extra Fields очищена"
|
178 |
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:63
|
180 |
msgid "Extra Fields table deleted"
|
181 |
msgstr "Таблица Extra Fields удалена"
|
182 |
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:72
|
184 |
msgid "Users Data table emptied"
|
185 |
msgstr "Таблица пользовательских данных очищена"
|
186 |
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:77
|
188 |
msgid "Users Data table deleted"
|
189 |
msgstr "Таблица пользовательских данных удалена"
|
190 |
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:88
|
192 |
msgid "Options set to default values"
|
193 |
msgstr "Установлены настройки по-умолчанию"
|
194 |
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:94
|
196 |
msgid "Options deleted"
|
197 |
msgstr "Настройки удалены"
|
198 |
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:349
|
200 |
msgid "Options changed"
|
201 |
msgstr "Настройки изменены"
|
202 |
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
204 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:489
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:754
|
210 |
msgid "Options"
|
211 |
msgstr "Настройки"
|
212 |
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
214 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:442
|
215 |
msgid "Add a new Field"
|
216 |
msgstr "Добавить новое поле"
|
217 |
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:809
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
222 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
223 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:294
|
224 |
msgid "Extra Fields"
|
225 |
msgstr "Extra Fields"
|
226 |
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
228 |
msgid "Support the Cimy Project"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
|
232 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:516
|
236 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1259
|
237 |
msgid "SUCCESSFUL"
|
238 |
msgstr "УСПЕШНО"
|
239 |
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:856
|
242 |
msgid "Save Changes"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:531
|
246 |
msgid "General"
|
247 |
msgstr "Главное"
|
248 |
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:539
|
250 |
msgid "installed is"
|
251 |
msgstr "установлено"
|
252 |
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
254 |
msgid "OPTIONS DELETED!"
|
255 |
msgstr "НАСТРОЙКИ УДАЛЕНЫ!"
|
256 |
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
258 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
259 |
msgid "Fix the problem"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
263 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
264 |
msgstr "ВЕРСИИ НЕ СОВПАДАЮТ! Это из-за того, что Вы не деактивировали, а затем активировали плагин после обновления! Могут возникнуть проблемы..."
|
265 |
|
266 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
267 |
msgid "Picture/Avatar upload"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
271 |
msgid "is created and writable"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
275 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
279 |
#, fuzzy
|
280 |
msgid "Show all fields in the welcome email"
|
281 |
msgstr "Показывать поле при регистрации"
|
282 |
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
284 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
288 |
msgid "Enable email confirmation"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
292 |
msgid "user that registers should confirm its email address via a link click"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
|
296 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:595
|
300 |
+
msgid "Enable form confirmation"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
304 |
+
msgid "a summary of the registration form will be presented to the user"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
308 |
+
msgid "Customize welcome email sent to the new user"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
312 |
+
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
316 |
msgid "Redirect to the source"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
|
320 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
|
324 |
msgid "No captcha"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
328 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
332 |
msgid "Public KEY"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
336 |
msgid "Private KEY"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:651
|
340 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:654
|
344 |
msgid "This captcha is probably weaker, but is easier for users"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
348 |
#, php-format
|
349 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
353 |
msgid "Change login/registration page logo"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:450
|
358 |
#, fuzzy
|
359 |
msgid "Delete the picture"
|
360 |
msgstr "Удалить поле"
|
361 |
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
363 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
367 |
msgid "Database"
|
368 |
msgstr "База данных"
|
369 |
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:688
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:706
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
374 |
msgid "select action"
|
375 |
msgstr "выберите действие"
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
378 |
msgid "Default values"
|
379 |
msgstr "Значения по-умолчанию"
|
380 |
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:708
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:727
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
385 |
msgid "Delete"
|
386 |
msgstr "Удалить"
|
387 |
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:694
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:749
|
392 |
msgid "NOT PRESENT"
|
393 |
msgstr "НЕ СУЩЕСТВУЕТ"
|
394 |
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
396 |
msgid "WordPress Fields table"
|
397 |
msgstr "Таблица WordPress Fields"
|
398 |
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:726
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:743
|
402 |
msgid "Empty"
|
403 |
msgstr "Очистить"
|
404 |
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:719
|
406 |
msgid "Extra Fields table"
|
407 |
msgstr "Таблица Extra Fields"
|
408 |
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:736
|
410 |
msgid "Users Data table"
|
411 |
msgstr "Таблица данных пользователей"
|
412 |
|
413 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:746
|
414 |
msgid "all data inserted by users in all and only extra fields"
|
415 |
msgstr "все данные, вставленные пользователями во все и только в дополнительные поля"
|
416 |
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
418 |
msgid "Force tables creation"
|
419 |
msgstr "Force tables creation"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
422 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:763
|
426 |
msgid "User Profile"
|
427 |
msgstr "Профиль пользователя"
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
430 |
#, fuzzy
|
431 |
msgid "Extra Fields section title"
|
432 |
msgstr "Таблица Extra Fields"
|
433 |
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
435 |
msgid "Fieldset's titles, separates with comma"
|
436 |
msgstr "Названия полей через запятую"
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
439 |
msgid "example: title1,title2,title3"
|
440 |
msgstr "пример: заголовок1,заголовок2, заголовок3"
|
441 |
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:771
|
443 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:776
|
447 |
msgid "Authors & Users Extended"
|
448 |
msgstr "Авторы и Продвинутые пользователи"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:780
|
451 |
msgid "Hide username field"
|
452 |
msgstr "Скрыть поле с именем пользователя"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
455 |
msgid "Hide name field"
|
456 |
msgstr "Скрыть поле с именем"
|
457 |
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:791
|
459 |
msgid "Hide email field"
|
460 |
msgstr "Скрыть поле с email"
|
461 |
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:795
|
463 |
#, fuzzy
|
464 |
msgid "Hide role field"
|
465 |
msgstr "Скрыть поле с именем"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
|
468 |
msgid "Hide website field"
|
469 |
msgstr "Скрыть поле с адресом сайта"
|
470 |
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:803
|
472 |
msgid "Hide n. posts field"
|
473 |
msgstr "Скрыть поле с № постов"
|
474 |
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:808
|
476 |
msgid "WordPress hidden fields"
|
477 |
msgstr "Скрытые поля WordPress"
|
478 |
|
479 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:811
|
480 |
msgid "Show password"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:815
|
484 |
msgid "Show confirmation password"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:819
|
488 |
msgid "Show password strength meter"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:823
|
492 |
msgid "Show first name"
|
493 |
msgstr "Показать имя"
|
494 |
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
496 |
msgid "Show last name"
|
497 |
msgstr "Показать фамилию"
|
498 |
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:831
|
500 |
msgid "Show nickname"
|
501 |
msgstr "Показать ник"
|
502 |
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:835
|
504 |
msgid "Show website"
|
505 |
msgstr "Показать адрес сайта"
|
506 |
|
507 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:839
|
508 |
msgid "Show AIM"
|
509 |
msgstr "Показать AIM"
|
510 |
|
511 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:843
|
512 |
msgid "Show Yahoo IM"
|
513 |
msgstr "Показать Yahoo IM"
|
514 |
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:847
|
516 |
msgid "Show Jabber / Google Talk"
|
517 |
msgstr "Показать Jabber / Google Talk"
|
518 |
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:851
|
520 |
msgid "Show Biographical Info"
|
521 |
msgstr ""
|
522 |
|
542 |
msgid "Mismatch"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:221
|
546 |
msgid "Password"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:241
|
550 |
msgid "Password confirmation"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:261
|
554 |
#, fuzzy
|
555 |
msgid "First name"
|
556 |
msgstr "Показать имя"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:281
|
559 |
#, fuzzy
|
560 |
msgid "Last name"
|
561 |
msgstr "Показать фамилию"
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:301
|
564 |
#, fuzzy
|
565 |
msgid "Nickname"
|
566 |
msgstr "Имя"
|
567 |
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:321
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1548
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
|
571 |
msgid "Website"
|
572 |
msgstr "Адрес сайта"
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:341
|
575 |
msgid "AIM"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:361
|
579 |
#, fuzzy
|
580 |
msgid "Yahoo IM"
|
581 |
msgstr "Показать Yahoo IM"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:381
|
584 |
#, fuzzy
|
585 |
msgid "Jabber / Google Talk"
|
586 |
msgstr "Показать Jabber / Google Talk"
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:401
|
589 |
msgid "Biographical Info"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
594 |
msgid "Fields"
|
595 |
msgstr "Поля"
|
596 |
|
|
|
597 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:765
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1421
|
601 |
#, fuzzy
|
602 |
msgid "Users Extended"
|
603 |
msgstr "Список Авторов и продвинутых пользователей"
|
616 |
msgid "File '%s' is not an image."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:446
|
620 |
#, fuzzy
|
621 |
msgid "Delete the file"
|
622 |
msgstr "Удалить поле"
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
625 |
#, fuzzy
|
626 |
msgid "Update the file"
|
627 |
msgstr "Обновить поле"
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:451
|
630 |
#, fuzzy
|
631 |
msgid "Update the picture"
|
632 |
msgstr "Обновить поле"
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:471
|
635 |
msgid "Picture URL:"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:712
|
639 |
#, php-format
|
640 |
msgid "%s previous value: %s new value: %s"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:727
|
644 |
#, php-format
|
645 |
msgid "%s (%s) has changed one or more fields"
|
646 |
msgstr ""
|
651 |
msgstr ""
|
652 |
|
653 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
|
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:213
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:289
|
657 |
#, fuzzy, php-format
|
658 |
msgid "Username: %s"
|
659 |
msgstr "Имя пользователя"
|
668 |
msgid "[%s] New User Registration"
|
669 |
msgstr ""
|
670 |
|
|
|
|
|
|
|
|
|
|
|
|
|
671 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
672 |
#, php-format
|
673 |
msgid "[%s] Your username and password"
|
706 |
msgid "An error occurred during the activation"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
710 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:290
|
712 |
+
#, php-format
|
713 |
+
msgid "Password: %s"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
717 |
msgid "Invalid activation key."
|
718 |
msgstr ""
|
741 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
745 |
msgid "Add field"
|
746 |
msgstr "Добавить поле"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
749 |
msgid "Update field"
|
750 |
msgstr "Обновить поле"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
|
753 |
msgid "Delete field"
|
754 |
msgstr "Удалить поле"
|
755 |
|
756 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
|
757 |
msgid "Delete selected fields"
|
758 |
msgstr "Удалить выбранные поля"
|
759 |
|
760 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
|
761 |
msgid "Change order"
|
762 |
msgstr "Изменить порядок"
|
763 |
|
764 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
765 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
|
766 |
msgid "Min length"
|
767 |
msgstr "Мин длина"
|
768 |
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
770 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
771 |
msgid "Exact length"
|
772 |
msgstr "Точная длина"
|
773 |
|
774 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
776 |
msgid "Max length"
|
777 |
msgstr "Макс длина"
|
778 |
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
|
780 |
msgid "Exact or Max length"
|
781 |
msgstr "Точная или Макс длина"
|
782 |
|
783 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
784 |
msgid "changed to"
|
785 |
msgstr "изменена на"
|
786 |
|
787 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
788 |
msgid "You cannot give an order that misses some numbers"
|
789 |
msgstr "Вы не можете установить порядок, который пропускает некоторые числа"
|
790 |
|
791 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:210
|
793 |
msgid "Nothing selected"
|
794 |
msgstr "Ничего не выбрано"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
797 |
msgid "Field(s)"
|
798 |
msgstr "Поле(я)"
|
799 |
|
800 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
801 |
msgid "deleted correctly"
|
802 |
msgstr "удалены правильно"
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:239
|
805 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1056
|
806 |
msgid "Min size"
|
807 |
msgstr "Мин размер"
|
808 |
|
809 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
810 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
811 |
msgid "Exact size"
|
812 |
msgstr "Точный размер"
|
813 |
|
814 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:241
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
816 |
msgid "Max size"
|
817 |
msgstr "Макс размер"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
820 |
msgid "Exact or Max size"
|
821 |
msgstr "Точный или Макс размер"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:299
|
824 |
msgid "Name not specified"
|
825 |
msgstr "Имя не задано"
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
828 |
msgid "Name cannot contains spaces"
|
829 |
msgstr "Имя не должно содержать пробелов"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
|
832 |
msgid "Label not specified"
|
833 |
msgstr "Метка не выбрана"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
|
836 |
msgid "not selected (with this type is necessary)"
|
837 |
msgstr "не выбрано (с этим типом необходимо)"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
840 |
msgid "If you select"
|
841 |
msgstr "Если Вы выбрали"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
844 |
msgid "you cannot select Min or Max"
|
845 |
msgstr "Вы не можете выбрать Мин или Макс"
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:330
|
850 |
msgid "should be in the range of"
|
851 |
msgstr "должно быть в диапозоне"
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:340
|
|
|
854 |
msgid "Equal TO not specified"
|
855 |
msgstr "Равная ЧЕМУ не выбрано"
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:343
|
858 |
msgid "With checkbox type Equal TO can only be"
|
859 |
msgstr "Может быть только с флажком выбора типа Равная ЧЕМУ"
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:346
|
862 |
msgid "With radio type Equal TO can only be"
|
863 |
msgstr "Может быть только с переключателем выбора типа Равная ЧЕМУ"
|
864 |
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:362
|
866 |
msgid "With checkbox type Value can only be"
|
867 |
msgstr "Может быть только с флажками выбора типа Значение"
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:365
|
870 |
msgid "With radio type Value can only be"
|
871 |
msgstr "Может быть только с переключателем выбора типа Значение"
|
872 |
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
874 |
msgid "Field inserted correctly"
|
875 |
msgstr "Поле вставлено корректно"
|
876 |
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
878 |
msgid "Field #"
|
879 |
msgstr "Поле #"
|
880 |
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
882 |
msgid "updated correctly"
|
883 |
msgstr "обновлено корректно"
|
884 |
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
886 |
msgid "Name inserted is just in the database, change to another one"
|
887 |
msgstr "Вставляемое имя уже есть в БД, выберите другое"
|
888 |
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
890 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
891 |
msgstr "Для добавления нового поля вам необходимо задать имя, тип и метку; значение и описание. Правила применяются в процессе регистрации пользователя."
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
894 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
895 |
msgstr "С <strong>переключателем(radio)</strong> и <strong>флажками(checkbox)</strong>: <em>Значение</em> и <em>равно ЧЕМУ</em> может быть либо 'Yes', либо 'No' - это означает 'выбрано' или 'не выбрано'"
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
898 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
899 |
msgstr "С <strong>выпадающим списком(drop-down)</strong>: вы можете добавить все опции в метку, например: метка/элемент1,элемент2,элемент3"
|
900 |
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
902 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
903 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
904 |
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
906 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
907 |
msgstr "С <strong>picture-url</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; <em>равная ЧЕМУ</em> подразумевает max ширину для превью (высота будет установлена пропорционально)"
|
908 |
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
910 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
911 |
msgstr "С <strong>датой регистрации(registration-date)</strong>: <em>равна ЧЕМУ</em> подразумевает формат даты и времени"
|
912 |
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
914 |
#, fuzzy
|
915 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
916 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
917 |
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
919 |
#, fuzzy
|
920 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
921 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
922 |
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:648
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1089
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1533
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
|
929 |
msgid "Name"
|
930 |
msgstr "Имя"
|
931 |
|
|
|
932 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1092
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
938 |
msgid "Value"
|
939 |
msgstr "Значение"
|
940 |
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:639
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1095
|
945 |
msgid "Type"
|
946 |
msgstr "Тип"
|
947 |
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
952 |
msgid "Label"
|
953 |
msgstr "Метка"
|
954 |
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:672
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
959 |
msgid "Description"
|
960 |
msgstr "Описание"
|
961 |
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
964 |
msgid "Rules"
|
965 |
msgstr "Правила"
|
966 |
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
969 |
msgid "Actions"
|
970 |
msgstr "Действия"
|
971 |
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
975 |
#, fuzzy
|
976 |
msgid "Fieldset"
|
977 |
msgstr "Поля"
|
978 |
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
981 |
msgid "Can be empty"
|
982 |
msgstr "Может быть пустым"
|
983 |
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
986 |
msgid "Check for E-mail syntax"
|
987 |
msgstr "Проверка синтаксиса E-mail"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:688
|
990 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
991 |
msgid "Can be modified"
|
992 |
msgstr "Может быть изменено"
|
993 |
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
995 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1139
|
996 |
msgid "Can be modified only if empty"
|
997 |
msgstr "Может быть изменено только если пустое"
|
998 |
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
|
1000 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
1001 |
msgid "Can be modified only by admin"
|
1002 |
msgstr "Может быть изменено только админом"
|
1003 |
|
1004 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
1006 |
msgid "Can be modified only by admin or if empty"
|
1007 |
msgstr "Может быть изменено только админом или если пустое"
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:692
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
1011 |
msgid "Cannot be modified"
|
1012 |
msgstr "Не может быть изменено"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
1016 |
msgid "Should be equal TO"
|
1017 |
msgstr "Долднадолжно быть равно ЧЕМУ"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
1020 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
1021 |
msgid "Case sensitive"
|
1022 |
msgstr "Чуствительность к регистру"
|
1023 |
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
1025 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
1026 |
msgid "Regular Expression"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
1030 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1155
|
1031 |
msgid "Show the field in the registration"
|
1032 |
msgstr "Показывать поле при регистрации"
|
1033 |
|
1034 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
1036 |
msgid "Show the field in User's profile"
|
1037 |
msgstr "Показывать поле в профиле пользователя"
|
1038 |
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
1040 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1167
|
1041 |
+
#, fuzzy
|
1042 |
+
msgid "Show the field in Users Extended menu"
|
1043 |
msgstr "Показывать поле в меню A&продвинутых П"
|
1044 |
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
1046 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1170
|
1047 |
#, fuzzy
|
1048 |
msgid "Show the field in the search engine"
|
1049 |
msgstr "Показывать поле при регистрации"
|
1050 |
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
1052 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1173
|
1053 |
#, fuzzy
|
1054 |
msgid "Show the field in the blog"
|
1055 |
msgstr "Показывать поле при регистрации"
|
1056 |
|
1057 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:723
|
1058 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1176
|
1059 |
#, fuzzy
|
1060 |
msgid "Show the field if the role is at least:"
|
1061 |
msgstr "Показывать поле при регистрации"
|
1062 |
|
1063 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:725
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1065 |
msgid "Anonymous"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1184
|
1070 |
+
msgid "User has 'view_cimy_extra_fields' capability"
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:736
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
1075 |
msgid "Send an email to the admin if the user changes its value"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:738
|
1079 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1197
|
1080 |
+
#, fuzzy
|
1081 |
+
msgid "Advanced options"
|
1082 |
+
msgstr "Действия"
|
1083 |
+
|
1084 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
1085 |
msgid "Clear"
|
1086 |
msgstr "Очистить"
|
1087 |
|
1088 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
|
1089 |
msgid "Invert selection"
|
1090 |
msgstr "Инветировать выбор"
|
1091 |
|
1092 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
|
1093 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1094 |
msgstr "Вы действительно хотите удалить поле(я) и данные вставленные в них пользователями?"
|
1095 |
|
1096 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1097 |
msgid "WordPress Fields"
|
1098 |
msgstr "WordPress Fields"
|
1099 |
|
1100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
1101 |
msgid "None!"
|
1102 |
msgstr "Нет!"
|
1103 |
|
1104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
|
1105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1077
|
1106 |
msgid "Order"
|
1107 |
msgstr "Порядок"
|
1108 |
|
1109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1201
|
1110 |
msgid "Reset"
|
1111 |
msgstr "Сброс"
|
1112 |
|
1113 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1288
|
1114 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1903
|
1115 |
#, fuzzy
|
1116 |
msgid "select"
|
1117 |
msgstr "Удалить"
|
1118 |
|
1119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1429
|
1120 |
#, php-format
|
1121 |
msgid "Search results for “%s”"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
|
1125 |
#, php-format
|
1126 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1465
|
1130 |
msgid "Search Users"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
1134 |
msgid "« Back to All Users"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1501
|
1138 |
#, fuzzy
|
1139 |
msgid "Users per page"
|
1140 |
msgstr "Таблица данных пользователей"
|
1141 |
|
1142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1143 |
msgid "Apply"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1543
|
1147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1148 |
#, fuzzy
|
1149 |
msgid "Role"
|
1150 |
msgstr "Правила"
|
1151 |
|
1152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1553
|
1153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
|
1154 |
msgid "Posts"
|
1155 |
msgstr "Сообщения"
|
1156 |
|
1157 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1691
|
1158 |
msgid "View posts by this author"
|
1159 |
msgstr "Просмотреть сообщения этого автора"
|
1160 |
|
1161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1725
|
1162 |
#, php-format
|
1163 |
msgid "e-mail: %s"
|
1164 |
msgstr "e-mail: %s"
|
1165 |
|
1166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1847
|
1167 |
#, fuzzy
|
1168 |
msgid "Change"
|
1169 |
msgstr "Изменить порядок"
|
1170 |
|
1171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1872
|
1172 |
#, fuzzy
|
1173 |
msgid "Update selected users"
|
1174 |
msgstr "Удалить выбранные поля"
|
1175 |
|
1176 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1177 |
#, fuzzy
|
1178 |
msgid "Update"
|
1179 |
msgstr "Обновить поле"
|
1180 |
|
1181 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1908
|
1182 |
msgid "OK"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1909
|
1186 |
msgid "Cancel"
|
1187 |
msgstr ""
|
1188 |
|
langs/cimy_uef-sv_SE.mo
CHANGED
Binary file
|
langs/cimy_uef-sv_SE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,116 +16,145 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "FEL"
|
36 |
|
37 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "epostadressen har ett felaktigt format"
|
44 |
|
45 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "måste anges."
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "är ej korrekt"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
55 |
msgid "YES"
|
56 |
msgstr "JA"
|
57 |
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
59 |
msgid "NO"
|
60 |
msgstr "NEJ"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
msgid "should be"
|
64 |
msgstr "skall vara"
|
65 |
|
66 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
67 |
msgid "should be an image."
|
68 |
msgstr "borde vara en bild."
|
69 |
|
70 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "får inte vara mindre än"
|
73 |
|
74 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "får inte vara kortare än"
|
77 |
|
78 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "får inte ha en storlek skiljd från"
|
81 |
|
82 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "får inte ha en annan längd än"
|
85 |
|
86 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "får inte vara större än"
|
89 |
|
90 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "får inte vara längre än"
|
93 |
|
94 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
95 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
104 |
|
105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
110 |
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
113 |
msgid "Strength indicator"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
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 ! \" ? $ % ^ & )."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
121 |
#, fuzzy
|
122 |
msgid "Change image"
|
123 |
msgstr "Ändra ordning"
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
126 |
msgid "Insert the code:"
|
127 |
msgstr ""
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
130 |
msgid "no fieldset"
|
131 |
msgstr "Ingen fältsektion"
|
@@ -134,340 +163,356 @@ msgstr "Ingen fältsektion"
|
|
134 |
msgid "All"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
138 |
msgid "WordPress Fields table emptied"
|
139 |
msgstr "Wordpress-tabell tömdes"
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
142 |
msgid "WordPress Fields table deleted"
|
143 |
msgstr "WordPress-tabell borttagen"
|
144 |
|
145 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
146 |
msgid "Extra Fields table emptied"
|
147 |
msgstr "Extrafältstabellsfält tömdes"
|
148 |
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
150 |
msgid "Extra Fields table deleted"
|
151 |
msgstr "Extra tabel fälter bottagen"
|
152 |
|
153 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
154 |
msgid "Users Data table emptied"
|
155 |
msgstr "Användardatatabellen tömdes"
|
156 |
|
157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
158 |
msgid "Users Data table deleted"
|
159 |
msgstr "Användardatatabellen borttagen "
|
160 |
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
162 |
msgid "Options set to default values"
|
163 |
msgstr "Inställningar nollställda"
|
164 |
|
165 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
166 |
msgid "Options deleted"
|
167 |
msgstr "Inställninger borttagna"
|
168 |
|
169 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
170 |
msgid "Options changed"
|
171 |
msgstr "Inställningar ändrade"
|
172 |
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
180 |
msgid "Options"
|
181 |
msgstr "Inställningar"
|
182 |
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
185 |
msgid "Add a new Field"
|
186 |
msgstr "Lägg till ett fält"
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
192 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
194 |
msgid "Extra Fields"
|
195 |
msgstr "Extrafält"
|
196 |
|
197 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
198 |
msgid "Support the Cimy Project"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
202 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
206 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
207 |
msgid "SUCCESSFUL"
|
208 |
msgstr "FRAMGÅNGSRIKT"
|
209 |
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
msgid "Save Changes"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
216 |
msgid "General"
|
217 |
msgstr "Allmän"
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
220 |
msgid "installed is"
|
221 |
msgstr "är installerad"
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
msgid "OPTIONS DELETED!"
|
225 |
msgstr "INSTÄLLNINGAR BORTTAGNA"
|
226 |
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
229 |
msgid "Fix the problem"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
233 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
234 |
msgstr "VERSIONSKONFLIKT! deaktivera och aktivera pluginen efter uppdatering!"
|
235 |
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
237 |
msgid "Picture/Avatar upload"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
241 |
msgid "is created and writable"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
245 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
249 |
#, fuzzy
|
250 |
msgid "Show all fields in the welcome email"
|
251 |
msgstr "Visa fält vid registrering"
|
252 |
|
253 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
254 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
258 |
msgid "Enable email confirmation"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
262 |
msgid "user that registers should confirm its email address via a link click"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
266 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
msgid "Redirect to the source"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
274 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
278 |
msgid "No captcha"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
286 |
msgid "Public KEY"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
msgid "Private KEY"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
294 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
msgid "This captcha is probably weaker, but is easier for users"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
302 |
#, php-format
|
303 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
307 |
msgid "Change login/registration page logo"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
312 |
msgid "Delete the picture"
|
313 |
msgstr "Ta bort bild"
|
314 |
|
315 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
316 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
320 |
msgid "Database"
|
321 |
msgstr "Databas"
|
322 |
|
323 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
324 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
327 |
msgid "select action"
|
328 |
msgstr "Välj åtgärd"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
331 |
msgid "Default values"
|
332 |
msgstr "Standardvärden"
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
335 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
336 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
338 |
msgid "Delete"
|
339 |
msgstr "Ta bort"
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
344 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
345 |
msgid "NOT PRESENT"
|
346 |
msgstr "EXISTERAR EJ"
|
347 |
|
348 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
349 |
msgid "WordPress Fields table"
|
350 |
msgstr "WordPress Fälttabell"
|
351 |
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
355 |
msgid "Empty"
|
356 |
msgstr "Töm"
|
357 |
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
359 |
msgid "Extra Fields table"
|
360 |
msgstr "Extra Fälttabell"
|
361 |
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
363 |
msgid "Users Data table"
|
364 |
msgstr "Användardatatabell"
|
365 |
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
367 |
msgid "all data inserted by users in all and only extra fields"
|
368 |
msgstr "all data skapad av användare "
|
369 |
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
371 |
msgid "Force tables creation"
|
372 |
msgstr "Forcera skapande av tabeller"
|
373 |
|
374 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
375 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
379 |
msgid "User Profile"
|
380 |
msgstr "Användarprofil"
|
381 |
|
382 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
383 |
msgid "Extra Fields section title"
|
384 |
msgstr "Titel för fältsektion"
|
385 |
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
387 |
msgid "Fieldset's titles, separates with comma"
|
388 |
msgstr "Fältsektionstitlar, separerade med kommatecken"
|
389 |
|
390 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
391 |
msgid "example: title1,title2,title3"
|
392 |
msgstr "tex.: Titel1,Titel2,Titel3"
|
393 |
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
395 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
399 |
msgid "Authors & Users Extended"
|
400 |
msgstr "Utökad författar- och användarhantering"
|
401 |
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
403 |
msgid "Hide username field"
|
404 |
msgstr "Göm fältet användarnamn"
|
405 |
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
407 |
msgid "Hide name field"
|
408 |
msgstr "Göm fältet namn"
|
409 |
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
411 |
msgid "Hide email field"
|
412 |
msgstr "Göm fältet e-post"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
415 |
msgid "Hide role field"
|
416 |
msgstr "Göm fältet roll"
|
417 |
|
418 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
419 |
msgid "Hide website field"
|
420 |
msgstr "Göm fältet webbsajt"
|
421 |
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
423 |
msgid "Hide n. posts field"
|
424 |
msgstr "Göm n. postfält"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
427 |
msgid "WordPress hidden fields"
|
428 |
msgstr "Wordpress gömda fält"
|
429 |
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
431 |
msgid "Show password"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
435 |
msgid "Show confirmation password"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
439 |
msgid "Show password strength meter"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
443 |
msgid "Show first name"
|
444 |
msgstr "Visa förnamn"
|
445 |
|
446 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
447 |
msgid "Show last name"
|
448 |
msgstr "Visa efternamn"
|
449 |
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
451 |
msgid "Show nickname"
|
452 |
msgstr "Visa smeknamn"
|
453 |
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
455 |
msgid "Show website"
|
456 |
msgstr "Visa webbsajt"
|
457 |
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
459 |
msgid "Show AIM"
|
460 |
msgstr "Visa AIM"
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
463 |
msgid "Show Yahoo IM"
|
464 |
msgstr "Visa Yahoo IM"
|
465 |
|
466 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
467 |
msgid "Show Jabber / Google Talk"
|
468 |
msgstr "Visa Jabber / Google Talk"
|
469 |
|
470 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
471 |
msgid "Show Biographical Info"
|
472 |
msgstr ""
|
473 |
|
@@ -493,57 +538,57 @@ msgstr ""
|
|
493 |
msgid "Mismatch"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
497 |
msgid "Password"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
501 |
msgid "Password confirmation"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
505 |
msgid "First name"
|
506 |
msgstr "Förnamn"
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
509 |
msgid "Last name"
|
510 |
msgstr "Efternamn"
|
511 |
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
513 |
msgid "Nickname"
|
514 |
msgstr "Smeknamn"
|
515 |
|
516 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
519 |
msgid "Website"
|
520 |
msgstr "Webbsajt"
|
521 |
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
523 |
msgid "AIM"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
527 |
msgid "Yahoo IM"
|
528 |
msgstr "Yahoo IM"
|
529 |
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
531 |
msgid "Jabber / Google Talk"
|
532 |
msgstr "Jabber / Google Talk"
|
533 |
|
534 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
535 |
msgid "Biographical Info"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
540 |
msgid "Fields"
|
541 |
msgstr "Fält"
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:752
|
544 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
545 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
547 |
msgid "Users Extended"
|
548 |
msgstr "Extra fält för användare"
|
549 |
|
@@ -561,30 +606,30 @@ msgstr ""
|
|
561 |
msgid "File '%s' is not an image."
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
565 |
#, fuzzy
|
566 |
msgid "Delete the file"
|
567 |
msgstr "Ta bort bild"
|
568 |
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
570 |
#, fuzzy
|
571 |
msgid "Update the file"
|
572 |
msgstr "Uppdatra bild"
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
575 |
msgid "Update the picture"
|
576 |
msgstr "Uppdatra bild"
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
579 |
msgid "Picture URL:"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
583 |
#, php-format
|
584 |
msgid "%s previous value: %s new value: %s"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
588 |
#, php-format
|
589 |
msgid "%s (%s) has changed one or more fields"
|
590 |
msgstr ""
|
@@ -595,8 +640,9 @@ msgid "New user registration on your site %s:"
|
|
595 |
msgstr ""
|
596 |
|
597 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
599 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
|
|
|
|
600 |
#, fuzzy, php-format
|
601 |
msgid "Username: %s"
|
602 |
msgstr "Användarnamn"
|
@@ -611,12 +657,6 @@ msgstr "e-post: %s"
|
|
611 |
msgid "[%s] New User Registration"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
615 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
616 |
-
#, php-format
|
617 |
-
msgid "Password: %s"
|
618 |
-
msgstr ""
|
619 |
-
|
620 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
621 |
#, php-format
|
622 |
msgid "[%s] Your username and password"
|
@@ -655,6 +695,13 @@ msgstr ""
|
|
655 |
msgid "An error occurred during the activation"
|
656 |
msgstr ""
|
657 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
658 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
659 |
msgid "Invalid activation key."
|
660 |
msgstr ""
|
@@ -683,443 +730,444 @@ msgstr ""
|
|
683 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
687 |
msgid "Add field"
|
688 |
msgstr "Lägg till fält"
|
689 |
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
691 |
msgid "Update field"
|
692 |
msgstr "Uppdatera fält"
|
693 |
|
694 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
695 |
msgid "Delete field"
|
696 |
msgstr "Ta bort fält"
|
697 |
|
698 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
699 |
msgid "Delete selected fields"
|
700 |
msgstr "Ta bort valda fälter"
|
701 |
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
703 |
msgid "Change order"
|
704 |
msgstr "Ändra ordning"
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
708 |
msgid "Min length"
|
709 |
msgstr "Min. längd"
|
710 |
|
711 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
712 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
713 |
msgid "Exact length"
|
714 |
msgstr "Exakt längd"
|
715 |
|
716 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
717 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
718 |
msgid "Max length"
|
719 |
msgstr "Max. längd"
|
720 |
|
721 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
722 |
msgid "Exact or Max length"
|
723 |
msgstr "Exakt eller max. längd"
|
724 |
|
725 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
726 |
msgid "changed to"
|
727 |
msgstr "ändrad till"
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
730 |
msgid "You cannot give an order that misses some numbers"
|
731 |
msgstr "Du kan inte ange en ordningsföljd där vissa nummer saknas"
|
732 |
|
733 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
734 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
735 |
msgid "Nothing selected"
|
736 |
msgstr "Inget valt"
|
737 |
|
738 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
739 |
msgid "Field(s)"
|
740 |
msgstr "Fält"
|
741 |
|
742 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
743 |
msgid "deleted correctly"
|
744 |
msgstr "korrekt raderade"
|
745 |
|
746 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
747 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
748 |
msgid "Min size"
|
749 |
msgstr "Min. storlek"
|
750 |
|
751 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
752 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
753 |
msgid "Exact size"
|
754 |
msgstr "Exakt storlek"
|
755 |
|
756 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
757 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
758 |
msgid "Max size"
|
759 |
msgstr "Max. storlek"
|
760 |
|
761 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
762 |
msgid "Exact or Max size"
|
763 |
msgstr "Exakt eller Max. storlek"
|
764 |
|
765 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
766 |
msgid "Name not specified"
|
767 |
msgstr "Namn ej angivet"
|
768 |
|
769 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
770 |
msgid "Name cannot contains spaces"
|
771 |
msgstr "Namnet får inte ha mellanrum"
|
772 |
|
773 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
774 |
msgid "Label not specified"
|
775 |
msgstr "Etikett ej angiven"
|
776 |
|
777 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
778 |
msgid "not selected (with this type is necessary)"
|
779 |
msgstr "Ej vald (krävs vid denna typ)"
|
780 |
|
781 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
782 |
msgid "If you select"
|
783 |
msgstr "Om du väljer"
|
784 |
|
785 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
786 |
msgid "you cannot select Min or Max"
|
787 |
msgstr "Min eller Max kan ej väljas"
|
788 |
|
789 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
791 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
792 |
msgid "should be in the range of"
|
793 |
msgstr "skall vara mellan"
|
794 |
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
796 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
797 |
msgid "Equal TO not specified"
|
798 |
msgstr "Lika MED ej angivet"
|
799 |
|
800 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
801 |
msgid "With checkbox type Equal TO can only be"
|
802 |
msgstr "När typen är checkbox kan LIKA MED endast vara"
|
803 |
|
804 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
805 |
msgid "With radio type Equal TO can only be"
|
806 |
msgstr "När typen är radio kan LIKA MED endast vara"
|
807 |
|
808 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
809 |
msgid "With checkbox type Value can only be"
|
810 |
msgstr "När typen är checkbox kan värde endast vara"
|
811 |
|
812 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
813 |
msgid "With radio type Value can only be"
|
814 |
msgstr "När typen är radio kan värde endast vara"
|
815 |
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
817 |
msgid "Field inserted correctly"
|
818 |
msgstr "Fält upplagt korrekt"
|
819 |
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
821 |
msgid "Field #"
|
822 |
msgstr "Fält #"
|
823 |
|
824 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
825 |
msgid "updated correctly"
|
826 |
msgstr "korrekt uppdaterat"
|
827 |
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
829 |
msgid "Name inserted is just in the database, change to another one"
|
830 |
msgstr "Namnet du valt är redan i bruk, välj ett annat"
|
831 |
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
833 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
834 |
msgstr "För att lägga till ett nytt fält, måste du välja ett namn, en typ och en etikett; ej tvingande fält är värde och beskrivning. Vid registrering av användare måste detta regelverk följas."
|
835 |
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
837 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
838 |
msgstr "Med <strong>radio</strong> och <strong>checkbox</strong>: <em>Värde</em> och <em>LIKA MED</em> kan bara vara 'Yes' eller 'No', som betyder vald eller ej vald."
|
839 |
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
841 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
842 |
msgstr "<strong>drop-down</strong>: Du måste ange alla alternativ i etikett t.ex: Etikett/värde1,värde2,värde3"
|
843 |
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
845 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
846 |
msgstr "Med <strong>bild</strong>: Du kan använde en standard bild med (URL) under <em>Värde</em>; 'min, exakt, max störleken' angiven i KB;<em>LIKA MED</em> betyder max pixelstörlek (höjd eller bredd) för tumnagelbild."
|
847 |
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
850 |
msgstr "Med <strong>bild-url</strong>: Du kan anger en standardbild genom (URL) under <em>Värde</em>; <em>LIKA MED</em> betyder max pixelbred (höjden justeras proportioneligt)."
|
851 |
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
853 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
854 |
msgstr "Med <strong>registration-datum</strong>: <em>LIKA MED</em> betyder datum- och tidsformat."
|
855 |
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
857 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
858 |
msgstr "Med <strong>avatar</strong>: kan du använda en standardbild med (URL) under <em>Värde</em>; 'min, exakt, max storleken' angiven i KB;<em>LIKA MED</em> betyder max pixelstorlek (höjd eller bredd) för tumnagelbild."
|
859 |
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
861 |
#, fuzzy
|
862 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
863 |
msgstr "Med <strong>bild</strong>: Du kan använde en standard bild med (URL) under <em>Värde</em>; 'min, exakt, max störleken' angiven i KB;<em>LIKA MED</em> betyder max pixelstörlek (höjd eller bredd) för tumnagelbild."
|
864 |
|
865 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
866 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
867 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
870 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
871 |
msgid "Name"
|
872 |
msgstr "Namn"
|
873 |
|
874 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
875 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
877 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
880 |
msgid "Value"
|
881 |
msgstr "Värde"
|
882 |
|
883 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
886 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
887 |
msgid "Type"
|
888 |
msgstr "Typ"
|
889 |
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
891 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
892 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
894 |
msgid "Label"
|
895 |
msgstr "Etikett"
|
896 |
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
898 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
899 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
901 |
msgid "Description"
|
902 |
msgstr "Beskrivning"
|
903 |
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
906 |
msgid "Rules"
|
907 |
msgstr "Regler"
|
908 |
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
910 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
911 |
msgid "Actions"
|
912 |
msgstr "Åtgärder"
|
913 |
|
914 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
915 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
917 |
msgid "Fieldset"
|
918 |
msgstr "Fältsektion"
|
919 |
|
920 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
921 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
922 |
msgid "Can be empty"
|
923 |
msgstr "Kan vara töm"
|
924 |
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
926 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
927 |
msgid "Check for E-mail syntax"
|
928 |
msgstr "Kontrollera epostadressen"
|
929 |
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
931 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
932 |
msgid "Can be modified"
|
933 |
msgstr "Kan ändras"
|
934 |
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
937 |
msgid "Can be modified only if empty"
|
938 |
msgstr "Kan ändras endast om fältet är tomt"
|
939 |
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
942 |
msgid "Can be modified only by admin"
|
943 |
msgstr "Kan endast ändras av en administratör"
|
944 |
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
946 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
947 |
msgid "Can be modified only by admin or if empty"
|
948 |
msgstr "Kan ändras endast av en administratör eller om fältet är tomt"
|
949 |
|
950 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
951 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
952 |
msgid "Cannot be modified"
|
953 |
msgstr "Kan inte ändras"
|
954 |
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
957 |
msgid "Should be equal TO"
|
958 |
msgstr "Skall vara LIKA MED"
|
959 |
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
961 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
962 |
msgid "Case sensitive"
|
963 |
msgstr "Skiftlägeskänslig"
|
964 |
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
966 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
967 |
msgid "Regular Expression"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
971 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
972 |
msgid "Show the field in the registration"
|
973 |
msgstr "Visa fält vid registrering"
|
974 |
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
977 |
msgid "Show the field in User's profile"
|
978 |
msgstr "Visa fält i Användarprofil"
|
979 |
|
980 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
982 |
-
|
|
|
983 |
msgstr "Visa fält i menyn F&A Utökat"
|
984 |
|
985 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
987 |
#, fuzzy
|
988 |
msgid "Show the field in the search engine"
|
989 |
msgstr "Visa fält vid registrering"
|
990 |
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
993 |
#, fuzzy
|
994 |
msgid "Show the field in the blog"
|
995 |
msgstr "Visa fält vid registrering"
|
996 |
|
997 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
999 |
#, fuzzy
|
1000 |
msgid "Show the field if the role is at least:"
|
1001 |
msgstr "Visa fält vid registrering"
|
1002 |
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1005 |
msgid "Anonymous"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1009 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1010 |
msgid "Send an email to the admin if the user changes its value"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1014 |
msgid "Clear"
|
1015 |
msgstr "Nollställ"
|
1016 |
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1018 |
msgid "Invert selection"
|
1019 |
msgstr "Omvänd markering"
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1022 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1023 |
msgstr "Är du säker på at du vill ta bort detta fält och all ev data som matats in?"
|
1024 |
|
1025 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1026 |
msgid "WordPress Fields"
|
1027 |
msgstr "WordPress-fält"
|
1028 |
|
1029 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1030 |
msgid "None!"
|
1031 |
msgstr "Ingen!"
|
1032 |
|
1033 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1035 |
msgid "Order"
|
1036 |
msgstr "Ordningsföljd"
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1039 |
msgid "Reset"
|
1040 |
msgstr "Nollställ"
|
1041 |
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1043 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1044 |
#, fuzzy
|
1045 |
msgid "select"
|
1046 |
msgstr "Ta bort"
|
1047 |
|
1048 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1049 |
#, php-format
|
1050 |
msgid "Search results for “%s”"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1054 |
#, php-format
|
1055 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1059 |
msgid "Search Users"
|
1060 |
msgstr "Sök Användare"
|
1061 |
|
1062 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1063 |
msgid "« Back to All Users"
|
1064 |
msgstr "« Tillbaka till Alla Användare"
|
1065 |
|
1066 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1067 |
msgid "Users per page"
|
1068 |
msgstr "Användare per sida"
|
1069 |
|
1070 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1071 |
msgid "Apply"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1075 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1076 |
-
msgid "Username"
|
1077 |
-
msgstr "Användarnamn"
|
1078 |
-
|
1079 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1515
|
1080 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1081 |
-
msgid "E-mail"
|
1082 |
-
msgstr "E-post"
|
1083 |
-
|
1084 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1085 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1086 |
msgid "Role"
|
1087 |
msgstr "Roll"
|
1088 |
|
1089 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1090 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1091 |
msgid "Posts"
|
1092 |
msgstr "Postningar"
|
1093 |
|
1094 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1095 |
msgid "View posts by this author"
|
1096 |
msgstr "Visa postningar av dessa skribent"
|
1097 |
|
1098 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1099 |
#, php-format
|
1100 |
msgid "e-mail: %s"
|
1101 |
msgstr "e-post: %s"
|
1102 |
|
1103 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1104 |
#, fuzzy
|
1105 |
msgid "Change"
|
1106 |
msgstr "Ändra ordning"
|
1107 |
|
1108 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1109 |
#, fuzzy
|
1110 |
msgid "Update selected users"
|
1111 |
msgstr "Ta bort valda fälter"
|
1112 |
|
1113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1114 |
#, fuzzy
|
1115 |
msgid "Update"
|
1116 |
msgstr "Uppdatera fält"
|
1117 |
|
1118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1119 |
msgid "OK"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1123 |
msgid "Cancel"
|
1124 |
msgstr ""
|
1125 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-06-19 16:35+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-06-19 16:35+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:453
|
|
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1241
|
34 |
msgid "ERROR"
|
35 |
msgstr "FEL"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:418
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "epostadressen har ett felaktigt format"
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "måste anges."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "är ej korrekt"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
57 |
msgid "YES"
|
58 |
msgstr "JA"
|
59 |
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
63 |
msgid "NO"
|
64 |
msgstr "NEJ"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:463
|
67 |
msgid "should be"
|
68 |
msgstr "skall vara"
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "should be an image."
|
72 |
msgstr "borde vara en bild."
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
75 |
msgid "couldn’t have size less than"
|
76 |
msgstr "får inte vara mindre än"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:489
|
79 |
msgid "couldn’t have length less than"
|
80 |
msgstr "får inte vara kortare än"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
|
83 |
msgid "couldn’t have size different than"
|
84 |
msgstr "får inte ha en storlek skiljd från"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
|
87 |
msgid "couldn’t have length different than"
|
88 |
msgstr "får inte ha en annan längd än"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
|
91 |
msgid "couldn’t have size more than"
|
92 |
msgstr "får inte vara större än"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
|
95 |
msgid "couldn’t have length more than"
|
96 |
msgstr "får inte vara längre än"
|
97 |
|
98 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:539
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:559
|
100 |
msgid "Typed code is not correct."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:636
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1528
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1529
|
106 |
+
msgid "Username"
|
107 |
+
msgstr "Användarnamn"
|
108 |
+
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:639
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1538
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
|
112 |
+
msgid "E-mail"
|
113 |
+
msgstr "E-post"
|
114 |
+
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:889
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:302
|
117 |
#, fuzzy
|
118 |
msgid "Please upload a file with one of the following extensions"
|
119 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
120 |
|
121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:895
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:308
|
124 |
msgid "Please upload an image with one of the following extensions"
|
125 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1052
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init_strength_meter.php:47
|
129 |
msgid "Strength indicator"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1053
|
133 |
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 ! \" ? $ % ^ & )."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1099
|
137 |
#, fuzzy
|
138 |
msgid "Change image"
|
139 |
msgstr "Ändra ordning"
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1102
|
142 |
msgid "Insert the code:"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1163
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1165
|
147 |
+
msgid "Confirm your registration"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1171
|
151 |
+
msgid "A password will be e-mailed to you."
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1178
|
155 |
+
msgid "← Back"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
159 |
msgid "no fieldset"
|
160 |
msgstr "Ingen fältsektion"
|
163 |
msgid "All"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:44
|
167 |
msgid "WordPress Fields table emptied"
|
168 |
msgstr "Wordpress-tabell tömdes"
|
169 |
|
170 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:49
|
171 |
msgid "WordPress Fields table deleted"
|
172 |
msgstr "WordPress-tabell borttagen"
|
173 |
|
174 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:58
|
175 |
msgid "Extra Fields table emptied"
|
176 |
msgstr "Extrafältstabellsfält tömdes"
|
177 |
|
178 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:63
|
179 |
msgid "Extra Fields table deleted"
|
180 |
msgstr "Extra tabel fälter bottagen"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:72
|
183 |
msgid "Users Data table emptied"
|
184 |
msgstr "Användardatatabellen tömdes"
|
185 |
|
186 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:77
|
187 |
msgid "Users Data table deleted"
|
188 |
msgstr "Användardatatabellen borttagen "
|
189 |
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:88
|
191 |
msgid "Options set to default values"
|
192 |
msgstr "Inställningar nollställda"
|
193 |
|
194 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:94
|
195 |
msgid "Options deleted"
|
196 |
msgstr "Inställninger borttagna"
|
197 |
|
198 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:349
|
199 |
msgid "Options changed"
|
200 |
msgstr "Inställningar ändrade"
|
201 |
|
202 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
203 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:489
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:754
|
209 |
msgid "Options"
|
210 |
msgstr "Inställningar"
|
211 |
|
212 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:442
|
214 |
msgid "Add a new Field"
|
215 |
msgstr "Lägg till ett fält"
|
216 |
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:809
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
221 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:294
|
223 |
msgid "Extra Fields"
|
224 |
msgstr "Extrafält"
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
227 |
msgid "Support the Cimy Project"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
|
231 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:516
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1259
|
236 |
msgid "SUCCESSFUL"
|
237 |
msgstr "FRAMGÅNGSRIKT"
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:856
|
241 |
msgid "Save Changes"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:531
|
245 |
msgid "General"
|
246 |
msgstr "Allmän"
|
247 |
|
248 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:539
|
249 |
msgid "installed is"
|
250 |
msgstr "är installerad"
|
251 |
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
253 |
msgid "OPTIONS DELETED!"
|
254 |
msgstr "INSTÄLLNINGAR BORTTAGNA"
|
255 |
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
258 |
msgid "Fix the problem"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
262 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
263 |
msgstr "VERSIONSKONFLIKT! deaktivera och aktivera pluginen efter uppdatering!"
|
264 |
|
265 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
266 |
msgid "Picture/Avatar upload"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
270 |
msgid "is created and writable"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
274 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
278 |
#, fuzzy
|
279 |
msgid "Show all fields in the welcome email"
|
280 |
msgstr "Visa fält vid registrering"
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
283 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
287 |
msgid "Enable email confirmation"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
291 |
msgid "user that registers should confirm its email address via a link click"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
|
295 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:595
|
299 |
+
msgid "Enable form confirmation"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
303 |
+
msgid "a summary of the registration form will be presented to the user"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
307 |
+
msgid "Customize welcome email sent to the new user"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
311 |
+
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
315 |
msgid "Redirect to the source"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
|
319 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
|
323 |
msgid "No captcha"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
327 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
331 |
msgid "Public KEY"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
335 |
msgid "Private KEY"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:651
|
339 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:654
|
343 |
msgid "This captcha is probably weaker, but is easier for users"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
347 |
#, php-format
|
348 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
352 |
msgid "Change login/registration page logo"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:450
|
357 |
msgid "Delete the picture"
|
358 |
msgstr "Ta bort bild"
|
359 |
|
360 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
361 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
365 |
msgid "Database"
|
366 |
msgstr "Databas"
|
367 |
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:688
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:706
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
372 |
msgid "select action"
|
373 |
msgstr "Välj åtgärd"
|
374 |
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
376 |
msgid "Default values"
|
377 |
msgstr "Standardvärden"
|
378 |
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:708
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:727
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
383 |
msgid "Delete"
|
384 |
msgstr "Ta bort"
|
385 |
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:694
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:749
|
390 |
msgid "NOT PRESENT"
|
391 |
msgstr "EXISTERAR EJ"
|
392 |
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
394 |
msgid "WordPress Fields table"
|
395 |
msgstr "WordPress Fälttabell"
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:726
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:743
|
400 |
msgid "Empty"
|
401 |
msgstr "Töm"
|
402 |
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:719
|
404 |
msgid "Extra Fields table"
|
405 |
msgstr "Extra Fälttabell"
|
406 |
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:736
|
408 |
msgid "Users Data table"
|
409 |
msgstr "Användardatatabell"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:746
|
412 |
msgid "all data inserted by users in all and only extra fields"
|
413 |
msgstr "all data skapad av användare "
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
416 |
msgid "Force tables creation"
|
417 |
msgstr "Forcera skapande av tabeller"
|
418 |
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
420 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:763
|
424 |
msgid "User Profile"
|
425 |
msgstr "Användarprofil"
|
426 |
|
427 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
428 |
msgid "Extra Fields section title"
|
429 |
msgstr "Titel för fältsektion"
|
430 |
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
432 |
msgid "Fieldset's titles, separates with comma"
|
433 |
msgstr "Fältsektionstitlar, separerade med kommatecken"
|
434 |
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
436 |
msgid "example: title1,title2,title3"
|
437 |
msgstr "tex.: Titel1,Titel2,Titel3"
|
438 |
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:771
|
440 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:776
|
444 |
msgid "Authors & Users Extended"
|
445 |
msgstr "Utökad författar- och användarhantering"
|
446 |
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:780
|
448 |
msgid "Hide username field"
|
449 |
msgstr "Göm fältet användarnamn"
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
452 |
msgid "Hide name field"
|
453 |
msgstr "Göm fältet namn"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:791
|
456 |
msgid "Hide email field"
|
457 |
msgstr "Göm fältet e-post"
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:795
|
460 |
msgid "Hide role field"
|
461 |
msgstr "Göm fältet roll"
|
462 |
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
|
464 |
msgid "Hide website field"
|
465 |
msgstr "Göm fältet webbsajt"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:803
|
468 |
msgid "Hide n. posts field"
|
469 |
msgstr "Göm n. postfält"
|
470 |
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:808
|
472 |
msgid "WordPress hidden fields"
|
473 |
msgstr "Wordpress gömda fält"
|
474 |
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:811
|
476 |
msgid "Show password"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:815
|
480 |
msgid "Show confirmation password"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:819
|
484 |
msgid "Show password strength meter"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:823
|
488 |
msgid "Show first name"
|
489 |
msgstr "Visa förnamn"
|
490 |
|
491 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
492 |
msgid "Show last name"
|
493 |
msgstr "Visa efternamn"
|
494 |
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:831
|
496 |
msgid "Show nickname"
|
497 |
msgstr "Visa smeknamn"
|
498 |
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:835
|
500 |
msgid "Show website"
|
501 |
msgstr "Visa webbsajt"
|
502 |
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:839
|
504 |
msgid "Show AIM"
|
505 |
msgstr "Visa AIM"
|
506 |
|
507 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:843
|
508 |
msgid "Show Yahoo IM"
|
509 |
msgstr "Visa Yahoo IM"
|
510 |
|
511 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:847
|
512 |
msgid "Show Jabber / Google Talk"
|
513 |
msgstr "Visa Jabber / Google Talk"
|
514 |
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:851
|
516 |
msgid "Show Biographical Info"
|
517 |
msgstr ""
|
518 |
|
538 |
msgid "Mismatch"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:221
|
542 |
msgid "Password"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:241
|
546 |
msgid "Password confirmation"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:261
|
550 |
msgid "First name"
|
551 |
msgstr "Förnamn"
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:281
|
554 |
msgid "Last name"
|
555 |
msgstr "Efternamn"
|
556 |
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:301
|
558 |
msgid "Nickname"
|
559 |
msgstr "Smeknamn"
|
560 |
|
561 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:321
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1548
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
|
564 |
msgid "Website"
|
565 |
msgstr "Webbsajt"
|
566 |
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:341
|
568 |
msgid "AIM"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:361
|
572 |
msgid "Yahoo IM"
|
573 |
msgstr "Yahoo IM"
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:381
|
576 |
msgid "Jabber / Google Talk"
|
577 |
msgstr "Jabber / Google Talk"
|
578 |
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:401
|
580 |
msgid "Biographical Info"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
585 |
msgid "Fields"
|
586 |
msgstr "Fält"
|
587 |
|
|
|
588 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:765
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1421
|
592 |
msgid "Users Extended"
|
593 |
msgstr "Extra fält för användare"
|
594 |
|
606 |
msgid "File '%s' is not an image."
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:446
|
610 |
#, fuzzy
|
611 |
msgid "Delete the file"
|
612 |
msgstr "Ta bort bild"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
615 |
#, fuzzy
|
616 |
msgid "Update the file"
|
617 |
msgstr "Uppdatra bild"
|
618 |
|
619 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:451
|
620 |
msgid "Update the picture"
|
621 |
msgstr "Uppdatra bild"
|
622 |
|
623 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:471
|
624 |
msgid "Picture URL:"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:712
|
628 |
#, php-format
|
629 |
msgid "%s previous value: %s new value: %s"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:727
|
633 |
#, php-format
|
634 |
msgid "%s (%s) has changed one or more fields"
|
635 |
msgstr ""
|
640 |
msgstr ""
|
641 |
|
642 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
|
|
643 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
644 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:213
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:289
|
646 |
#, fuzzy, php-format
|
647 |
msgid "Username: %s"
|
648 |
msgstr "Användarnamn"
|
657 |
msgid "[%s] New User Registration"
|
658 |
msgstr ""
|
659 |
|
|
|
|
|
|
|
|
|
|
|
|
|
660 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
661 |
#, php-format
|
662 |
msgid "[%s] Your username and password"
|
695 |
msgid "An error occurred during the activation"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:290
|
701 |
+
#, php-format
|
702 |
+
msgid "Password: %s"
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
706 |
msgid "Invalid activation key."
|
707 |
msgstr ""
|
730 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
734 |
msgid "Add field"
|
735 |
msgstr "Lägg till fält"
|
736 |
|
737 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
738 |
msgid "Update field"
|
739 |
msgstr "Uppdatera fält"
|
740 |
|
741 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
|
742 |
msgid "Delete field"
|
743 |
msgstr "Ta bort fält"
|
744 |
|
745 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
|
746 |
msgid "Delete selected fields"
|
747 |
msgstr "Ta bort valda fälter"
|
748 |
|
749 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
|
750 |
msgid "Change order"
|
751 |
msgstr "Ändra ordning"
|
752 |
|
753 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
754 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
|
755 |
msgid "Min length"
|
756 |
msgstr "Min. längd"
|
757 |
|
758 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
759 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
760 |
msgid "Exact length"
|
761 |
msgstr "Exakt längd"
|
762 |
|
763 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
764 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
765 |
msgid "Max length"
|
766 |
msgstr "Max. längd"
|
767 |
|
768 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
|
769 |
msgid "Exact or Max length"
|
770 |
msgstr "Exakt eller max. längd"
|
771 |
|
772 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
773 |
msgid "changed to"
|
774 |
msgstr "ändrad till"
|
775 |
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
777 |
msgid "You cannot give an order that misses some numbers"
|
778 |
msgstr "Du kan inte ange en ordningsföljd där vissa nummer saknas"
|
779 |
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
781 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:210
|
782 |
msgid "Nothing selected"
|
783 |
msgstr "Inget valt"
|
784 |
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
786 |
msgid "Field(s)"
|
787 |
msgstr "Fält"
|
788 |
|
789 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
790 |
msgid "deleted correctly"
|
791 |
msgstr "korrekt raderade"
|
792 |
|
793 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:239
|
794 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1056
|
795 |
msgid "Min size"
|
796 |
msgstr "Min. storlek"
|
797 |
|
798 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
799 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
800 |
msgid "Exact size"
|
801 |
msgstr "Exakt storlek"
|
802 |
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:241
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
805 |
msgid "Max size"
|
806 |
msgstr "Max. storlek"
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
809 |
msgid "Exact or Max size"
|
810 |
msgstr "Exakt eller Max. storlek"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:299
|
813 |
msgid "Name not specified"
|
814 |
msgstr "Namn ej angivet"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
817 |
msgid "Name cannot contains spaces"
|
818 |
msgstr "Namnet får inte ha mellanrum"
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
|
821 |
msgid "Label not specified"
|
822 |
msgstr "Etikett ej angiven"
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
|
825 |
msgid "not selected (with this type is necessary)"
|
826 |
msgstr "Ej vald (krävs vid denna typ)"
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
829 |
msgid "If you select"
|
830 |
msgstr "Om du väljer"
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
|
833 |
msgid "you cannot select Min or Max"
|
834 |
msgstr "Min eller Max kan ej väljas"
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
|
838 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:330
|
839 |
msgid "should be in the range of"
|
840 |
msgstr "skall vara mellan"
|
841 |
|
842 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:340
|
|
|
843 |
msgid "Equal TO not specified"
|
844 |
msgstr "Lika MED ej angivet"
|
845 |
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:343
|
847 |
msgid "With checkbox type Equal TO can only be"
|
848 |
msgstr "När typen är checkbox kan LIKA MED endast vara"
|
849 |
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:346
|
851 |
msgid "With radio type Equal TO can only be"
|
852 |
msgstr "När typen är radio kan LIKA MED endast vara"
|
853 |
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:362
|
855 |
msgid "With checkbox type Value can only be"
|
856 |
msgstr "När typen är checkbox kan värde endast vara"
|
857 |
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:365
|
859 |
msgid "With radio type Value can only be"
|
860 |
msgstr "När typen är radio kan värde endast vara"
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
863 |
msgid "Field inserted correctly"
|
864 |
msgstr "Fält upplagt korrekt"
|
865 |
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
867 |
msgid "Field #"
|
868 |
msgstr "Fält #"
|
869 |
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
|
871 |
msgid "updated correctly"
|
872 |
msgstr "korrekt uppdaterat"
|
873 |
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
875 |
msgid "Name inserted is just in the database, change to another one"
|
876 |
msgstr "Namnet du valt är redan i bruk, välj ett annat"
|
877 |
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
879 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
880 |
msgstr "För att lägga till ett nytt fält, måste du välja ett namn, en typ och en etikett; ej tvingande fält är värde och beskrivning. Vid registrering av användare måste detta regelverk följas."
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
883 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
884 |
msgstr "Med <strong>radio</strong> och <strong>checkbox</strong>: <em>Värde</em> och <em>LIKA MED</em> kan bara vara 'Yes' eller 'No', som betyder vald eller ej vald."
|
885 |
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
887 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
888 |
msgstr "<strong>drop-down</strong>: Du måste ange alla alternativ i etikett t.ex: Etikett/värde1,värde2,värde3"
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
891 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
892 |
msgstr "Med <strong>bild</strong>: Du kan använde en standard bild med (URL) under <em>Värde</em>; 'min, exakt, max störleken' angiven i KB;<em>LIKA MED</em> betyder max pixelstörlek (höjd eller bredd) för tumnagelbild."
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
895 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
896 |
msgstr "Med <strong>bild-url</strong>: Du kan anger en standardbild genom (URL) under <em>Värde</em>; <em>LIKA MED</em> betyder max pixelbred (höjden justeras proportioneligt)."
|
897 |
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
899 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
900 |
msgstr "Med <strong>registration-datum</strong>: <em>LIKA MED</em> betyder datum- och tidsformat."
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
903 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
904 |
msgstr "Med <strong>avatar</strong>: kan du använda en standardbild med (URL) under <em>Värde</em>; 'min, exakt, max storleken' angiven i KB;<em>LIKA MED</em> betyder max pixelstorlek (höjd eller bredd) för tumnagelbild."
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
907 |
#, fuzzy
|
908 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
909 |
msgstr "Med <strong>bild</strong>: Du kan använde en standard bild med (URL) under <em>Värde</em>; 'min, exakt, max störleken' angiven i KB;<em>LIKA MED</em> betyder max pixelstörlek (höjd eller bredd) för tumnagelbild."
|
910 |
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
912 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:648
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1089
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1533
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
|
917 |
msgid "Name"
|
918 |
msgstr "Namn"
|
919 |
|
|
|
920 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1092
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1876
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1881
|
926 |
msgid "Value"
|
927 |
msgstr "Värde"
|
928 |
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:639
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1095
|
933 |
msgid "Type"
|
934 |
msgstr "Typ"
|
935 |
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
940 |
msgid "Label"
|
941 |
msgstr "Etikett"
|
942 |
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:672
|
945 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
947 |
msgid "Description"
|
948 |
msgstr "Beskrivning"
|
949 |
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
952 |
msgid "Rules"
|
953 |
msgstr "Regler"
|
954 |
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
957 |
msgid "Actions"
|
958 |
msgstr "Åtgärder"
|
959 |
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
963 |
msgid "Fieldset"
|
964 |
msgstr "Fältsektion"
|
965 |
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
968 |
msgid "Can be empty"
|
969 |
msgstr "Kan vara töm"
|
970 |
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
973 |
msgid "Check for E-mail syntax"
|
974 |
msgstr "Kontrollera epostadressen"
|
975 |
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:688
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
978 |
msgid "Can be modified"
|
979 |
msgstr "Kan ändras"
|
980 |
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1139
|
983 |
msgid "Can be modified only if empty"
|
984 |
msgstr "Kan ändras endast om fältet är tomt"
|
985 |
|
986 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
|
987 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
988 |
msgid "Can be modified only by admin"
|
989 |
msgstr "Kan endast ändras av en administratör"
|
990 |
|
991 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
992 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
993 |
msgid "Can be modified only by admin or if empty"
|
994 |
msgstr "Kan ändras endast av en administratör eller om fältet är tomt"
|
995 |
|
996 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:692
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
998 |
msgid "Cannot be modified"
|
999 |
msgstr "Kan inte ändras"
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
1003 |
msgid "Should be equal TO"
|
1004 |
msgstr "Skall vara LIKA MED"
|
1005 |
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
1007 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
1008 |
msgid "Case sensitive"
|
1009 |
msgstr "Skiftlägeskänslig"
|
1010 |
|
1011 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
1012 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
1013 |
msgid "Regular Expression"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
1017 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1155
|
1018 |
msgid "Show the field in the registration"
|
1019 |
msgstr "Visa fält vid registrering"
|
1020 |
|
1021 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
1022 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
1023 |
msgid "Show the field in User's profile"
|
1024 |
msgstr "Visa fält i Användarprofil"
|
1025 |
|
1026 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1167
|
1028 |
+
#, fuzzy
|
1029 |
+
msgid "Show the field in Users Extended menu"
|
1030 |
msgstr "Visa fält i menyn F&A Utökat"
|
1031 |
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
1033 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1170
|
1034 |
#, fuzzy
|
1035 |
msgid "Show the field in the search engine"
|
1036 |
msgstr "Visa fält vid registrering"
|
1037 |
|
1038 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1173
|
1040 |
#, fuzzy
|
1041 |
msgid "Show the field in the blog"
|
1042 |
msgstr "Visa fält vid registrering"
|
1043 |
|
1044 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:723
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1176
|
1046 |
#, fuzzy
|
1047 |
msgid "Show the field if the role is at least:"
|
1048 |
msgstr "Visa fält vid registrering"
|
1049 |
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:725
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1052 |
msgid "Anonymous"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
1056 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1184
|
1057 |
+
msgid "User has 'view_cimy_extra_fields' capability"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:736
|
1061 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
1062 |
msgid "Send an email to the admin if the user changes its value"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:738
|
1066 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1197
|
1067 |
+
#, fuzzy
|
1068 |
+
msgid "Advanced options"
|
1069 |
+
msgstr "Åtgärder"
|
1070 |
+
|
1071 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
1072 |
msgid "Clear"
|
1073 |
msgstr "Nollställ"
|
1074 |
|
1075 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
|
1076 |
msgid "Invert selection"
|
1077 |
msgstr "Omvänd markering"
|
1078 |
|
1079 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
|
1080 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1081 |
msgstr "Är du säker på at du vill ta bort detta fält och all ev data som matats in?"
|
1082 |
|
1083 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1084 |
msgid "WordPress Fields"
|
1085 |
msgstr "WordPress-fält"
|
1086 |
|
1087 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
1088 |
msgid "None!"
|
1089 |
msgstr "Ingen!"
|
1090 |
|
1091 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
|
1092 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1077
|
1093 |
msgid "Order"
|
1094 |
msgstr "Ordningsföljd"
|
1095 |
|
1096 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1201
|
1097 |
msgid "Reset"
|
1098 |
msgstr "Nollställ"
|
1099 |
|
1100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1288
|
1101 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1903
|
1102 |
#, fuzzy
|
1103 |
msgid "select"
|
1104 |
msgstr "Ta bort"
|
1105 |
|
1106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1429
|
1107 |
#, php-format
|
1108 |
msgid "Search results for “%s”"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
|
1112 |
#, php-format
|
1113 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1465
|
1117 |
msgid "Search Users"
|
1118 |
msgstr "Sök Användare"
|
1119 |
|
1120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
1121 |
msgid "« Back to All Users"
|
1122 |
msgstr "« Tillbaka till Alla Användare"
|
1123 |
|
1124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1501
|
1125 |
msgid "Users per page"
|
1126 |
msgstr "Användare per sida"
|
1127 |
|
1128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1516
|
1129 |
msgid "Apply"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1543
|
1133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1134 |
msgid "Role"
|
1135 |
msgstr "Roll"
|
1136 |
|
1137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1553
|
1138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
|
1139 |
msgid "Posts"
|
1140 |
msgstr "Postningar"
|
1141 |
|
1142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1691
|
1143 |
msgid "View posts by this author"
|
1144 |
msgstr "Visa postningar av dessa skribent"
|
1145 |
|
1146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1725
|
1147 |
#, php-format
|
1148 |
msgid "e-mail: %s"
|
1149 |
msgstr "e-post: %s"
|
1150 |
|
1151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1847
|
1152 |
#, fuzzy
|
1153 |
msgid "Change"
|
1154 |
msgstr "Ändra ordning"
|
1155 |
|
1156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1872
|
1157 |
#, fuzzy
|
1158 |
msgid "Update selected users"
|
1159 |
msgstr "Ta bort valda fälter"
|
1160 |
|
1161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1162 |
#, fuzzy
|
1163 |
msgid "Update"
|
1164 |
msgstr "Uppdatera fält"
|
1165 |
|
1166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1908
|
1167 |
msgid "OK"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1909
|
1171 |
msgid "Cancel"
|
1172 |
msgstr ""
|
1173 |
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy
|
|
4 |
Website link: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar, recaptcha, captcha
|
6 |
Requires at least: 3.0
|
7 |
-
Tested up to: 3.
|
8 |
-
Stable tag: 2.0
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
@@ -44,8 +44,11 @@ future versions can have more.
|
|
44 |
|
45 |
= Other features: =
|
46 |
* reCAPTCHA
|
|
|
47 |
* custom registration logo (non MS installations)
|
48 |
* email confirmation (non MS installations)
|
|
|
|
|
49 |
* much more!
|
50 |
|
51 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
4 |
Website link: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar, recaptcha, captcha
|
6 |
Requires at least: 3.0
|
7 |
+
Tested up to: 3.2
|
8 |
+
Stable tag: 2.1.0
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
44 |
|
45 |
= Other features: =
|
46 |
* reCAPTCHA
|
47 |
+
* custom welcome email (non MS installations)
|
48 |
* custom registration logo (non MS installations)
|
49 |
* email confirmation (non MS installations)
|
50 |
+
* form confirmation (non MS installations)
|
51 |
+
* image upload with crop/resize functions
|
52 |
* much more!
|
53 |
|
54 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|