Version Description
Download this release
Release Info
Developer | Cimmo |
Plugin | Cimy User Extra Fields |
Version | 2.0.2 |
Comparing to | |
See all releases |
Code changes from version 2.0.1 to 2.0.2
- README_OFFICIAL.txt +12 -2
- cimy_uef_admin.php +64 -61
- cimy_uef_email_handler.php +19 -8
- cimy_uef_functions.php +23 -4
- cimy_uef_profile.php +66 -14
- cimy_uef_register.php +20 -14
- cimy_user_extra_fields.php +13 -9
- langs/cimy_uef-bg_BG.mo +0 -0
- langs/cimy_uef-bg_BG.po +357 -323
- langs/cimy_uef-da_DK.mo +0 -0
- langs/cimy_uef-da_DK.po +357 -323
- langs/cimy_uef-de_DE.mo +0 -0
- langs/cimy_uef-de_DE.po +357 -323
- langs/cimy_uef-es_ES.mo +0 -0
- langs/cimy_uef-es_ES.po +357 -323
- langs/cimy_uef-fr_FR.mo +0 -0
- langs/cimy_uef-fr_FR.po +557 -539
- langs/cimy_uef-it_IT.mo +0 -0
- langs/cimy_uef-it_IT.po +357 -323
- langs/cimy_uef-pl_PL.mo +0 -0
- langs/cimy_uef-pl_PL.po +357 -323
- langs/cimy_uef-pt_BR.mo +0 -0
- langs/cimy_uef-pt_BR.po +357 -323
- langs/cimy_uef-ru_RU.mo +0 -0
- langs/cimy_uef-ru_RU.po +357 -323
- langs/cimy_uef-sv_SE.mo +0 -0
- langs/cimy_uef-sv_SE.po +357 -323
- readme.txt +1 -1
README_OFFICIAL.txt
CHANGED
@@ -512,8 +512,8 @@ A: Probably you installed the first time WordPress on PHP4 and you experienced t
|
|
512 |
To fix the problem you need to create another administrator user and change admin user to another role and then back to administrator.
|
513 |
|
514 |
|
515 |
-
|
516 |
-
|
517 |
|
518 |
A: Because you missed to move cimy_uef_mu_activation.php file please check carefully the installation steps.
|
519 |
|
@@ -569,6 +569,16 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
|
|
569 |
|
570 |
|
571 |
CHANGELOG:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
572 |
v2.0.1 - 19/11/2010
|
573 |
- Added possibility to change individual values "on the fly" into the Extra Fields from A&U Extended page (thanks to Cuántica Webs for sponsoring it)
|
574 |
- Added Extra Fields group filtering in the A&U Extended page
|
512 |
To fix the problem you need to create another administrator user and change admin user to another role and then back to administrator.
|
513 |
|
514 |
|
515 |
+
Q1: I'm using your plug-in on WordPress MultiSite per-blog installation and when I register one user all Extra Fields are ignored, why?
|
516 |
+
Q2: I get this error: 'Fatal error: Call to undefined function cimy_uef_mu_blog_exists()', why?
|
517 |
|
518 |
A: Because you missed to move cimy_uef_mu_activation.php file please check carefully the installation steps.
|
519 |
|
569 |
|
570 |
|
571 |
CHANGELOG:
|
572 |
+
v2.0.2 - 05/02/2011
|
573 |
+
- Fixed for some WordPress MS unique installations DB table definitions were wrongly set (thanks to Yuri)
|
574 |
+
- Fixed registration date now works for all registered users, regardless when the field has been added
|
575 |
+
- Fixed dropdown-multi can't deselect all values
|
576 |
+
- Fixed registration emails are now sent with Blog's name as sender
|
577 |
+
- Fixed Extra Fields were shown to "anonymous" users even when setting minimum level to "subscriber" (thanks to Bruno PS)
|
578 |
+
- Fixed Extra Fields were not included in the welcome email when email confirmation was enabled (non MS only) (thanks to Michael T. Lee)
|
579 |
+
- Code cleanup
|
580 |
+
- Updated French translation (Bruno PS)
|
581 |
+
|
582 |
v2.0.1 - 19/11/2010
|
583 |
- Added possibility to change individual values "on the fly" into the Extra Fields from A&U Extended page (thanks to Cuántica Webs for sponsoring it)
|
584 |
- Added Extra Fields group filtering in the A&U Extended page
|
cimy_uef_admin.php
CHANGED
@@ -287,6 +287,9 @@ function cimy_admin_define_extra_fields() {
|
|
287 |
$show_level = $_POST['show_level'][$field_order];
|
288 |
$store_rule['show_level'] = $show_level;
|
289 |
|
|
|
|
|
|
|
290 |
// START CHECKING FOR ERRORS
|
291 |
if ($name == "")
|
292 |
$errors['name'] = __("Name not specified", $cimy_uef_domain);
|
@@ -451,106 +454,85 @@ function cimy_admin_define_extra_fields() {
|
|
451 |
unset($store_rule['max_length']);
|
452 |
|
453 |
// SHOW LEVEL
|
454 |
-
$show_anonymous = '';
|
455 |
$show_subscriber = '';
|
456 |
$show_contributor = '';
|
457 |
$show_author = '';
|
458 |
$show_editor = '';
|
459 |
$show_admin = '';
|
460 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
461 |
if ($action == "add") {
|
462 |
// CAN BE MODIFIED OR NOT
|
463 |
$selected_input[$store_rule['edit']] = ' selected="selected"';
|
464 |
|
465 |
// NAME
|
466 |
-
if ($name
|
467 |
$selected_input["name"] = $name;
|
468 |
-
|
469 |
-
$selected_input["name"] = '';
|
470 |
-
|
471 |
-
// LABEL
|
472 |
-
if ($label != "")
|
473 |
-
$selected_input["label"] = $label;
|
474 |
-
else
|
475 |
-
$selected_input["label"] = '';
|
476 |
-
|
477 |
-
// VALUE
|
478 |
-
if ($value != "")
|
479 |
-
$selected_input["value"] = $value;
|
480 |
-
else
|
481 |
-
$selected_input["value"] = '';
|
482 |
-
|
483 |
// DESCRIPTION
|
484 |
-
if ($desc
|
485 |
$selected_input["desc"] = $desc;
|
486 |
-
|
487 |
-
$selected_input["desc"] = '';
|
488 |
-
|
489 |
// TYPE
|
490 |
-
if ($type
|
491 |
$selected_input[$type] = ' selected="selected"';
|
492 |
-
|
493 |
-
$selected_input["text"] = ' selected="selected"';
|
494 |
-
|
495 |
// MIN LEN
|
496 |
-
if ($minlen
|
497 |
$selected_input["minlen"] = ' checked="checked"';
|
498 |
-
|
499 |
-
$selected_input["minlen"] = '';
|
500 |
-
|
501 |
if (isset($store_rule['min_length']))
|
502 |
$selected_input["min_length"] = $store_rule['min_length'];
|
503 |
-
|
504 |
-
$selected_input["min_length"] = '';
|
505 |
-
|
506 |
// EXACT LEN
|
507 |
-
if ($exactlen
|
508 |
$selected_input["exactlen"] = ' checked="checked"';
|
509 |
-
|
510 |
-
$selected_input["exactlen"] = '';
|
511 |
-
|
512 |
if (isset($store_rule['exact_length']))
|
513 |
$selected_input["exact_length"] = $store_rule['exact_length'];
|
514 |
-
else
|
515 |
-
$selected_input["exact_length"] = '';
|
516 |
|
517 |
// MAX LEN
|
518 |
-
if ($maxlen
|
519 |
$selected_input["maxlen"] = ' checked="checked"';
|
520 |
-
|
521 |
-
$selected_input["maxlen"] = '';
|
522 |
-
|
523 |
if (isset($store_rule['max_length']))
|
524 |
$selected_input["max_length"] = $store_rule['max_length'];
|
525 |
-
|
526 |
-
$selected_input["max_length"] = '';
|
527 |
-
|
528 |
// EQUAL TO
|
529 |
if (isset($equal))
|
530 |
$selected_input["equal"] = ' checked="checked"';
|
531 |
-
|
532 |
-
$selected_input["equal"] = '';
|
533 |
-
|
534 |
if (isset($store_rule['equal_to']))
|
535 |
$selected_input["equal_to"] = $store_rule['equal_to'];
|
536 |
-
|
537 |
-
$selected_input["equal_to"] = '';
|
538 |
-
|
539 |
if (isset($equalto_casesens))
|
540 |
$selected_input["equal_to_case_sensitive"] = ' checked="checked"';
|
541 |
-
else
|
542 |
-
$selected_input["equal_to_case_sensitive"] = '';
|
543 |
|
544 |
if (isset($equalto_regex))
|
545 |
$selected_input["equal_to_regex"] = ' checked="checked"';
|
546 |
-
else
|
547 |
-
$selected_input["equal_to_regex"] = '';
|
548 |
|
549 |
// CHECK EMAIL SYNTAX
|
550 |
if ($store_rule['email'] == true)
|
551 |
$selected_input["email"] = ' checked="checked"';
|
552 |
-
else
|
553 |
-
$selected_input["email"] = '';
|
554 |
|
555 |
// SHOW LEVEL
|
556 |
switch ($store_rule['show_level']) {
|
@@ -573,11 +555,13 @@ function cimy_admin_define_extra_fields() {
|
|
573 |
$show_admin = ' selected="selected"';
|
574 |
break;
|
575 |
}
|
|
|
|
|
|
|
|
|
576 |
}
|
577 |
// action is not "add"
|
578 |
else {
|
579 |
-
$selected_input["ok_edit"] = ' selected="selected"';
|
580 |
-
$show_anonymous = ' selected="selected"';
|
581 |
}
|
582 |
|
583 |
// CAN BE EMPTY
|
@@ -735,6 +719,10 @@ function cimy_admin_define_extra_fields() {
|
|
735 |
<option value="8"<?php echo $show_admin ?>><?php echo translate_user_role("Administrator"); ?></option>
|
736 |
</select>
|
737 |
<br />
|
|
|
|
|
|
|
|
|
738 |
</td>
|
739 |
<td align="center" style="vertical-align: middle;">
|
740 |
<p class="submit" style="border-width: 0px;">
|
@@ -1010,6 +998,11 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields, $err
|
|
1010 |
else
|
1011 |
$show_in_blog = "";
|
1012 |
|
|
|
|
|
|
|
|
|
|
|
1013 |
// SHOW LEVEL
|
1014 |
$show_anonymous = '';
|
1015 |
$show_subscriber = '';
|
@@ -1170,6 +1163,15 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields, $err
|
|
1170 |
<option value="8"<?php echo $show_admin ?>><?php echo translate_user_role("Administrator"); ?></option>
|
1171 |
</select>
|
1172 |
<br />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1173 |
</td>
|
1174 |
<td align="center" style="vertical-align: middle;">
|
1175 |
<p class="submit" style="border-width: 0px;">
|
@@ -1816,6 +1818,7 @@ function cimy_admin_users_list_page() {
|
|
1816 |
echo '</a>';
|
1817 |
}
|
1818 |
else if ($type == "registration-date") {
|
|
|
1819 |
if (isset($rules['equal_to']))
|
1820 |
$registration_date = cimy_get_formatted_date($field, $rules['equal_to']);
|
1821 |
else
|
@@ -1827,7 +1830,7 @@ function cimy_admin_users_list_page() {
|
|
1827 |
echo $field;
|
1828 |
|
1829 |
echo "</div>";
|
1830 |
-
if ((!in_array($type, $cimy_uef_file_types)) && ($type != "radio"))
|
1831 |
echo "[<a href=\"#\" onclick=\"editExtraField(".$user_object->ID.", '".$name."'); return false;\">".__("Change")."</a>]";
|
1832 |
|
1833 |
echo " </span></td>";
|
287 |
$show_level = $_POST['show_level'][$field_order];
|
288 |
$store_rule['show_level'] = $show_level;
|
289 |
|
290 |
+
$email_admin = $_POST['email_admin'][$field_order];
|
291 |
+
$email_admin == "1" ? $store_rule['email_admin'] = true : $store_rule['email_admin'] = false;
|
292 |
+
|
293 |
// START CHECKING FOR ERRORS
|
294 |
if ($name == "")
|
295 |
$errors['name'] = __("Name not specified", $cimy_uef_domain);
|
454 |
unset($store_rule['max_length']);
|
455 |
|
456 |
// SHOW LEVEL
|
457 |
+
$show_anonymous = ' selected="selected"';
|
458 |
$show_subscriber = '';
|
459 |
$show_contributor = '';
|
460 |
$show_author = '';
|
461 |
$show_editor = '';
|
462 |
$show_admin = '';
|
463 |
+
|
464 |
+
(empty($label)) ? $selected_input["label"] = '' : $selected_input["label"] = $label;
|
465 |
+
(empty($value)) ? $selected_input["value"] = '' : $selected_input["value"] = $value;
|
466 |
+
$selected_input["name"] = '';
|
467 |
+
$selected_input["desc"] = '';
|
468 |
+
$selected_input["text"] = ' selected="selected"';
|
469 |
+
$selected_input["min_length"] = '';
|
470 |
+
$selected_input["exact_length"] = '';
|
471 |
+
$selected_input["max_length"] = '';
|
472 |
+
$selected_input["equal"] = '';
|
473 |
+
$selected_input["equal_to"] = '';
|
474 |
+
$selected_input["equal_to_case_sensitive"] = '';
|
475 |
+
$selected_input["equal_to_regex"] = '';
|
476 |
+
$selected_input["email"] = '';
|
477 |
+
$selected_input["email_admin"] = '';
|
478 |
+
$selected_input["ok_edit"] = ' selected="selected"';
|
479 |
+
$selected_input["minlen"] = '';
|
480 |
+
$selected_input["exactlen"] = '';
|
481 |
+
$selected_input["maxlen"] = '';
|
482 |
+
|
483 |
if ($action == "add") {
|
484 |
// CAN BE MODIFIED OR NOT
|
485 |
$selected_input[$store_rule['edit']] = ' selected="selected"';
|
486 |
|
487 |
// NAME
|
488 |
+
if (!empty($name))
|
489 |
$selected_input["name"] = $name;
|
490 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
491 |
// DESCRIPTION
|
492 |
+
if (!empty($desc))
|
493 |
$selected_input["desc"] = $desc;
|
494 |
+
|
|
|
|
|
495 |
// TYPE
|
496 |
+
if (!empty($type))
|
497 |
$selected_input[$type] = ' selected="selected"';
|
498 |
+
|
|
|
|
|
499 |
// MIN LEN
|
500 |
+
if (!empty($minlen))
|
501 |
$selected_input["minlen"] = ' checked="checked"';
|
502 |
+
|
|
|
|
|
503 |
if (isset($store_rule['min_length']))
|
504 |
$selected_input["min_length"] = $store_rule['min_length'];
|
505 |
+
|
|
|
|
|
506 |
// EXACT LEN
|
507 |
+
if (!empty($exactlen))
|
508 |
$selected_input["exactlen"] = ' checked="checked"';
|
509 |
+
|
|
|
|
|
510 |
if (isset($store_rule['exact_length']))
|
511 |
$selected_input["exact_length"] = $store_rule['exact_length'];
|
|
|
|
|
512 |
|
513 |
// MAX LEN
|
514 |
+
if (!empty($maxlen))
|
515 |
$selected_input["maxlen"] = ' checked="checked"';
|
516 |
+
|
|
|
|
|
517 |
if (isset($store_rule['max_length']))
|
518 |
$selected_input["max_length"] = $store_rule['max_length'];
|
519 |
+
|
|
|
|
|
520 |
// EQUAL TO
|
521 |
if (isset($equal))
|
522 |
$selected_input["equal"] = ' checked="checked"';
|
523 |
+
|
|
|
|
|
524 |
if (isset($store_rule['equal_to']))
|
525 |
$selected_input["equal_to"] = $store_rule['equal_to'];
|
526 |
+
|
|
|
|
|
527 |
if (isset($equalto_casesens))
|
528 |
$selected_input["equal_to_case_sensitive"] = ' checked="checked"';
|
|
|
|
|
529 |
|
530 |
if (isset($equalto_regex))
|
531 |
$selected_input["equal_to_regex"] = ' checked="checked"';
|
|
|
|
|
532 |
|
533 |
// CHECK EMAIL SYNTAX
|
534 |
if ($store_rule['email'] == true)
|
535 |
$selected_input["email"] = ' checked="checked"';
|
|
|
|
|
536 |
|
537 |
// SHOW LEVEL
|
538 |
switch ($store_rule['show_level']) {
|
555 |
$show_admin = ' selected="selected"';
|
556 |
break;
|
557 |
}
|
558 |
+
|
559 |
+
// EMAIL ADMIN
|
560 |
+
if ($store_rule['email_admin'] == true)
|
561 |
+
$selected_input["email_admin"] = ' checked="checked"';
|
562 |
}
|
563 |
// action is not "add"
|
564 |
else {
|
|
|
|
|
565 |
}
|
566 |
|
567 |
// CAN BE EMPTY
|
719 |
<option value="8"<?php echo $show_admin ?>><?php echo translate_user_role("Administrator"); ?></option>
|
720 |
</select>
|
721 |
<br />
|
722 |
+
|
723 |
+
<!-- EMAIL ADMIN -->
|
724 |
+
<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 />
|
725 |
+
|
726 |
</td>
|
727 |
<td align="center" style="vertical-align: middle;">
|
728 |
<p class="submit" style="border-width: 0px;">
|
998 |
else
|
999 |
$show_in_blog = "";
|
1000 |
|
1001 |
+
if ($rules['email_admin'])
|
1002 |
+
$email_admin = ' checked="checked"';
|
1003 |
+
else
|
1004 |
+
$email_admin = "";
|
1005 |
+
|
1006 |
// SHOW LEVEL
|
1007 |
$show_anonymous = '';
|
1008 |
$show_subscriber = '';
|
1163 |
<option value="8"<?php echo $show_admin ?>><?php echo translate_user_role("Administrator"); ?></option>
|
1164 |
</select>
|
1165 |
<br />
|
1166 |
+
|
1167 |
+
<?php
|
1168 |
+
if (!$wp_fields) {
|
1169 |
+
?>
|
1170 |
+
<!-- EMAIL ADMIN -->
|
1171 |
+
<input type="checkbox" name="email_admin[<?php echo $order ?>]" value="1"<?php echo $email_admin ?> /> <?php _e("Send an email to the admin if the user changes its value", $cimy_uef_domain); ?><br />
|
1172 |
+
<?php
|
1173 |
+
}
|
1174 |
+
?>
|
1175 |
</td>
|
1176 |
<td align="center" style="vertical-align: middle;">
|
1177 |
<p class="submit" style="border-width: 0px;">
|
1818 |
echo '</a>';
|
1819 |
}
|
1820 |
else if ($type == "registration-date") {
|
1821 |
+
$field = cimy_get_registration_date($user_object->ID, $field);
|
1822 |
if (isset($rules['equal_to']))
|
1823 |
$registration_date = cimy_get_formatted_date($field, $rules['equal_to']);
|
1824 |
else
|
1830 |
echo $field;
|
1831 |
|
1832 |
echo "</div>";
|
1833 |
+
if ((!in_array($type, $cimy_uef_file_types)) && ($type != "radio") && ($type != "registration-date"))
|
1834 |
echo "[<a href=\"#\" onclick=\"editExtraField(".$user_object->ID.", '".$name."'); return false;\">".__("Change")."</a>]";
|
1835 |
|
1836 |
echo " </span></td>";
|
cimy_uef_email_handler.php
CHANGED
@@ -24,24 +24,32 @@ function wp_new_user_notification($user_id, $plaintext_pass = '') {
|
|
24 |
}
|
25 |
endif;
|
26 |
|
27 |
-
function wp_new_user_notification_original($user_id, $plaintext_pass = '', $include_fields = false) {
|
28 |
$user = new WP_User($user_id);
|
29 |
|
30 |
$user_login = stripslashes($user->user_login);
|
31 |
$user_email = stripslashes($user->user_email);
|
|
|
32 |
|
33 |
// The blogname option is escaped with esc_html on the way into the database in sanitize_option
|
34 |
// we want to reverse this for the plain text arena of emails.
|
35 |
$blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
$message = sprintf(__('New user registration on your site %s:'), $blogname) . "\r\n\r\n";
|
38 |
$message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
|
39 |
$message .= sprintf(__('E-mail: %s'), $user_email) . "\r\n";
|
40 |
|
41 |
if ($include_fields)
|
42 |
-
$message .= cimy_uef_mail_fields($user);
|
43 |
|
44 |
-
@wp_mail(
|
45 |
|
46 |
if ( empty($plaintext_pass) )
|
47 |
return;
|
@@ -50,10 +58,10 @@ function wp_new_user_notification_original($user_id, $plaintext_pass = '', $incl
|
|
50 |
$message .= sprintf(__('Password: %s'), $plaintext_pass) . "\r\n";
|
51 |
|
52 |
if ($include_fields)
|
53 |
-
$message .= cimy_uef_mail_fields($user);
|
54 |
$message .= wp_login_url() . "\r\n";
|
55 |
|
56 |
-
wp_mail($user_email, sprintf(__('[%s] Your username and password'), $blogname), $message);
|
57 |
}
|
58 |
|
59 |
function cimy_uef_mail_fields($user = false, $activation_data = false) {
|
@@ -73,9 +81,11 @@ function cimy_uef_mail_fields($user = false, $activation_data = false) {
|
|
73 |
$meta = $activation_data["meta"];
|
74 |
|
75 |
// neet to do it here, otherwise I pick up main options instead of blog's ones
|
76 |
-
|
|
|
77 |
$options = cimy_get_options();
|
78 |
-
|
|
|
79 |
|
80 |
if (!$options["mail_include_fields"])
|
81 |
return $message;
|
@@ -259,7 +269,8 @@ function cimy_uef_activate_signup($key) {
|
|
259 |
if ( isset( $user_already_exists ) )
|
260 |
return new WP_Error( 'user_already_exists', __( 'That username is already activated.', $cimy_uef_domain), $signup);
|
261 |
|
262 |
-
|
|
|
263 |
return array('user_id' => $user_id, 'password' => $password, 'meta' => $meta);
|
264 |
}
|
265 |
|
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);
|
31 |
$user_email = stripslashes($user->user_email);
|
32 |
+
$admin_email = get_option('admin_email');
|
33 |
|
34 |
// The blogname option is escaped with esc_html on the way into the database in sanitize_option
|
35 |
// we want to reverse this for the plain text arena of emails.
|
36 |
$blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
|
37 |
+
// Get the site domain and get rid of www.
|
38 |
+
$sitename = strtolower( $_SERVER['SERVER_NAME'] );
|
39 |
+
if ( substr( $sitename, 0, 4 ) == 'www.' )
|
40 |
+
$sitename = substr( $sitename, 4 );
|
41 |
+
|
42 |
+
$from_email = 'wordpress@' . $sitename;
|
43 |
+
$headers = sprintf("From: %s <%s>\r\n\\", $blogname, $from_email);
|
44 |
|
45 |
$message = sprintf(__('New user registration on your site %s:'), $blogname) . "\r\n\r\n";
|
46 |
$message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
|
47 |
$message .= sprintf(__('E-mail: %s'), $user_email) . "\r\n";
|
48 |
|
49 |
if ($include_fields)
|
50 |
+
$message .= cimy_uef_mail_fields($user, $activation_data);
|
51 |
|
52 |
+
@wp_mail($admin_email, sprintf(__('[%s] New User Registration'), $blogname), $message, $headers);
|
53 |
|
54 |
if ( empty($plaintext_pass) )
|
55 |
return;
|
58 |
$message .= sprintf(__('Password: %s'), $plaintext_pass) . "\r\n";
|
59 |
|
60 |
if ($include_fields)
|
61 |
+
$message .= cimy_uef_mail_fields($user, $activation_data);
|
62 |
$message .= wp_login_url() . "\r\n";
|
63 |
|
64 |
+
wp_mail($user_email, sprintf(__('[%s] Your username and password'), $blogname), $message, $headers);
|
65 |
}
|
66 |
|
67 |
function cimy_uef_mail_fields($user = false, $activation_data = false) {
|
81 |
$meta = $activation_data["meta"];
|
82 |
|
83 |
// neet to do it here, otherwise I pick up main options instead of blog's ones
|
84 |
+
if (is_multisite())
|
85 |
+
cimy_switch_to_blog($meta);
|
86 |
$options = cimy_get_options();
|
87 |
+
if (is_multisite())
|
88 |
+
restore_current_blog();
|
89 |
|
90 |
if (!$options["mail_include_fields"])
|
91 |
return $message;
|
269 |
if ( isset( $user_already_exists ) )
|
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 |
|
cimy_uef_functions.php
CHANGED
@@ -282,7 +282,7 @@ function get_cimyFieldValue($user_id, $field_name, $field_value=false) {
|
|
282 |
else
|
283 |
return NULL;
|
284 |
|
285 |
-
$field_data = cimy_change_radio_labels($field_data);
|
286 |
|
287 |
if (($field_name) && ($user_id))
|
288 |
$field_data = $field_data[0]['VALUE'];
|
@@ -290,9 +290,9 @@ function get_cimyFieldValue($user_id, $field_name, $field_value=false) {
|
|
290 |
return $field_data;
|
291 |
}
|
292 |
|
293 |
-
function cimy_change_radio_labels($field_data) {
|
294 |
$i = 0;
|
295 |
-
|
296 |
while ($i < count($field_data)) {
|
297 |
if ($field_data[$i]['TYPE'] == "radio") {
|
298 |
$field_data[$i]['VALUE'] = $field_data[$i]['LABEL'];
|
@@ -302,7 +302,13 @@ function cimy_change_radio_labels($field_data) {
|
|
302 |
|
303 |
$field_data[$i]['LABEL'] = $ret['label'];
|
304 |
}
|
305 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
$i++;
|
307 |
}
|
308 |
|
@@ -481,4 +487,17 @@ function cimy_switch_current_blog($hidden_field=false) {
|
|
481 |
}
|
482 |
}
|
483 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
484 |
?>
|
282 |
else
|
283 |
return NULL;
|
284 |
|
285 |
+
$field_data = cimy_change_radio_labels($field_data, $user_id);
|
286 |
|
287 |
if (($field_name) && ($user_id))
|
288 |
$field_data = $field_data[0]['VALUE'];
|
290 |
return $field_data;
|
291 |
}
|
292 |
|
293 |
+
function cimy_change_radio_labels($field_data, $user_id) {
|
294 |
$i = 0;
|
295 |
+
|
296 |
while ($i < count($field_data)) {
|
297 |
if ($field_data[$i]['TYPE'] == "radio") {
|
298 |
$field_data[$i]['VALUE'] = $field_data[$i]['LABEL'];
|
302 |
|
303 |
$field_data[$i]['LABEL'] = $ret['label'];
|
304 |
}
|
305 |
+
else if ($field_data[$i]['TYPE'] == "registration-date") {
|
306 |
+
if (isset($field_data[$i]['user_id']))
|
307 |
+
$field_data[$i]['VALUE'] = cimy_get_registration_date($field_data[$i]['user_id'], $field_data[$i]['VALUE']);
|
308 |
+
else
|
309 |
+
$field_data[$i]['VALUE'] = cimy_get_registration_date($user_id, $field_data[$i]['VALUE']);
|
310 |
+
}
|
311 |
+
|
312 |
$i++;
|
313 |
}
|
314 |
|
487 |
}
|
488 |
}
|
489 |
|
490 |
+
function cimy_get_registration_date($user_id, $value) {
|
491 |
+
if (!empty($value))
|
492 |
+
return $value;
|
493 |
+
|
494 |
+
$author_meta = get_userdata(intval($user_id));
|
495 |
+
$author_registered = $author_meta->user_registered;
|
496 |
+
if (!empty($author_registered))
|
497 |
+
if (($date = strtotime($author_registered)) !== FALSE);
|
498 |
+
return $date;
|
499 |
+
|
500 |
+
return "";
|
501 |
+
}
|
502 |
+
|
503 |
?>
|
cimy_uef_profile.php
CHANGED
@@ -121,6 +121,7 @@ function cimy_extract_ExtraFields() {
|
|
121 |
echo "\n\t";
|
122 |
|
123 |
$value = esc_attr($value);
|
|
|
124 |
|
125 |
switch($type) {
|
126 |
case "picture-url":
|
@@ -318,6 +319,7 @@ function cimy_extract_ExtraFields() {
|
|
318 |
break;
|
319 |
|
320 |
case "registration-date":
|
|
|
321 |
if (isset($rules['equal_to']))
|
322 |
$obj_value = cimy_get_formatted_date($value, $rules['equal_to']);
|
323 |
else
|
@@ -378,6 +380,7 @@ function cimy_extract_ExtraFields() {
|
|
378 |
global $cimy_uef_plugins_dir;
|
379 |
|
380 |
$blog_path = $cuef_upload_path;
|
|
|
381 |
|
382 |
if (($cimy_uef_plugins_dir == "plugins") && (is_multisite())) {
|
383 |
global $blog_id;
|
@@ -419,8 +422,8 @@ function cimy_extract_ExtraFields() {
|
|
419 |
// take the "can be modified" rule just set before
|
420 |
$dis_delete_img = $obj_disabled;
|
421 |
|
422 |
-
|
423 |
-
|
424 |
}
|
425 |
|
426 |
echo '<input type="checkbox" name="'.$input_name.'_del" value="1" style="width:auto; border:0; background:white;"'.$dis_delete_img.' />';
|
@@ -454,6 +457,8 @@ function cimy_extract_ExtraFields() {
|
|
454 |
echo "<br />".__("Picture URL:", $cimy_uef_domain)."<br />\n\t\t";
|
455 |
}
|
456 |
|
|
|
|
|
457 |
// write to the html the form object built
|
458 |
if ($type != "registration-date")
|
459 |
echo $form_object;
|
@@ -489,12 +494,12 @@ function cimy_extract_ExtraFields() {
|
|
489 |
}
|
490 |
|
491 |
function cimy_update_ExtraFields() {
|
492 |
-
global $wpdb, $wpdb_data_table, $user_ID, $max_length_value, $fields_name_prefix, $cimy_uef_file_types, $user_level;
|
493 |
|
494 |
// if updating meta-data from registration post then exit
|
495 |
if (isset($_POST['cimy_post']))
|
496 |
return;
|
497 |
-
|
498 |
if (isset($_POST['user_id'])) {
|
499 |
$get_user_id = $_POST['user_id'];
|
500 |
|
@@ -505,15 +510,18 @@ function cimy_update_ExtraFields() {
|
|
505 |
return;
|
506 |
|
507 |
$get_user_id = intval($get_user_id);
|
|
|
|
|
|
|
508 |
$extra_fields = get_cimyFields(false, true);
|
509 |
|
510 |
$query = "UPDATE ".$wpdb_data_table." SET VALUE=CASE FIELD_ID";
|
511 |
$i = 0;
|
512 |
|
513 |
$field_ids = "";
|
|
|
514 |
|
515 |
foreach ($extra_fields as $thisField) {
|
516 |
-
|
517 |
$field_id = $thisField["ID"];
|
518 |
$name = $thisField["NAME"];
|
519 |
$type = $thisField["TYPE"];
|
@@ -535,6 +543,8 @@ function cimy_update_ExtraFields() {
|
|
535 |
continue;
|
536 |
}
|
537 |
|
|
|
|
|
538 |
if ((isset($_POST[$input_name])) && (!in_array($type, $cimy_uef_file_types))) {
|
539 |
if ($type == "dropdown-multi")
|
540 |
$field_value = stripslashes(implode(",", $_POST[$input_name]));
|
@@ -561,22 +571,27 @@ function cimy_update_ExtraFields() {
|
|
561 |
$query.= " WHEN ".$field_id." THEN ";
|
562 |
|
563 |
switch ($type) {
|
|
|
|
|
|
|
|
|
564 |
case 'picture-url':
|
565 |
case 'textarea':
|
566 |
case 'textarea-rich':
|
567 |
-
case 'dropdown':
|
568 |
-
case 'dropdown-multi':
|
569 |
case 'password':
|
570 |
case 'text':
|
571 |
$value = "'".$field_value."'";
|
|
|
572 |
break;
|
573 |
|
574 |
case 'checkbox':
|
575 |
$value = $field_value == '1' ? "'YES'" : "'NO'";
|
|
|
576 |
break;
|
577 |
|
578 |
case 'radio':
|
579 |
$value = $field_value == $field_id ? "'selected'" : "''";
|
|
|
580 |
break;
|
581 |
}
|
582 |
|
@@ -588,9 +603,6 @@ function cimy_update_ExtraFields() {
|
|
588 |
$rules = $thisField['RULES'];
|
589 |
|
590 |
if (in_array($type, $cimy_uef_file_types)) {
|
591 |
-
$profileuser = get_user_to_edit($get_user_id);
|
592 |
-
$user_login = $profileuser->user_login;
|
593 |
-
|
594 |
if ($type == "avatar") {
|
595 |
// since avatars are drawn max to 512px then we can save bandwith resizing, do it!
|
596 |
$rules['equal_to'] = 512;
|
@@ -601,8 +613,8 @@ function cimy_update_ExtraFields() {
|
|
601 |
else
|
602 |
$delete_file = false;
|
603 |
|
604 |
-
if (isset($_POST[$input_name.
|
605 |
-
$old_file = stripslashes($_POST[$input_name.
|
606 |
else
|
607 |
$old_file = false;
|
608 |
|
@@ -617,10 +629,13 @@ function cimy_update_ExtraFields() {
|
|
617 |
$field_ids.= $field_id;
|
618 |
|
619 |
$value = "'".$field_value."'";
|
620 |
-
|
|
|
621 |
$query.= " WHEN ".$field_id." THEN ";
|
622 |
$query.= $value;
|
623 |
}
|
|
|
|
|
624 |
}
|
625 |
|
626 |
if ($type == 'checkbox') {
|
@@ -634,12 +649,42 @@ function cimy_update_ExtraFields() {
|
|
634 |
$i = 1;
|
635 |
|
636 |
$field_ids.= $field_id;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
637 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
638 |
$query.= " WHEN ".$field_id." THEN ";
|
639 |
-
$query.=
|
640 |
}
|
641 |
}
|
642 |
}
|
|
|
|
|
|
|
|
|
643 |
}
|
644 |
|
645 |
if ($i > 0) {
|
@@ -648,6 +693,13 @@ function cimy_update_ExtraFields() {
|
|
648 |
// $query WILL BE: UPDATE <table> SET VALUE=CASE FIELD_ID WHEN <field_id1> THEN <value1> [WHEN ... THEN ...] ELSE FIELD_ID END WHERE FIELD_ID IN(<field_id1>, [<field_id2>...]) AND USER_ID=<user_id>
|
649 |
$wpdb->query($query);
|
650 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
651 |
}
|
652 |
|
653 |
?>
|
121 |
echo "\n\t";
|
122 |
|
123 |
$value = esc_attr($value);
|
124 |
+
$old_value = esc_attr($old_value);
|
125 |
|
126 |
switch($type) {
|
127 |
case "picture-url":
|
319 |
break;
|
320 |
|
321 |
case "registration-date":
|
322 |
+
$value = cimy_get_registration_date($get_user_id, $value);
|
323 |
if (isset($rules['equal_to']))
|
324 |
$obj_value = cimy_get_formatted_date($value, $rules['equal_to']);
|
325 |
else
|
380 |
global $cimy_uef_plugins_dir;
|
381 |
|
382 |
$blog_path = $cuef_upload_path;
|
383 |
+
$old_value = basename($old_value);
|
384 |
|
385 |
if (($cimy_uef_plugins_dir == "plugins") && (is_multisite())) {
|
386 |
global $blog_id;
|
422 |
// take the "can be modified" rule just set before
|
423 |
$dis_delete_img = $obj_disabled;
|
424 |
|
425 |
+
// echo '<input type="hidden" name="'.$input_name.'_oldfile" value="'.basename($value).'" />';
|
426 |
+
// echo "\n\t\t";
|
427 |
}
|
428 |
|
429 |
echo '<input type="checkbox" name="'.$input_name.'_del" value="1" style="width:auto; border:0; background:white;"'.$dis_delete_img.' />';
|
457 |
echo "<br />".__("Picture URL:", $cimy_uef_domain)."<br />\n\t\t";
|
458 |
}
|
459 |
|
460 |
+
// write previous value
|
461 |
+
echo "<input type=\"hidden\" name=\"".$input_name."_".$field_id."_prev_value\" value=\"".$old_value."\" />\n\t\t";
|
462 |
// write to the html the form object built
|
463 |
if ($type != "registration-date")
|
464 |
echo $form_object;
|
494 |
}
|
495 |
|
496 |
function cimy_update_ExtraFields() {
|
497 |
+
global $wpdb, $wpdb_data_table, $user_ID, $max_length_value, $fields_name_prefix, $cimy_uef_file_types, $user_level, $cimy_uef_domain;
|
498 |
|
499 |
// if updating meta-data from registration post then exit
|
500 |
if (isset($_POST['cimy_post']))
|
501 |
return;
|
502 |
+
|
503 |
if (isset($_POST['user_id'])) {
|
504 |
$get_user_id = $_POST['user_id'];
|
505 |
|
510 |
return;
|
511 |
|
512 |
$get_user_id = intval($get_user_id);
|
513 |
+
$profileuser = get_user_to_edit($get_user_id);
|
514 |
+
$user_login = $profileuser->user_login;
|
515 |
+
$user_displayname = $profileuser->display_name;
|
516 |
$extra_fields = get_cimyFields(false, true);
|
517 |
|
518 |
$query = "UPDATE ".$wpdb_data_table." SET VALUE=CASE FIELD_ID";
|
519 |
$i = 0;
|
520 |
|
521 |
$field_ids = "";
|
522 |
+
$mail_changes = "";
|
523 |
|
524 |
foreach ($extra_fields as $thisField) {
|
|
|
525 |
$field_id = $thisField["ID"];
|
526 |
$name = $thisField["NAME"];
|
527 |
$type = $thisField["TYPE"];
|
543 |
continue;
|
544 |
}
|
545 |
|
546 |
+
$prev_value = $wpdb->escape(stripslashes($_POST[$input_name."_".$field_id."_prev_value"]));
|
547 |
+
|
548 |
if ((isset($_POST[$input_name])) && (!in_array($type, $cimy_uef_file_types))) {
|
549 |
if ($type == "dropdown-multi")
|
550 |
$field_value = stripslashes(implode(",", $_POST[$input_name]));
|
571 |
$query.= " WHEN ".$field_id." THEN ";
|
572 |
|
573 |
switch ($type) {
|
574 |
+
case 'dropdown':
|
575 |
+
case 'dropdown-multi':
|
576 |
+
$ret = cimy_dropDownOptions($label, $field_value);
|
577 |
+
$label = $ret['label'];
|
578 |
case 'picture-url':
|
579 |
case 'textarea':
|
580 |
case 'textarea-rich':
|
|
|
|
|
581 |
case 'password':
|
582 |
case 'text':
|
583 |
$value = "'".$field_value."'";
|
584 |
+
$prev_value = "'".$prev_value."'";
|
585 |
break;
|
586 |
|
587 |
case 'checkbox':
|
588 |
$value = $field_value == '1' ? "'YES'" : "'NO'";
|
589 |
+
$prev_value = $prev_value == "YES" ? "'YES'" : "'NO'";
|
590 |
break;
|
591 |
|
592 |
case 'radio':
|
593 |
$value = $field_value == $field_id ? "'selected'" : "''";
|
594 |
+
$prev_value = "'".$prev_value."'";
|
595 |
break;
|
596 |
}
|
597 |
|
603 |
$rules = $thisField['RULES'];
|
604 |
|
605 |
if (in_array($type, $cimy_uef_file_types)) {
|
|
|
|
|
|
|
606 |
if ($type == "avatar") {
|
607 |
// since avatars are drawn max to 512px then we can save bandwith resizing, do it!
|
608 |
$rules['equal_to'] = 512;
|
613 |
else
|
614 |
$delete_file = false;
|
615 |
|
616 |
+
if (isset($_POST[$input_name."_".$field_id."_prev_value"]))
|
617 |
+
$old_file = stripslashes($_POST[$input_name."_".$field_id."_prev_value"]);
|
618 |
else
|
619 |
$old_file = false;
|
620 |
|
629 |
$field_ids.= $field_id;
|
630 |
|
631 |
$value = "'".$field_value."'";
|
632 |
+
$prev_value = "'".$prev_value."'";
|
633 |
+
|
634 |
$query.= " WHEN ".$field_id." THEN ";
|
635 |
$query.= $value;
|
636 |
}
|
637 |
+
else
|
638 |
+
$prev_value = $value;
|
639 |
}
|
640 |
|
641 |
if ($type == 'checkbox') {
|
649 |
$i = 1;
|
650 |
|
651 |
$field_ids.= $field_id;
|
652 |
+
|
653 |
+
$field_value = "NO";
|
654 |
+
$value = "'".$field_value."'";
|
655 |
+
$prev_value = $prev_value == "YES" ? "'YES'" : "'NO'";
|
656 |
+
|
657 |
+
$query.= " WHEN ".$field_id." THEN ";
|
658 |
+
$query.= $value;
|
659 |
+
}
|
660 |
+
}
|
661 |
+
|
662 |
+
if ($type == 'dropdown-multi') {
|
663 |
+
// if can be editable then write ''
|
664 |
+
// there is no way to understand if was YES or NO previously
|
665 |
+
// without adding other hidden inputs so write always
|
666 |
+
if (($rules['edit'] == "ok_edit") || (($rules['edit'] == 'edit_only_by_admin') && (current_user_can('edit_users')))) {
|
667 |
+
if ($i > 0)
|
668 |
+
$field_ids.= ", ";
|
669 |
+
else
|
670 |
+
$i = 1;
|
671 |
|
672 |
+
$field_ids.= $field_id;
|
673 |
+
|
674 |
+
$field_value = '';
|
675 |
+
$value = "'".$field_value."'";
|
676 |
+
$prev_value = "'".$prev_value."'";
|
677 |
+
$ret = cimy_dropDownOptions($label, $field_value);
|
678 |
+
$label = $ret['label'];
|
679 |
$query.= " WHEN ".$field_id." THEN ";
|
680 |
+
$query.= $value;
|
681 |
}
|
682 |
}
|
683 |
}
|
684 |
+
if (($rules["email_admin"]) && ($value != $prev_value) && ($type != "registration-date")) {
|
685 |
+
$mail_changes.= sprintf(__("%s previous value: %s new value: %s", $cimy_uef_domain), $label, stripslashes($prev_value), stripslashes($value));
|
686 |
+
$mail_changes.= "\r\n";
|
687 |
+
}
|
688 |
}
|
689 |
|
690 |
if ($i > 0) {
|
693 |
// $query WILL BE: UPDATE <table> SET VALUE=CASE FIELD_ID WHEN <field_id1> THEN <value1> [WHEN ... THEN ...] ELSE FIELD_ID END WHERE FIELD_ID IN(<field_id1>, [<field_id2>...]) AND USER_ID=<user_id>
|
694 |
$wpdb->query($query);
|
695 |
}
|
696 |
+
|
697 |
+
// mail only if set and if there is something to mail
|
698 |
+
if (!empty($mail_changes)) {
|
699 |
+
$admin_email = get_option('admin_email');
|
700 |
+
$mail_subject = sprintf(__("%s (%s) has changed one or more fields", $cimy_uef_domain), $user_displayname, $user_login);
|
701 |
+
wp_mail($admin_email, $mail_subject, $mail_changes);
|
702 |
+
}
|
703 |
}
|
704 |
|
705 |
?>
|
cimy_uef_register.php
CHANGED
@@ -80,9 +80,11 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
|
|
80 |
if ($_POST["action"] == "adduser")
|
81 |
return;
|
82 |
|
83 |
-
|
84 |
-
|
85 |
-
|
|
|
|
|
86 |
|
87 |
$options = cimy_get_options();
|
88 |
$extra_fields = get_cimyFields(false, true);
|
@@ -128,7 +130,7 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
|
|
128 |
|
129 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
130 |
// apply only for EXTRA FIELDS
|
131 |
-
if ($
|
132 |
continue;
|
133 |
|
134 |
// if show_level == anonymous then do NOT ovverride other show_xyz rules
|
@@ -201,7 +203,7 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
|
|
201 |
break;
|
202 |
|
203 |
case 'registration-date':
|
204 |
-
$field_value =
|
205 |
break;
|
206 |
}
|
207 |
|
@@ -277,9 +279,11 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
277 |
if ($_POST["action"] == "adduser")
|
278 |
return $errors;
|
279 |
|
280 |
-
|
281 |
-
|
282 |
-
|
|
|
|
|
283 |
|
284 |
$extra_fields = get_cimyFields(false, true);
|
285 |
$wp_fields = get_cimyFields(true);
|
@@ -315,7 +319,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
315 |
|
316 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
317 |
// apply only for EXTRA FIELDS
|
318 |
-
if ($
|
319 |
continue;
|
320 |
|
321 |
// if show_level == anonymous then do NOT ovverride other show_xyz rules
|
@@ -382,7 +386,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
382 |
$file_size = $_FILES[$input_name]['size'] / 1024;
|
383 |
$file_type = $_FILES[$input_name]['type'];
|
384 |
$value = $_FILES[$input_name]['name'];
|
385 |
-
$old_file = $_POST[$input_name."
|
386 |
$del_old_file = $_POST[$input_name."_del"];
|
387 |
}
|
388 |
|
@@ -557,9 +561,11 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
557 |
|
558 |
// cimy_switch_to_blog();
|
559 |
|
560 |
-
|
561 |
-
|
562 |
-
|
|
|
|
|
563 |
|
564 |
// needed by cimy_uef_init_mce.php
|
565 |
$cimy_uef_register_page = true;
|
@@ -629,7 +635,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
629 |
|
630 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
631 |
// apply only for EXTRA FIELDS
|
632 |
-
if (($
|
633 |
continue;
|
634 |
|
635 |
// if show_level == anonymous then do NOT ovverride other show_xyz rules
|
80 |
if ($_POST["action"] == "adduser")
|
81 |
return;
|
82 |
|
83 |
+
$my_user_level = $user_level;
|
84 |
+
|
85 |
+
// -1 == anonymous
|
86 |
+
if (!is_user_logged_in())
|
87 |
+
$my_user_level = -1;
|
88 |
|
89 |
$options = cimy_get_options();
|
90 |
$extra_fields = get_cimyFields(false, true);
|
130 |
|
131 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
132 |
// apply only for EXTRA FIELDS
|
133 |
+
if ($my_user_level < $rules['show_level'])
|
134 |
continue;
|
135 |
|
136 |
// if show_level == anonymous then do NOT ovverride other show_xyz rules
|
203 |
break;
|
204 |
|
205 |
case 'registration-date':
|
206 |
+
$field_value = time();
|
207 |
break;
|
208 |
}
|
209 |
|
279 |
if ($_POST["action"] == "adduser")
|
280 |
return $errors;
|
281 |
|
282 |
+
$my_user_level = $user_level;
|
283 |
+
|
284 |
+
// -1 == anonymous
|
285 |
+
if (!is_user_logged_in())
|
286 |
+
$my_user_level = -1;
|
287 |
|
288 |
$extra_fields = get_cimyFields(false, true);
|
289 |
$wp_fields = get_cimyFields(true);
|
319 |
|
320 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
321 |
// apply only for EXTRA FIELDS
|
322 |
+
if ($my_user_level < $rules['show_level'])
|
323 |
continue;
|
324 |
|
325 |
// if show_level == anonymous then do NOT ovverride other show_xyz rules
|
386 |
$file_size = $_FILES[$input_name]['size'] / 1024;
|
387 |
$file_type = $_FILES[$input_name]['type'];
|
388 |
$value = $_FILES[$input_name]['name'];
|
389 |
+
$old_file = $_POST[$input_name."_".$field_id."_prev_value"];
|
390 |
$del_old_file = $_POST[$input_name."_del"];
|
391 |
}
|
392 |
|
561 |
|
562 |
// cimy_switch_to_blog();
|
563 |
|
564 |
+
$my_user_level = $user_level;
|
565 |
+
|
566 |
+
// -1 == anonymous
|
567 |
+
if (!is_user_logged_in())
|
568 |
+
$my_user_level = -1;
|
569 |
|
570 |
// needed by cimy_uef_init_mce.php
|
571 |
$cimy_uef_register_page = true;
|
635 |
|
636 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
637 |
// apply only for EXTRA FIELDS
|
638 |
+
if (($my_user_level < $rules['show_level']) && ($i == 2))
|
639 |
continue;
|
640 |
|
641 |
// if show_level == anonymous then do NOT ovverride other show_xyz rules
|
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 |
*/
|
@@ -11,7 +11,7 @@ Author URI: mailto:cimmino.marco@gmail.com
|
|
11 |
/*
|
12 |
|
13 |
Cimy User Extra Fields - Allows adding mySQL Data fields to store/add more user info
|
14 |
-
Copyright (c) 2006-
|
15 |
|
16 |
Code for drop-down support is in part from Raymond Elferink raymond@raycom.com
|
17 |
Code for regular expression under equalTo rule is in part from Shane Hartman shane@shanehartman.com
|
@@ -40,21 +40,25 @@ global $wpdb, $old_wpdb_data_table, $wpdb_data_table, $old_wpdb_fields_table, $w
|
|
40 |
|
41 |
function cimy_uef_set_tables() {
|
42 |
global $wpdb, $old_wpdb_data_table, $wpdb_data_table, $old_wpdb_fields_table, $wpdb_fields_table, $wpdb_wp_fields_table, $cimy_uef_options, $cimy_uef_version, $cuef_upload_path, $cimy_uef_domain, $cimy_uef_plugins_dir;
|
|
|
43 |
|
44 |
if (is_multisite()) {
|
45 |
$cimy_uef_plugins_dir = __FILE__;
|
46 |
if (!stristr($cimy_uef_plugins_dir, "mu-plugins") === false)
|
|
|
|
|
47 |
$cimy_uef_plugins_dir = "mu-plugins";
|
|
|
48 |
else
|
49 |
$cimy_uef_plugins_dir = "plugins";
|
50 |
}
|
51 |
|
52 |
-
$old_wpdb_data_table = $
|
53 |
-
$old_wpdb_fields_table = $
|
54 |
|
55 |
-
$wpdb_data_table = $
|
56 |
-
$wpdb_fields_table = $
|
57 |
-
$wpdb_wp_fields_table = $
|
58 |
}
|
59 |
|
60 |
cimy_uef_set_tables();
|
@@ -185,13 +189,13 @@ require_once($cuef_plugin_dir.'/cimy_uef_options.php');
|
|
185 |
require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
|
186 |
|
187 |
$cimy_uef_name = "Cimy User Extra Fields";
|
188 |
-
$cimy_uef_version = "2.0.
|
189 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
190 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
191 |
|
192 |
$start_cimy_uef_comment = "<!--\n";
|
193 |
$start_cimy_uef_comment .= "\tStart code from ".$cimy_uef_name." ".$cimy_uef_version."\n";
|
194 |
-
$start_cimy_uef_comment .= "\tCopyright (c) 2006-
|
195 |
$start_cimy_uef_comment .= "\t".$cimy_uef_url."\n";
|
196 |
$start_cimy_uef_comment .= "-->\n";
|
197 |
|
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.2
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
*/
|
11 |
/*
|
12 |
|
13 |
Cimy User Extra Fields - Allows adding mySQL Data fields to store/add more user info
|
14 |
+
Copyright (c) 2006-2011 Marco Cimmino
|
15 |
|
16 |
Code for drop-down support is in part from Raymond Elferink raymond@raycom.com
|
17 |
Code for regular expression under equalTo rule is in part from Shane Hartman shane@shanehartman.com
|
40 |
|
41 |
function cimy_uef_set_tables() {
|
42 |
global $wpdb, $old_wpdb_data_table, $wpdb_data_table, $old_wpdb_fields_table, $wpdb_fields_table, $wpdb_wp_fields_table, $cimy_uef_options, $cimy_uef_version, $cuef_upload_path, $cimy_uef_domain, $cimy_uef_plugins_dir;
|
43 |
+
$prefix = $wpdb->prefix;
|
44 |
|
45 |
if (is_multisite()) {
|
46 |
$cimy_uef_plugins_dir = __FILE__;
|
47 |
if (!stristr($cimy_uef_plugins_dir, "mu-plugins") === false)
|
48 |
+
{
|
49 |
+
$prefix = $wpdb->base_prefix;
|
50 |
$cimy_uef_plugins_dir = "mu-plugins";
|
51 |
+
}
|
52 |
else
|
53 |
$cimy_uef_plugins_dir = "plugins";
|
54 |
}
|
55 |
|
56 |
+
$old_wpdb_data_table = $prefix."cimy_data";
|
57 |
+
$old_wpdb_fields_table = $prefix."cimy_fields";
|
58 |
|
59 |
+
$wpdb_data_table = $prefix."cimy_uef_data";
|
60 |
+
$wpdb_fields_table = $prefix."cimy_uef_fields";
|
61 |
+
$wpdb_wp_fields_table = $prefix."cimy_uef_wp_fields";
|
62 |
}
|
63 |
|
64 |
cimy_uef_set_tables();
|
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.2";
|
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 |
|
196 |
$start_cimy_uef_comment = "<!--\n";
|
197 |
$start_cimy_uef_comment .= "\tStart code from ".$cimy_uef_name." ".$cimy_uef_version."\n";
|
198 |
+
$start_cimy_uef_comment .= "\tCopyright (c) 2006-2011 Marco Cimmino\n";
|
199 |
$start_cimy_uef_comment .= "\t".$cimy_uef_url."\n";
|
200 |
$start_cimy_uef_comment .= "-->\n";
|
201 |
|
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:
|
6 |
-
"PO-Revision-Date:
|
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,519 +16,523 @@ 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:403
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
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:
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
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/cimy_uef_profile.php:299
|
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:305
|
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 |
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 "Смени реда"
|
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:
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
131 |
msgstr "Опции по колекция"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
134 |
msgid "WordPress Fields table emptied"
|
135 |
msgstr "Таблицата с WordPress полета е изпразнена"
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
138 |
msgid "WordPress Fields table deleted"
|
139 |
msgstr "Таблицата с WordPress полета е изтрита"
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
142 |
msgid "Extra Fields table emptied"
|
143 |
msgstr "Таблицата с допълнителни полета е изпразнена"
|
144 |
|
145 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
146 |
msgid "Extra Fields table deleted"
|
147 |
msgstr "Таблицата с допълнителни полета е изтрита"
|
148 |
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
150 |
msgid "Users Data table emptied"
|
151 |
msgstr "Таблицата с потребителски данни е изпразнена"
|
152 |
|
153 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
154 |
msgid "Users Data table deleted"
|
155 |
msgstr "Таблицата с потребителски данни е изтрита"
|
156 |
|
157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
158 |
msgid "Options set to default values"
|
159 |
msgstr "Вариантите са сменени по подразбиране"
|
160 |
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
162 |
msgid "Options deleted"
|
163 |
msgstr "Вариантите са изтрити"
|
164 |
|
165 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
166 |
msgid "Options changed"
|
167 |
msgstr "Вариантите са променени"
|
168 |
|
169 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
170 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
175 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
176 |
msgid "Options"
|
177 |
msgstr "Настройки"
|
178 |
|
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_uef_admin.php:
|
181 |
msgid "Add a new Field"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
189 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
190 |
msgid "Extra Fields"
|
191 |
msgstr "Допълнителни полета"
|
192 |
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
194 |
msgid "Support the Cimy Project"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
198 |
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!"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
203 |
msgid "SUCCESSFUL"
|
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_options.php:
|
208 |
msgid "Save Changes"
|
209 |
msgstr "Запази промените"
|
210 |
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
msgid "General"
|
213 |
msgstr "Общи"
|
214 |
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
216 |
msgid "installed is"
|
217 |
msgstr "инсталирано е"
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
220 |
msgid "OPTIONS DELETED!"
|
221 |
msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
225 |
msgid "Fix the problem"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
229 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
230 |
msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
|
231 |
|
232 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
233 |
msgid "Picture/Avatar upload"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
237 |
msgid "is created and writable"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
241 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
245 |
#, fuzzy
|
246 |
msgid "Show all fields in the welcome email"
|
247 |
msgstr "Покажи полето при регистрация"
|
248 |
|
249 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
250 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
254 |
msgid "Enable email confirmation"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
258 |
msgid "user that registers should confirm its email address via a link click"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
262 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
266 |
msgid "Redirect to the source"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
270 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
274 |
msgid "No captcha"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
278 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
msgid "Public KEY"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
286 |
msgid "Private KEY"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
294 |
msgid "This captcha is probably weaker, but is easier for users"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
#, php-format
|
299 |
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>"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
303 |
msgid "Change login/registration page logo"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
308 |
#, fuzzy
|
309 |
msgid "Delete the picture"
|
310 |
msgstr "Изтрий поле"
|
311 |
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
313 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
317 |
msgid "Database"
|
318 |
msgstr "База данни"
|
319 |
|
320 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "select action"
|
325 |
msgstr "избери действие"
|
326 |
|
327 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
328 |
msgid "Default values"
|
329 |
msgstr "Стойност по подразбиране"
|
330 |
|
331 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "Delete"
|
336 |
msgstr "Изтрий"
|
337 |
|
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 |
-
#: /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 |
msgid "NOT PRESENT"
|
343 |
msgstr "НЕ СЪЩЕСТВУВА"
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
346 |
msgid "WordPress Fields table"
|
347 |
msgstr "Таблица с WordPress полета"
|
348 |
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "Empty"
|
353 |
msgstr "Празно"
|
354 |
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
356 |
msgid "Extra Fields table"
|
357 |
msgstr "Таблица с допълнителни полета"
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
360 |
msgid "Users Data table"
|
361 |
msgstr "Таблица с потребителски данни"
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
364 |
msgid "all data inserted by users in all and only extra fields"
|
365 |
msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
368 |
msgid "Force tables creation"
|
369 |
msgstr "Задължително създаване на таблица"
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
372 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
376 |
msgid "User Profile"
|
377 |
msgstr "Потребителски профил"
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
380 |
#, fuzzy
|
381 |
msgid "Extra Fields section title"
|
382 |
msgstr "Таблица с допълнителни полета"
|
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 "Заглавията на колекция разделени със запетайка"
|
387 |
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
389 |
msgid "example: title1,title2,title3"
|
390 |
msgstr "пример: заглавие1,заглавие2,заглавие3"
|
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 ""
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
399 |
msgid "Authors & Users Extended"
|
400 |
msgstr "Автори & Потребители с разширения"
|
401 |
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
403 |
msgid "Hide username field"
|
404 |
msgstr "Скрий полето за потребителско име"
|
405 |
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
407 |
msgid "Hide name field"
|
408 |
msgstr "Скрий полето за име"
|
409 |
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
411 |
msgid "Hide email field"
|
412 |
msgstr "Скрий полето за email"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
415 |
msgid "Hide role field"
|
416 |
msgstr "Скрий полето за роля"
|
417 |
|
418 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
419 |
msgid "Hide website field"
|
420 |
msgstr "Скрий полето за интернет сайт"
|
421 |
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
423 |
msgid "Hide n. posts field"
|
424 |
msgstr "Скрий полето за брой постове"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
427 |
msgid "WordPress hidden fields"
|
428 |
msgstr "Скрити полета на WordPress"
|
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 "Покажи първото име"
|
445 |
|
446 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
447 |
msgid "Show last name"
|
448 |
msgstr "Покажи второто име"
|
449 |
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
451 |
msgid "Show nickname"
|
452 |
msgstr "Покажи потребителското име"
|
453 |
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
455 |
msgid "Show website"
|
456 |
msgstr "Покажи интернет сайта"
|
457 |
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
459 |
msgid "Show AIM"
|
460 |
msgstr "Покажи AIM"
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
463 |
msgid "Show Yahoo IM"
|
464 |
msgstr "Покажи 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 "Покажи 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 |
|
474 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
475 |
msgid "Password"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
479 |
msgid "Password confirmation"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
483 |
#, fuzzy
|
484 |
msgid "First name"
|
485 |
msgstr "Покажи първото име"
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
488 |
#, fuzzy
|
489 |
msgid "Last name"
|
490 |
msgstr "Покажи второто име"
|
491 |
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
493 |
#, fuzzy
|
494 |
msgid "Nickname"
|
495 |
msgstr "Име"
|
496 |
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
499 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
500 |
msgid "Website"
|
501 |
msgstr "Интернет сайт"
|
502 |
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
504 |
msgid "AIM"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
508 |
#, fuzzy
|
509 |
msgid "Yahoo IM"
|
510 |
msgstr "Покажи Yahoo IM"
|
511 |
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
513 |
#, fuzzy
|
514 |
msgid "Jabber / Google Talk"
|
515 |
msgstr "Покажи Jabber / Google Talk"
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
518 |
msgid "Biographical Info"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
523 |
msgid "Fields"
|
524 |
msgstr "Полета"
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
528 |
msgid "A&U Extended"
|
529 |
msgstr "А&П с разширения"
|
530 |
|
531 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
532 |
#, fuzzy
|
533 |
msgid "Users Extended"
|
534 |
msgstr "Разширен списък с Автори & Потребители"
|
@@ -547,67 +551,77 @@ msgstr ""
|
|
547 |
msgid "File '%s' is not an image."
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
551 |
#, fuzzy
|
552 |
msgid "Delete the file"
|
553 |
msgstr "Изтрий поле"
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
556 |
#, fuzzy
|
557 |
msgid "Update the file"
|
558 |
msgstr "Поднови поле"
|
559 |
|
560 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
561 |
#, fuzzy
|
562 |
msgid "Update the picture"
|
563 |
msgstr "Поднови поле"
|
564 |
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
566 |
msgid "Picture URL:"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
570 |
#, php-format
|
571 |
msgid "New user registration on your site %s:"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
576 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
577 |
#, fuzzy, php-format
|
578 |
msgid "Username: %s"
|
579 |
msgstr "Потребителско име"
|
580 |
|
581 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
582 |
#, fuzzy, php-format
|
583 |
msgid "E-mail: %s"
|
584 |
msgstr "e-mail: %s"
|
585 |
|
586 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
587 |
#, php-format
|
588 |
msgid "[%s] New User Registration"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
593 |
#, php-format
|
594 |
msgid "Password: %s"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
598 |
#, php-format
|
599 |
msgid "[%s] Your username and password"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
605 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
606 |
#, php-format
|
607 |
msgid "%s: %s"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
611 |
#, php-format
|
612 |
msgid ""
|
613 |
"To activate your user, please click the following link:\n"
|
@@ -618,45 +632,45 @@ msgid ""
|
|
618 |
"\n"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
622 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
|
|
623 |
msgid "Your account is now active!"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
627 |
#, php-format
|
628 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
632 |
msgid "An error occurred during the activation"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
636 |
msgid "Invalid activation key."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
640 |
msgid "The site is already active."
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
644 |
msgid "Could not create user"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
648 |
msgid "That username is already activated."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
652 |
msgid "That username is currently reserved but may be available in a couple of days."
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
656 |
msgid "username and email used"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
660 |
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."
|
661 |
msgstr ""
|
662 |
|
@@ -681,17 +695,17 @@ msgid "Change order"
|
|
681 |
msgstr "Смени реда"
|
682 |
|
683 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
684 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
685 |
msgid "Min length"
|
686 |
msgstr "Минимална дължина"
|
687 |
|
688 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
689 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
690 |
msgid "Exact length"
|
691 |
msgstr "Точна дължина"
|
692 |
|
693 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
694 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
695 |
msgid "Max length"
|
696 |
msgstr "Максимална дължина"
|
697 |
|
@@ -699,399 +713,419 @@ msgstr "Максимална дължина"
|
|
699 |
msgid "Exact or Max length"
|
700 |
msgstr "Точна или максимална дължина"
|
701 |
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
703 |
msgid "changed to"
|
704 |
msgstr "променен на"
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
707 |
msgid "You cannot give an order that misses some numbers"
|
708 |
msgstr "Не може да даваш ред, в който липсват числа"
|
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 "Nothing selected"
|
713 |
msgstr "Нищо не е избрано"
|
714 |
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
716 |
msgid "Field(s)"
|
717 |
msgstr "Поле(та)"
|
718 |
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
720 |
msgid "deleted correctly"
|
721 |
msgstr "изтрит успешно"
|
722 |
|
723 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
724 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
725 |
msgid "Min size"
|
726 |
msgstr "Минимален размер"
|
727 |
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
730 |
msgid "Exact size"
|
731 |
msgstr "Точен размер"
|
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 "Max size"
|
736 |
msgstr "Максимален размер"
|
737 |
|
738 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
739 |
msgid "Exact or Max size"
|
740 |
msgstr "Точен или максимален размер"
|
741 |
|
742 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
743 |
msgid "Name not specified"
|
744 |
msgstr "Не е определено име"
|
745 |
|
746 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
747 |
msgid "Name cannot contains spaces"
|
748 |
msgstr "Името не може да съдържа шпации"
|
749 |
|
750 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
751 |
msgid "Label not specified"
|
752 |
msgstr "Не е определен етикет"
|
753 |
|
754 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
755 |
msgid "not selected (with this type is necessary)"
|
756 |
msgstr "не е избрано (задължително за този тип)"
|
757 |
|
758 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
759 |
msgid "If you select"
|
760 |
msgstr "Ако избра"
|
761 |
|
762 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
763 |
msgid "you cannot select Min or Max"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
769 |
msgid "should be in the range of"
|
770 |
msgstr "трябва да е в рамките на"
|
771 |
|
772 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
773 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
774 |
msgid "Equal TO not specified"
|
775 |
msgstr "Равно НА не е определено"
|
776 |
|
777 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
778 |
msgid "With checkbox type Equal TO can only be"
|
779 |
msgstr "С отметка от тип Равно НА може да е само"
|
780 |
|
781 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
782 |
msgid "With radio type Equal TO can only be"
|
783 |
msgstr "С радио бутон от тип Равно НА може да е само"
|
784 |
|
785 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
786 |
msgid "With checkbox type Value can only be"
|
787 |
msgstr "С отметка от тип Стойност може да е само"
|
788 |
|
789 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
790 |
msgid "With radio type Value can only be"
|
791 |
msgstr "С радио бутон от тип Стойност може да е само"
|
792 |
|
793 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
794 |
msgid "Field inserted correctly"
|
795 |
msgstr "Полето е добавено успешно"
|
796 |
|
797 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
798 |
msgid "Field #"
|
799 |
msgstr "Поле #"
|
800 |
|
801 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
802 |
msgid "updated correctly"
|
803 |
msgstr "подновено успешно"
|
804 |
|
805 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
806 |
msgid "Name inserted is just in the database, change to another one"
|
807 |
msgstr "Въведеното име е в базата данни, променето го"
|
808 |
|
809 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
810 |
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."
|
811 |
msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
|
812 |
|
813 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
814 |
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'"
|
815 |
msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
|
816 |
|
817 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
818 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
819 |
msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
|
820 |
|
821 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
822 |
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"
|
823 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
824 |
|
825 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
826 |
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)"
|
827 |
msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
|
828 |
|
829 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
830 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
831 |
msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
|
832 |
|
833 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
834 |
#, fuzzy
|
835 |
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"
|
836 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
837 |
|
838 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
839 |
#, fuzzy
|
840 |
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"
|
841 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
842 |
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
msgid "Name"
|
850 |
msgstr "Име"
|
851 |
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
msgid "Value"
|
859 |
msgstr "Стойност"
|
860 |
|
861 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
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 |
msgid "Type"
|
866 |
msgstr "Тип"
|
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 |
msgid "Label"
|
873 |
msgstr "Етикет"
|
874 |
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
879 |
msgid "Description"
|
880 |
msgstr "Описание"
|
881 |
|
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 "Rules"
|
885 |
msgstr "Правила"
|
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 |
msgid "Actions"
|
890 |
msgstr "Действия"
|
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 |
#, fuzzy
|
895 |
msgid "Fieldset"
|
896 |
msgstr "Полета"
|
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 |
msgid "Can be empty"
|
901 |
msgstr "Може да е празно"
|
902 |
|
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 "Check for E-mail syntax"
|
906 |
msgstr "Провери за Email синтаксис"
|
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 "Can be modified"
|
911 |
msgstr "Може да бъде променяно"
|
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 "Can be modified only if empty"
|
916 |
msgstr "Може да бъде променяно само ако е празно"
|
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 modified only by admin"
|
921 |
msgstr "Може да бъде променяно само от администратора"
|
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 modified only by admin or if empty"
|
926 |
msgstr "Може да бъде променяно само от администратора или ако е празно"
|
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 "Cannot be modified"
|
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 "Should be equal TO"
|
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 "Case sensitive"
|
941 |
msgstr "Различават се големи и малко букви"
|
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 "Regular Expression"
|
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 "Show the field in the registration"
|
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 "Show the field in User's profile"
|
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 "Show the field in A&U Extended menu"
|
961 |
msgstr "Покажи полето в 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 |
#, fuzzy
|
966 |
msgid "Show the field in the search engine"
|
967 |
msgstr "Покажи полето при регистрация"
|
968 |
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
970 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
971 |
#, fuzzy
|
972 |
msgid "Show the field in the blog"
|
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 |
#, fuzzy
|
978 |
msgid "Show the field if the role is at least:"
|
979 |
msgstr "Покажи полето при регистрация"
|
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 |
msgid "Anonymous"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
987 |
msgid "Clear"
|
988 |
msgstr "Изчисти"
|
989 |
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
991 |
msgid "Invert selection"
|
992 |
msgstr "Обърни избора"
|
993 |
|
994 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
995 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
996 |
msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
|
997 |
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
999 |
msgid "WordPress Fields"
|
1000 |
msgstr "WordPress полета"
|
1001 |
|
1002 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1003 |
msgid "None!"
|
1004 |
msgstr "Няма!"
|
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 "Order"
|
1009 |
msgstr "Подреди"
|
1010 |
|
1011 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1012 |
msgid "Reset"
|
1013 |
msgstr "Отмени"
|
1014 |
|
1015 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
1016 |
#, fuzzy
|
1017 |
msgid "select"
|
1018 |
msgstr "Изтрий"
|
1019 |
|
1020 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1021 |
#, php-format
|
1022 |
msgid "Users Matching \"%s\""
|
1023 |
msgstr "Потребители отговарящи на \"%s\""
|
1024 |
|
1025 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1026 |
#, fuzzy
|
1027 |
msgid "Users Extended List"
|
1028 |
msgstr "Разширен списък с Автори & Потребители"
|
1029 |
|
1030 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1031 |
msgid "Authors & Users Extended List"
|
1032 |
msgstr "Разширен списък с Автори & Потребители"
|
1033 |
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1035 |
#, php-format
|
1036 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1040 |
msgid "Search Users"
|
1041 |
msgstr "Търсене на потребители"
|
1042 |
|
1043 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1044 |
msgid "« Back to All Users"
|
1045 |
msgstr "« Назад към Всички потребители"
|
1046 |
|
1047 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1048 |
#, fuzzy
|
1049 |
msgid "Users per page"
|
1050 |
msgstr "Таблица с потребителски данни"
|
1051 |
|
1052 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1053 |
msgid "Apply"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1057 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1058 |
msgid "Username"
|
1059 |
msgstr "Потребителско име"
|
1060 |
|
1061 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1062 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1063 |
msgid "E-mail"
|
1064 |
msgstr "E-mail"
|
1065 |
|
1066 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1067 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1068 |
msgid "Role"
|
1069 |
msgstr "Роля"
|
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 "Posts"
|
1074 |
msgstr "Постове"
|
1075 |
|
1076 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1077 |
msgid "View posts by this author"
|
1078 |
msgstr "Виж постовете на този автор"
|
1079 |
|
1080 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1081 |
#, php-format
|
1082 |
msgid "e-mail: %s"
|
1083 |
msgstr "e-mail: %s"
|
1084 |
|
1085 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1086 |
#, fuzzy
|
1087 |
msgid "Update selected users"
|
1088 |
msgstr "Изтрий маркираните полета"
|
1089 |
|
1090 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1091 |
#, fuzzy
|
1092 |
msgid "Update"
|
1093 |
msgstr "Поднови поле"
|
1094 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1095 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1096 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1097 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-30 14:07+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-01-30 14:07+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:407
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:446
|
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:476
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1218
|
34 |
msgid "ERROR"
|
35 |
msgstr "ГРЕШКА"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
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:425
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "не може да е празно."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:445
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "не е правилно"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
55 |
msgid "YES"
|
56 |
msgstr "ДА"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
59 |
msgid "NO"
|
60 |
msgstr "НЕ"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:456
|
63 |
msgid "should be"
|
64 |
msgstr "трябва да е"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
67 |
msgid "should be an image."
|
68 |
msgstr "трябва да е снимка."
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:476
|
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:482
|
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:494
|
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:500
|
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:512
|
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:518
|
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:531
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
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:836
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:371
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
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:916
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
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:954
|
120 |
#, fuzzy
|
121 |
msgid "Change image"
|
122 |
msgstr "Смени реда"
|
123 |
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
|
125 |
msgid "Insert the code:"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
131 |
msgstr "Опции по колекция"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:432
|
134 |
+
msgid "All"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:43
|
138 |
msgid "WordPress Fields table emptied"
|
139 |
msgstr "Таблицата с WordPress полета е изпразнена"
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
142 |
msgid "WordPress Fields table deleted"
|
143 |
msgstr "Таблицата с WordPress полета е изтрита"
|
144 |
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
146 |
msgid "Extra Fields table emptied"
|
147 |
msgstr "Таблицата с допълнителни полета е изпразнена"
|
148 |
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
150 |
msgid "Extra Fields table deleted"
|
151 |
msgstr "Таблицата с допълнителни полета е изтрита"
|
152 |
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
154 |
msgid "Users Data table emptied"
|
155 |
msgstr "Таблицата с потребителски данни е изпразнена"
|
156 |
|
157 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:76
|
158 |
msgid "Users Data table deleted"
|
159 |
msgstr "Таблицата с потребителски данни е изтрита"
|
160 |
|
161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:87
|
162 |
msgid "Options set to default values"
|
163 |
msgstr "Вариантите са сменени по подразбиране"
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:93
|
166 |
msgid "Options deleted"
|
167 |
msgstr "Вариантите са изтрити"
|
168 |
|
169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
|
170 |
msgid "Options changed"
|
171 |
msgstr "Вариантите са променени"
|
172 |
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
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:483
|
178 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:749
|
180 |
msgid "Options"
|
181 |
msgstr "Настройки"
|
182 |
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:440
|
185 |
msgid "Add a new Field"
|
186 |
msgstr "Добави друго поле"
|
187 |
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:795
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
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:283
|
194 |
msgid "Extra Fields"
|
195 |
msgstr "Допълнителни полета"
|
196 |
|
197 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
198 |
msgid "Support the Cimy Project"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
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:510
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1236
|
207 |
msgid "SUCCESSFUL"
|
208 |
msgstr "УСПЕХ"
|
209 |
|
210 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
|
211 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:830
|
212 |
msgid "Save Changes"
|
213 |
msgstr "Запази промените"
|
214 |
|
215 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
216 |
msgid "General"
|
217 |
msgstr "Общи"
|
218 |
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
220 |
msgid "installed is"
|
221 |
msgstr "инсталирано е"
|
222 |
|
223 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
224 |
msgid "OPTIONS DELETED!"
|
225 |
msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
|
226 |
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
228 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
229 |
msgid "Fix the problem"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
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 "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
|
235 |
|
236 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
237 |
msgid "Picture/Avatar upload"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
241 |
msgid "is created and writable"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
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:564
|
249 |
#, fuzzy
|
250 |
msgid "Show all fields in the welcome email"
|
251 |
msgstr "Покажи полето при регистрация"
|
252 |
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
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:576
|
258 |
msgid "Enable email confirmation"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
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:582
|
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:589
|
270 |
msgid "Redirect to the source"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
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:601
|
278 |
msgid "No captcha"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
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:613
|
286 |
msgid "Public KEY"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
290 |
msgid "Private KEY"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
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:628
|
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:632
|
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:639
|
307 |
msgid "Change login/registration page logo"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
311 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:435
|
312 |
#, fuzzy
|
313 |
msgid "Delete the picture"
|
314 |
msgstr "Изтрий поле"
|
315 |
|
316 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
|
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:653
|
321 |
msgid "Database"
|
322 |
msgstr "База данни"
|
323 |
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
326 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
|
328 |
msgid "select action"
|
329 |
msgstr "избери действие"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
332 |
msgid "Default values"
|
333 |
msgstr "Стойност по подразбиране"
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:718
|
339 |
msgid "Delete"
|
340 |
msgstr "Изтрий"
|
341 |
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:687
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
|
346 |
msgid "NOT PRESENT"
|
347 |
msgstr "НЕ СЪЩЕСТВУВА"
|
348 |
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
350 |
msgid "WordPress Fields table"
|
351 |
msgstr "Таблица с WordPress полета"
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:700
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
356 |
msgid "Empty"
|
357 |
msgstr "Празно"
|
358 |
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
360 |
msgid "Extra Fields table"
|
361 |
msgstr "Таблица с допълнителни полета"
|
362 |
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
|
364 |
msgid "Users Data table"
|
365 |
msgstr "Таблица с потребителски данни"
|
366 |
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
368 |
msgid "all data inserted by users in all and only extra fields"
|
369 |
msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
|
370 |
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
372 |
msgid "Force tables creation"
|
373 |
msgstr "Задължително създаване на таблица"
|
374 |
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
376 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
380 |
msgid "User Profile"
|
381 |
msgstr "Потребителски профил"
|
382 |
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
|
384 |
#, fuzzy
|
385 |
msgid "Extra Fields section title"
|
386 |
msgstr "Таблица с допълнителни полета"
|
387 |
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
389 |
msgid "Fieldset's titles, separates with comma"
|
390 |
msgstr "Заглавията на колекция разделени със запетайка"
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
393 |
msgid "example: title1,title2,title3"
|
394 |
msgstr "пример: заглавие1,заглавие2,заглавие3"
|
395 |
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
|
397 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
403 |
msgid "Authors & Users Extended"
|
404 |
msgstr "Автори & Потребители с разширения"
|
405 |
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
407 |
msgid "Hide username field"
|
408 |
msgstr "Скрий полето за потребителско име"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:760
|
411 |
msgid "Hide name field"
|
412 |
msgstr "Скрий полето за име"
|
413 |
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
|
415 |
msgid "Hide email field"
|
416 |
msgstr "Скрий полето за email"
|
417 |
|
418 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:769
|
419 |
msgid "Hide role field"
|
420 |
msgstr "Скрий полето за роля"
|
421 |
|
422 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:773
|
423 |
msgid "Hide website field"
|
424 |
msgstr "Скрий полето за интернет сайт"
|
425 |
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:777
|
427 |
msgid "Hide n. posts field"
|
428 |
msgstr "Скрий полето за брой постове"
|
429 |
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
431 |
msgid "WordPress hidden fields"
|
432 |
msgstr "Скрити полета на WordPress"
|
433 |
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:785
|
435 |
msgid "Show password"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:789
|
439 |
msgid "Show confirmation password"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
|
443 |
msgid "Show password strength meter"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:797
|
447 |
msgid "Show first name"
|
448 |
msgstr "Покажи първото име"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:801
|
451 |
msgid "Show last name"
|
452 |
msgstr "Покажи второто име"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:805
|
455 |
msgid "Show nickname"
|
456 |
msgstr "Покажи потребителското име"
|
457 |
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:809
|
459 |
msgid "Show website"
|
460 |
msgstr "Покажи интернет сайта"
|
461 |
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:813
|
463 |
msgid "Show AIM"
|
464 |
msgstr "Покажи AIM"
|
465 |
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:817
|
467 |
msgid "Show Yahoo IM"
|
468 |
msgstr "Покажи Yahoo IM"
|
469 |
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:821
|
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:825
|
475 |
msgid "Show Biographical Info"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
|
479 |
msgid "Password"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
483 |
msgid "Password confirmation"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
487 |
#, fuzzy
|
488 |
msgid "First name"
|
489 |
msgstr "Покажи първото име"
|
490 |
|
491 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
492 |
#, fuzzy
|
493 |
msgid "Last name"
|
494 |
msgstr "Покажи второто име"
|
495 |
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
497 |
#, fuzzy
|
498 |
msgid "Nickname"
|
499 |
msgstr "Име"
|
500 |
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1541
|
504 |
msgid "Website"
|
505 |
msgstr "Интернет сайт"
|
506 |
|
507 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
|
508 |
msgid "AIM"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
|
512 |
#, fuzzy
|
513 |
msgid "Yahoo IM"
|
514 |
msgstr "Покажи Yahoo IM"
|
515 |
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
|
517 |
#, fuzzy
|
518 |
msgid "Jabber / Google Talk"
|
519 |
msgstr "Покажи Jabber / Google Talk"
|
520 |
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:400
|
522 |
msgid "Biographical Info"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:750
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
527 |
msgid "Fields"
|
528 |
msgstr "Полета"
|
529 |
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
532 |
msgid "A&U Extended"
|
533 |
msgstr "А&П с разширения"
|
534 |
|
535 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
536 |
#, fuzzy
|
537 |
msgid "Users Extended"
|
538 |
msgstr "Разширен списък с Автори & Потребители"
|
551 |
msgid "File '%s' is not an image."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:431
|
555 |
#, fuzzy
|
556 |
msgid "Delete the file"
|
557 |
msgstr "Изтрий поле"
|
558 |
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:432
|
560 |
#, fuzzy
|
561 |
msgid "Update the file"
|
562 |
msgstr "Поднови поле"
|
563 |
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:436
|
565 |
#, fuzzy
|
566 |
msgid "Update the picture"
|
567 |
msgstr "Поднови поле"
|
568 |
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:456
|
570 |
msgid "Picture URL:"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:684
|
574 |
+
#, php-format
|
575 |
+
msgid "%s previous value: %s new value: %s"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:699
|
579 |
+
#, php-format
|
580 |
+
msgid "%s (%s) has changed one or more fields"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
584 |
#, php-format
|
585 |
msgid "New user registration on your site %s:"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
591 |
#, fuzzy, php-format
|
592 |
msgid "Username: %s"
|
593 |
msgstr "Потребителско име"
|
594 |
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
|
596 |
#, fuzzy, php-format
|
597 |
msgid "E-mail: %s"
|
598 |
msgstr "e-mail: %s"
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
|
601 |
#, php-format
|
602 |
msgid "[%s] New User Registration"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
607 |
#, php-format
|
608 |
msgid "Password: %s"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
612 |
#, php-format
|
613 |
msgid "[%s] Your username and password"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:100
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
619 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:124
|
620 |
#, php-format
|
621 |
msgid "%s: %s"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:198
|
625 |
#, php-format
|
626 |
msgid ""
|
627 |
"To activate your user, please click the following link:\n"
|
632 |
"\n"
|
633 |
msgstr ""
|
634 |
|
|
|
635 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
637 |
msgid "Your account is now active!"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
641 |
#, php-format
|
642 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:217
|
646 |
msgid "An error occurred during the activation"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
650 |
msgid "Invalid activation key."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:239
|
654 |
msgid "The site is already active."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:258
|
658 |
msgid "Could not create user"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:270
|
662 |
msgid "That username is already activated."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:290
|
666 |
msgid "That username is currently reserved but may be available in a couple of days."
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:293
|
670 |
msgid "username and email used"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:303
|
674 |
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."
|
675 |
msgstr ""
|
676 |
|
695 |
msgstr "Смени реда"
|
696 |
|
697 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
699 |
msgid "Min length"
|
700 |
msgstr "Минимална дължина"
|
701 |
|
702 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1045
|
704 |
msgid "Exact length"
|
705 |
msgstr "Точна дължина"
|
706 |
|
707 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
708 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
|
709 |
msgid "Max length"
|
710 |
msgstr "Максимална дължина"
|
711 |
|
713 |
msgid "Exact or Max length"
|
714 |
msgstr "Точна или максимална дължина"
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
717 |
msgid "changed to"
|
718 |
msgstr "променен на"
|
719 |
|
720 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
721 |
msgid "You cannot give an order that misses some numbers"
|
722 |
msgstr "Не може да даваш ред, в който липсват числа"
|
723 |
|
724 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
725 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
726 |
msgid "Nothing selected"
|
727 |
msgstr "Нищо не е избрано"
|
728 |
|
729 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
730 |
msgid "Field(s)"
|
731 |
msgstr "Поле(та)"
|
732 |
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
734 |
msgid "deleted correctly"
|
735 |
msgstr "изтрит успешно"
|
736 |
|
737 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:236
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1036
|
739 |
msgid "Min size"
|
740 |
msgstr "Минимален размер"
|
741 |
|
742 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:237
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1037
|
744 |
msgid "Exact size"
|
745 |
msgstr "Точен размер"
|
746 |
|
747 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
|
749 |
msgid "Max size"
|
750 |
msgstr "Максимален размер"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
753 |
msgid "Exact or Max size"
|
754 |
msgstr "Точен или максимален размер"
|
755 |
|
756 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
757 |
msgid "Name not specified"
|
758 |
msgstr "Не е определено име"
|
759 |
|
760 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
761 |
msgid "Name cannot contains spaces"
|
762 |
msgstr "Името не може да съдържа шпации"
|
763 |
|
764 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:300
|
765 |
msgid "Label not specified"
|
766 |
msgstr "Не е определен етикет"
|
767 |
|
768 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:305
|
769 |
msgid "not selected (with this type is necessary)"
|
770 |
msgstr "не е избрано (задължително за този тип)"
|
771 |
|
772 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
773 |
msgid "If you select"
|
774 |
msgstr "Ако избра"
|
775 |
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
777 |
msgid "you cannot select Min or Max"
|
778 |
msgstr "не можеш да избереш минимума или максимума"
|
779 |
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
781 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:321
|
782 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
783 |
msgid "should be in the range of"
|
784 |
msgstr "трябва да е в рамките на"
|
785 |
|
786 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:336
|
787 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
788 |
msgid "Equal TO not specified"
|
789 |
msgstr "Равно НА не е определено"
|
790 |
|
791 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:341
|
792 |
msgid "With checkbox type Equal TO can only be"
|
793 |
msgstr "С отметка от тип Равно НА може да е само"
|
794 |
|
795 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:344
|
796 |
msgid "With radio type Equal TO can only be"
|
797 |
msgstr "С радио бутон от тип Равно НА може да е само"
|
798 |
|
799 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:360
|
800 |
msgid "With checkbox type Value can only be"
|
801 |
msgstr "С отметка от тип Стойност може да е само"
|
802 |
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:363
|
804 |
msgid "With radio type Value can only be"
|
805 |
msgstr "С радио бутон от тип Стойност може да е само"
|
806 |
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:420
|
808 |
msgid "Field inserted correctly"
|
809 |
msgstr "Полето е добавено успешно"
|
810 |
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
812 |
msgid "Field #"
|
813 |
msgstr "Поле #"
|
814 |
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
816 |
msgid "updated correctly"
|
817 |
msgstr "подновено успешно"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:425
|
820 |
msgid "Name inserted is just in the database, change to another one"
|
821 |
msgstr "Въведеното име е в базата данни, променето го"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
|
824 |
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."
|
825 |
msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
828 |
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'"
|
829 |
msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
832 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
833 |
msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
836 |
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"
|
837 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
840 |
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)"
|
841 |
msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
|
844 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
845 |
msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
848 |
#, fuzzy
|
849 |
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"
|
850 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
851 |
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
853 |
#, fuzzy
|
854 |
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"
|
855 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1069
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1525
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1526
|
863 |
msgid "Name"
|
864 |
msgstr "Име"
|
865 |
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1072
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
872 |
msgid "Value"
|
873 |
msgstr "Стойност"
|
874 |
|
875 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1075
|
879 |
msgid "Type"
|
880 |
msgstr "Тип"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
884 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
886 |
msgid "Label"
|
887 |
msgstr "Етикет"
|
888 |
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:661
|
891 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
892 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1100
|
893 |
msgid "Description"
|
894 |
msgstr "Описание"
|
895 |
|
896 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
898 |
msgid "Rules"
|
899 |
msgstr "Правила"
|
900 |
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
903 |
msgid "Actions"
|
904 |
msgstr "Действия"
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
908 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
|
909 |
#, fuzzy
|
910 |
msgid "Fieldset"
|
911 |
msgstr "Полета"
|
912 |
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:673
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
915 |
msgid "Can be empty"
|
916 |
msgstr "Може да е празно"
|
917 |
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
920 |
msgid "Check for E-mail syntax"
|
921 |
msgstr "Провери за Email синтаксис"
|
922 |
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
925 |
msgid "Can be modified"
|
926 |
msgstr "Може да бъде променяно"
|
927 |
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
930 |
msgid "Can be modified only if empty"
|
931 |
msgstr "Може да бъде променяно само ако е празно"
|
932 |
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
935 |
msgid "Can be modified only by admin"
|
936 |
msgstr "Може да бъде променяно само от администратора"
|
937 |
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:680
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1121
|
940 |
msgid "Can be modified only by admin or if empty"
|
941 |
msgstr "Може да бъде променяно само от администратора или ако е празно"
|
942 |
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
945 |
msgid "Cannot be modified"
|
946 |
msgstr "Не може да бъде променяно"
|
947 |
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
950 |
msgid "Should be equal TO"
|
951 |
msgstr "Би трябвало да е равно НА"
|
952 |
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1129
|
955 |
msgid "Case sensitive"
|
956 |
msgstr "Различават се големи и малко букви"
|
957 |
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
960 |
msgid "Regular Expression"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:697
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
965 |
msgid "Show the field in the registration"
|
966 |
msgstr "Покажи полето при регистрация"
|
967 |
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
970 |
msgid "Show the field in User's profile"
|
971 |
msgstr "Покажи полето в профила на потребителя"
|
972 |
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:703
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
975 |
msgid "Show the field in A&U Extended menu"
|
976 |
msgstr "Покажи полето в A&П разширеното меню"
|
977 |
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:706
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1150
|
980 |
#, fuzzy
|
981 |
msgid "Show the field in the search engine"
|
982 |
msgstr "Покажи полето при регистрация"
|
983 |
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
986 |
#, fuzzy
|
987 |
msgid "Show the field in the blog"
|
988 |
msgstr "Покажи полето при регистрация"
|
989 |
|
990 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:712
|
991 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1156
|
992 |
#, fuzzy
|
993 |
msgid "Show the field if the role is at least:"
|
994 |
msgstr "Покажи полето при регистрация"
|
995 |
|
996 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
998 |
msgid "Anonymous"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:724
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1171
|
1003 |
+
msgid "Send an email to the admin if the user changes its value"
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
1007 |
msgid "Clear"
|
1008 |
msgstr "Изчисти"
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:786
|
1011 |
msgid "Invert selection"
|
1012 |
msgstr "Обърни избора"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
1015 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1016 |
msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:793
|
1019 |
msgid "WordPress Fields"
|
1020 |
msgstr "WordPress полета"
|
1021 |
|
1022 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:806
|
1023 |
msgid "None!"
|
1024 |
msgstr "Няма!"
|
1025 |
|
1026 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:821
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
1028 |
msgid "Order"
|
1029 |
msgstr "Подреди"
|
1030 |
|
1031 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1032 |
msgid "Reset"
|
1033 |
msgstr "Отмени"
|
1034 |
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1265
|
1036 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1037 |
#, fuzzy
|
1038 |
msgid "select"
|
1039 |
msgstr "Изтрий"
|
1040 |
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1042 |
#, php-format
|
1043 |
msgid "Users Matching \"%s\""
|
1044 |
msgstr "Потребители отговарящи на \"%s\""
|
1045 |
|
1046 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1402
|
1047 |
#, fuzzy
|
1048 |
msgid "Users Extended List"
|
1049 |
msgstr "Разширен списък с Автори & Потребители"
|
1050 |
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1404
|
1052 |
msgid "Authors & Users Extended List"
|
1053 |
msgstr "Разширен списък с Автори & Потребители"
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
1056 |
#, php-format
|
1057 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
|
1061 |
msgid "Search Users"
|
1062 |
msgstr "Търсене на потребители"
|
1063 |
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
1065 |
msgid "« Back to All Users"
|
1066 |
msgstr "« Назад към Всички потребители"
|
1067 |
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
1069 |
#, fuzzy
|
1070 |
msgid "Users per page"
|
1071 |
msgstr "Таблица с потребителски данни"
|
1072 |
|
1073 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
|
1074 |
msgid "Apply"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1079 |
msgid "Username"
|
1080 |
msgstr "Потребителско име"
|
1081 |
|
1082 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1530
|
1083 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1531
|
1084 |
msgid "E-mail"
|
1085 |
msgstr "E-mail"
|
1086 |
|
1087 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
1088 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1536
|
1089 |
msgid "Role"
|
1090 |
msgstr "Роля"
|
1091 |
|
1092 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
1093 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1546
|
1094 |
msgid "Posts"
|
1095 |
msgstr "Постове"
|
1096 |
|
1097 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1682
|
1098 |
msgid "View posts by this author"
|
1099 |
msgstr "Виж постовете на този автор"
|
1100 |
|
1101 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1713
|
1102 |
#, php-format
|
1103 |
msgid "e-mail: %s"
|
1104 |
msgstr "e-mail: %s"
|
1105 |
|
1106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1834
|
1107 |
+
#, fuzzy
|
1108 |
+
msgid "Change"
|
1109 |
+
msgstr "Смени реда"
|
1110 |
+
|
1111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1859
|
1112 |
#, fuzzy
|
1113 |
msgid "Update selected users"
|
1114 |
msgstr "Изтрий маркираните полета"
|
1115 |
|
1116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1880
|
1117 |
#, fuzzy
|
1118 |
msgid "Update"
|
1119 |
msgstr "Поднови поле"
|
1120 |
|
1121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1898
|
1122 |
+
msgid "OK"
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1899
|
1126 |
+
msgid "Cancel"
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1130 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1131 |
msgstr ""
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,520 +16,524 @@ 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:403
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
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:
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
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/cimy_uef_profile.php:299
|
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:305
|
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 |
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 "Ændre rækkefølge"
|
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:
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
131 |
msgstr "Objekter pr. feltrække"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
134 |
msgid "WordPress Fields table emptied"
|
135 |
msgstr "WordPress tabel tømt"
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
138 |
msgid "WordPress Fields table deleted"
|
139 |
msgstr "WordPress tabel slettet"
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
142 |
msgid "Extra Fields table emptied"
|
143 |
msgstr "Tabel med ekstra felter tømt"
|
144 |
|
145 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
146 |
msgid "Extra Fields table deleted"
|
147 |
msgstr "Tabel med ekstra felter slettet"
|
148 |
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
150 |
msgid "Users Data table emptied"
|
151 |
msgstr "Tabellen med brugerdata er blevet tømt"
|
152 |
|
153 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
154 |
msgid "Users Data table deleted"
|
155 |
msgstr "Tabellen med brugerdata er blevet slettet"
|
156 |
|
157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
158 |
msgid "Options set to default values"
|
159 |
msgstr "Indstillinger nulstillet"
|
160 |
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
162 |
msgid "Options deleted"
|
163 |
msgstr "Indstillinger slettet"
|
164 |
|
165 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
166 |
msgid "Options changed"
|
167 |
msgstr "Indstillinger ændret"
|
168 |
|
169 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
170 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
175 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
176 |
msgid "Options"
|
177 |
msgstr "Indstillinger"
|
178 |
|
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_uef_admin.php:
|
181 |
msgid "Add a new Field"
|
182 |
msgstr "Tilføj et nyt felt"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
189 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
190 |
msgid "Extra Fields"
|
191 |
msgstr "Ekstra felter"
|
192 |
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
194 |
msgid "Support the Cimy Project"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
198 |
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!"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
203 |
msgid "SUCCESSFUL"
|
204 |
msgstr "GENNEMFØRT"
|
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_options.php:
|
208 |
msgid "Save Changes"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
msgid "General"
|
213 |
msgstr "Generelle indstillinger"
|
214 |
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
216 |
msgid "installed is"
|
217 |
msgstr "installeret er"
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
220 |
msgid "OPTIONS DELETED!"
|
221 |
msgstr "INDSTILLINGER SLETTET!"
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
225 |
msgid "Fix the problem"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
229 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
230 |
msgstr "VERSIONSKONFLIKT! Husk at deaktivere og genaktivere plugin'et efter opdatering!"
|
231 |
|
232 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
233 |
msgid "Picture/Avatar upload"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
237 |
msgid "is created and writable"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
241 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
245 |
#, fuzzy
|
246 |
msgid "Show all fields in the welcome email"
|
247 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
248 |
|
249 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
250 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
254 |
msgid "Enable email confirmation"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
258 |
msgid "user that registers should confirm its email address via a link click"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
262 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
266 |
msgid "Redirect to the source"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
270 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
274 |
msgid "No captcha"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
278 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
msgid "Public KEY"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
286 |
msgid "Private KEY"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
294 |
msgid "This captcha is probably weaker, but is easier for users"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
#, php-format
|
299 |
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>"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
303 |
msgid "Change login/registration page logo"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
308 |
#, fuzzy
|
309 |
msgid "Delete the picture"
|
310 |
msgstr "Slet felt"
|
311 |
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
313 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
317 |
msgid "Database"
|
318 |
msgstr "Database administration"
|
319 |
|
320 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "select action"
|
325 |
msgstr "Vælg handling"
|
326 |
|
327 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
328 |
msgid "Default values"
|
329 |
msgstr "Standard værdier"
|
330 |
|
331 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "Delete"
|
336 |
msgstr "Slet"
|
337 |
|
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 |
-
#: /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 |
msgid "NOT PRESENT"
|
343 |
msgstr "FINDES IKKE"
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
346 |
msgid "WordPress Fields table"
|
347 |
msgstr "WordPress tabel"
|
348 |
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "Empty"
|
353 |
msgstr "Tøm"
|
354 |
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
356 |
msgid "Extra Fields table"
|
357 |
msgstr "Tabel med ekstra felter"
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
360 |
msgid "Users Data table"
|
361 |
msgstr "Tabel for brugerdata"
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
364 |
msgid "all data inserted by users in all and only extra fields"
|
365 |
msgstr "al brugerdata i alle ekstra felter"
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
368 |
msgid "Force tables creation"
|
369 |
msgstr "Gennemtving oprettelse af tabeller"
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
372 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
376 |
msgid "User Profile"
|
377 |
msgstr "Brugerprofil"
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
380 |
#, fuzzy
|
381 |
msgid "Extra Fields section title"
|
382 |
msgstr "Tabel med ekstra felter"
|
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 "Feltrækkernes titel, adkilt med komma"
|
387 |
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
389 |
msgid "example: title1,title2,title3"
|
390 |
msgstr "F. eks.: Titel1,Titel2,Titel3"
|
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 ""
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
399 |
msgid "Authors & Users Extended"
|
400 |
msgstr "Bruger liste"
|
401 |
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
403 |
msgid "Hide username field"
|
404 |
msgstr "Skjul brugernavn"
|
405 |
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
407 |
msgid "Hide name field"
|
408 |
msgstr "Skjul fornavn"
|
409 |
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
411 |
msgid "Hide email field"
|
412 |
msgstr "Skjul e-mailadresse"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
415 |
#, fuzzy
|
416 |
msgid "Hide role field"
|
417 |
msgstr "Skjul fornavn"
|
418 |
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
420 |
msgid "Hide website field"
|
421 |
msgstr "Skjul website"
|
422 |
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
424 |
msgid "Hide n. posts field"
|
425 |
msgstr "Skjul angivelse af antal af brugerindlæg"
|
426 |
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
428 |
msgid "WordPress hidden fields"
|
429 |
msgstr "Wordpress skjulte felter"
|
430 |
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
432 |
msgid "Show password"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
436 |
msgid "Show confirmation password"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
440 |
msgid "Show password strength meter"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
444 |
msgid "Show first name"
|
445 |
msgstr "Vis fornavn"
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
448 |
msgid "Show last name"
|
449 |
msgstr "Vis Efternavn"
|
450 |
|
451 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
452 |
msgid "Show nickname"
|
453 |
msgstr "Vis Kaldenavn"
|
454 |
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
456 |
msgid "Show website"
|
457 |
msgstr "Website"
|
458 |
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
460 |
msgid "Show AIM"
|
461 |
msgstr "Vis AIM"
|
462 |
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
464 |
msgid "Show Yahoo IM"
|
465 |
msgstr "Vis 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 "Vis 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 ""
|
474 |
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
476 |
msgid "Password"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
480 |
msgid "Password confirmation"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
484 |
#, fuzzy
|
485 |
msgid "First name"
|
486 |
msgstr "Vis fornavn"
|
487 |
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
489 |
#, fuzzy
|
490 |
msgid "Last name"
|
491 |
msgstr "Vis Efternavn"
|
492 |
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
494 |
#, fuzzy
|
495 |
msgid "Nickname"
|
496 |
msgstr "Navn"
|
497 |
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
499 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
500 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
501 |
msgid "Website"
|
502 |
msgstr "Website"
|
503 |
|
504 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
505 |
msgid "AIM"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
509 |
#, fuzzy
|
510 |
msgid "Yahoo IM"
|
511 |
msgstr "Vis Yahoo IM"
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
514 |
#, fuzzy
|
515 |
msgid "Jabber / Google Talk"
|
516 |
msgstr "Vis Jabber / Google Talk"
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
519 |
msgid "Biographical Info"
|
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 |
msgid "Fields"
|
525 |
msgstr "Felter"
|
526 |
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
529 |
msgid "A&U Extended"
|
530 |
msgstr "Bruger liste"
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
533 |
#, fuzzy
|
534 |
msgid "Users Extended"
|
535 |
msgstr "Vis alle brugere"
|
@@ -548,67 +552,77 @@ msgstr ""
|
|
548 |
msgid "File '%s' is not an image."
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
552 |
#, fuzzy
|
553 |
msgid "Delete the file"
|
554 |
msgstr "Slet felt"
|
555 |
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
557 |
#, fuzzy
|
558 |
msgid "Update the file"
|
559 |
msgstr "Opdater felt"
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
562 |
#, fuzzy
|
563 |
msgid "Update the picture"
|
564 |
msgstr "Opdater felt"
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
567 |
msgid "Picture URL:"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
#, php-format
|
572 |
msgid "New user registration on your site %s:"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
576 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
577 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
578 |
#, fuzzy, php-format
|
579 |
msgid "Username: %s"
|
580 |
msgstr "Brugernavn"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
583 |
#, fuzzy, php-format
|
584 |
msgid "E-mail: %s"
|
585 |
msgstr "e-mail: %s"
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
588 |
#, php-format
|
589 |
msgid "[%s] New User Registration"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
594 |
#, php-format
|
595 |
msgid "Password: %s"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
599 |
#, php-format
|
600 |
msgid "[%s] Your username and password"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
605 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
607 |
#, php-format
|
608 |
msgid "%s: %s"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
612 |
#, php-format
|
613 |
msgid ""
|
614 |
"To activate your user, please click the following link:\n"
|
@@ -619,45 +633,45 @@ msgid ""
|
|
619 |
"\n"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
623 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
|
|
624 |
msgid "Your account is now active!"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
628 |
#, php-format
|
629 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
633 |
msgid "An error occurred during the activation"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
637 |
msgid "Invalid activation key."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
641 |
msgid "The site is already active."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
645 |
msgid "Could not create user"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
649 |
msgid "That username is already activated."
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
653 |
msgid "That username is currently reserved but may be available in a couple of days."
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
657 |
msgid "username and email used"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
661 |
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."
|
662 |
msgstr ""
|
663 |
|
@@ -682,17 +696,17 @@ msgid "Change order"
|
|
682 |
msgstr "Ændre rækkefølge"
|
683 |
|
684 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
686 |
msgid "Min length"
|
687 |
msgstr "Min. længde"
|
688 |
|
689 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
691 |
msgid "Exact length"
|
692 |
msgstr "Eksakt længde"
|
693 |
|
694 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
696 |
msgid "Max length"
|
697 |
msgstr "Max. længde"
|
698 |
|
@@ -700,400 +714,420 @@ msgstr "Max. længde"
|
|
700 |
msgid "Exact or Max length"
|
701 |
msgstr "Eksakt eller max. længde"
|
702 |
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
704 |
msgid "changed to"
|
705 |
msgstr "ændret til"
|
706 |
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
708 |
msgid "You cannot give an order that misses some numbers"
|
709 |
msgstr "Ved angivelse af rækkefølge skal hele talrækken med."
|
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 "Nothing selected"
|
714 |
msgstr "Ingenting valgt "
|
715 |
|
716 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
717 |
msgid "Field(s)"
|
718 |
msgstr "Felt(er)"
|
719 |
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
721 |
msgid "deleted correctly"
|
722 |
msgstr "Sletning gennemført"
|
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 "Min size"
|
727 |
msgstr "Min. størrelse"
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
731 |
msgid "Exact size"
|
732 |
msgstr "Eksakt størrelse"
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
735 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
736 |
msgid "Max size"
|
737 |
msgstr "Max. størrelse"
|
738 |
|
739 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
740 |
msgid "Exact or Max size"
|
741 |
msgstr "Eksakt eller Max. størrelse"
|
742 |
|
743 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
744 |
msgid "Name not specified"
|
745 |
msgstr "Navn ikke angivet"
|
746 |
|
747 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
748 |
msgid "Name cannot contains spaces"
|
749 |
msgstr "Navnet må ikke indeholde mellemrum"
|
750 |
|
751 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
752 |
msgid "Label not specified"
|
753 |
msgstr "Betegnelse ikke angivet"
|
754 |
|
755 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
756 |
msgid "not selected (with this type is necessary)"
|
757 |
msgstr "ikke valgt (kræves ved denne Type)"
|
758 |
|
759 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
760 |
msgid "If you select"
|
761 |
msgstr "Ved valg"
|
762 |
|
763 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
764 |
msgid "you cannot select Min or Max"
|
765 |
msgstr "Min eller Max kan ikke vælges"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
770 |
msgid "should be in the range of"
|
771 |
msgstr "skal angives indenfor følgende talrække"
|
772 |
|
773 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
775 |
msgid "Equal TO not specified"
|
776 |
msgstr "LIG MED ikke angivet"
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
779 |
msgid "With checkbox type Equal TO can only be"
|
780 |
msgstr "Ved 'Type' - 'checkbox' kan LIG MED kun være"
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
783 |
msgid "With radio type Equal TO can only be"
|
784 |
msgstr "Ved 'Type' - 'radio' kan LIG MED kun være"
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
787 |
msgid "With checkbox type Value can only be"
|
788 |
msgstr "Ved 'Type' - 'checkbox' kan 'Værdi' kun være"
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
791 |
msgid "With radio type Value can only be"
|
792 |
msgstr "Ved 'Type' - 'radio' kan 'Værdi' kun være"
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
msgid "Field inserted correctly"
|
796 |
msgstr "Felt indsat"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
799 |
msgid "Field #"
|
800 |
msgstr "Felt #"
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
803 |
msgid "updated correctly"
|
804 |
msgstr "Opdatering gennemført"
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
msgid "Name inserted is just in the database, change to another one"
|
808 |
msgstr "Det valgte navn findes allerede, vælg venligst et andet"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
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."
|
812 |
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."
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
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'"
|
816 |
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."
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
819 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
820 |
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"
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
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"
|
824 |
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."
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
827 |
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)"
|
828 |
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)."
|
829 |
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
832 |
msgstr "<strong>registration-date</strong>: <em>LIG MED</em> henviser til dato- og tidsformat."
|
833 |
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
#, fuzzy
|
836 |
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"
|
837 |
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."
|
838 |
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
840 |
#, fuzzy
|
841 |
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"
|
842 |
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."
|
843 |
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
850 |
msgid "Name"
|
851 |
msgstr "Navn"
|
852 |
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
msgid "Value"
|
860 |
msgstr "Værdi"
|
861 |
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
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 |
msgid "Type"
|
867 |
msgstr "Type"
|
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 |
msgid "Label"
|
874 |
msgstr "Betegnelse"
|
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 |
msgid "Description"
|
881 |
msgstr "Beskrivelse"
|
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 |
msgid "Rules"
|
886 |
msgstr "Regler"
|
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 |
msgid "Actions"
|
891 |
msgstr "Handlinger"
|
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 |
#, fuzzy
|
896 |
msgid "Fieldset"
|
897 |
msgstr "Felter"
|
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 |
msgid "Can be empty"
|
902 |
msgstr "Kan være tomt"
|
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 "Check for E-mail syntax"
|
907 |
msgstr "Kontroller venligst e-mailadressen"
|
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 "Can be modified"
|
912 |
msgstr "Kan ændres"
|
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 |
msgid "Can be modified only if empty"
|
917 |
msgstr "Kan kun ændres hvis feltet er tomt"
|
918 |
|
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 |
msgid "Can be modified only by admin"
|
922 |
msgstr "Kan kun ændres af Administrator"
|
923 |
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
926 |
msgid "Can be modified only by admin or if empty"
|
927 |
msgstr "Kan kun ændres hvis det er tomt"
|
928 |
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
931 |
msgid "Cannot be modified"
|
932 |
msgstr "Kan ikke ændres"
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
msgid "Should be equal TO"
|
937 |
msgstr "Skal være LIG MED"
|
938 |
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
941 |
msgid "Case sensitive"
|
942 |
msgstr "Forskel på store og små bogstaver"
|
943 |
|
944 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
946 |
msgid "Regular Expression"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
950 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
951 |
msgid "Show the field in the registration"
|
952 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
953 |
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
msgid "Show the field in User's profile"
|
957 |
msgstr "Vis felt i 'Brugerprofil'"
|
958 |
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
961 |
msgid "Show the field in A&U Extended menu"
|
962 |
msgstr "Vis felt under 'Vis alle brugere'"
|
963 |
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
966 |
#, fuzzy
|
967 |
msgid "Show the field in the search engine"
|
968 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
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 |
#, fuzzy
|
973 |
msgid "Show the field in the blog"
|
974 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
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 |
#, fuzzy
|
979 |
msgid "Show the field if the role is at least:"
|
980 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
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 "Anonymous"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
988 |
msgid "Clear"
|
989 |
msgstr "Slet"
|
990 |
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
992 |
msgid "Invert selection"
|
993 |
msgstr "Omvend markering"
|
994 |
|
995 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
996 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
997 |
msgstr "Er du sikker på at du vil slette dette/disse felt(er) og al tilknyttet brugerdata?"
|
998 |
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1000 |
msgid "WordPress Fields"
|
1001 |
msgstr "WordPress felter"
|
1002 |
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
msgid "None!"
|
1005 |
msgstr "Ingen!"
|
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 "Order"
|
1010 |
msgstr "Rækkefølge"
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1013 |
msgid "Reset"
|
1014 |
msgstr "Nulstil"
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
1017 |
#, fuzzy
|
1018 |
msgid "select"
|
1019 |
msgstr "Slet"
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1022 |
#, php-format
|
1023 |
msgid "Users Matching \"%s\""
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1027 |
#, fuzzy
|
1028 |
msgid "Users Extended List"
|
1029 |
msgstr "Vis alle brugere"
|
1030 |
|
1031 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1032 |
msgid "Authors & Users Extended List"
|
1033 |
msgstr "Vis alle brugere"
|
1034 |
|
1035 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1036 |
#, php-format
|
1037 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1041 |
msgid "Search Users"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1045 |
msgid "« Back to All Users"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1049 |
#, fuzzy
|
1050 |
msgid "Users per page"
|
1051 |
msgstr "Tabel for brugerdata"
|
1052 |
|
1053 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1054 |
msgid "Apply"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1058 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1059 |
msgid "Username"
|
1060 |
msgstr "Brugernavn"
|
1061 |
|
1062 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1063 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1064 |
msgid "E-mail"
|
1065 |
msgstr "E-mail"
|
1066 |
|
1067 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1068 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1069 |
#, fuzzy
|
1070 |
msgid "Role"
|
1071 |
msgstr "Regler"
|
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 "Posts"
|
1076 |
msgstr "Indlæg"
|
1077 |
|
1078 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1079 |
msgid "View posts by this author"
|
1080 |
msgstr "Vis denne brugers indlæg"
|
1081 |
|
1082 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1083 |
#, php-format
|
1084 |
msgid "e-mail: %s"
|
1085 |
msgstr "e-mail: %s"
|
1086 |
|
1087 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1088 |
#, fuzzy
|
1089 |
msgid "Update selected users"
|
1090 |
msgstr "Slet valgte felter"
|
1091 |
|
1092 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1093 |
#, fuzzy
|
1094 |
msgid "Update"
|
1095 |
msgstr "Opdater felt"
|
1096 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1097 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1098 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1099 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-30 14:07+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-01-30 14:07+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:407
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:446
|
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:476
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1218
|
34 |
msgid "ERROR"
|
35 |
msgstr "FEJL"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
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:425
|
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:445
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "er forkert"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
55 |
msgid "YES"
|
56 |
msgstr "JA"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
59 |
msgid "NO"
|
60 |
msgstr "NEJ"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:456
|
63 |
msgid "should be"
|
64 |
msgstr "skulle være"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
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:476
|
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:482
|
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:494
|
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:500
|
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:512
|
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:518
|
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:531
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
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:836
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:371
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
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:916
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
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:954
|
120 |
#, fuzzy
|
121 |
msgid "Change image"
|
122 |
msgstr "Ændre rækkefølge"
|
123 |
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
|
125 |
msgid "Insert the code:"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
131 |
msgstr "Objekter pr. feltrække"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:432
|
134 |
+
msgid "All"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:43
|
138 |
msgid "WordPress Fields table emptied"
|
139 |
msgstr "WordPress tabel tømt"
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
142 |
msgid "WordPress Fields table deleted"
|
143 |
msgstr "WordPress tabel slettet"
|
144 |
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
146 |
msgid "Extra Fields table emptied"
|
147 |
msgstr "Tabel med ekstra felter tømt"
|
148 |
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
150 |
msgid "Extra Fields table deleted"
|
151 |
msgstr "Tabel med ekstra felter slettet"
|
152 |
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
154 |
msgid "Users Data table emptied"
|
155 |
msgstr "Tabellen med brugerdata er blevet tømt"
|
156 |
|
157 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:76
|
158 |
msgid "Users Data table deleted"
|
159 |
msgstr "Tabellen med brugerdata er blevet slettet"
|
160 |
|
161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:87
|
162 |
msgid "Options set to default values"
|
163 |
msgstr "Indstillinger nulstillet"
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:93
|
166 |
msgid "Options deleted"
|
167 |
msgstr "Indstillinger slettet"
|
168 |
|
169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
|
170 |
msgid "Options changed"
|
171 |
msgstr "Indstillinger ændret"
|
172 |
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
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:483
|
178 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:749
|
180 |
msgid "Options"
|
181 |
msgstr "Indstillinger"
|
182 |
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:440
|
185 |
msgid "Add a new Field"
|
186 |
msgstr "Tilføj et nyt felt"
|
187 |
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:795
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
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:283
|
194 |
msgid "Extra Fields"
|
195 |
msgstr "Ekstra felter"
|
196 |
|
197 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
198 |
msgid "Support the Cimy Project"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
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:510
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1236
|
207 |
msgid "SUCCESSFUL"
|
208 |
msgstr "GENNEMFØRT"
|
209 |
|
210 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
|
211 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:830
|
212 |
msgid "Save Changes"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
216 |
msgid "General"
|
217 |
msgstr "Generelle indstillinger"
|
218 |
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
220 |
msgid "installed is"
|
221 |
msgstr "installeret er"
|
222 |
|
223 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
224 |
msgid "OPTIONS DELETED!"
|
225 |
msgstr "INDSTILLINGER SLETTET!"
|
226 |
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
228 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
229 |
msgid "Fix the problem"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
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! Husk at deaktivere og genaktivere plugin'et efter opdatering!"
|
235 |
|
236 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
237 |
msgid "Picture/Avatar upload"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
241 |
msgid "is created and writable"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
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:564
|
249 |
#, fuzzy
|
250 |
msgid "Show all fields in the welcome email"
|
251 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
252 |
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
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:576
|
258 |
msgid "Enable email confirmation"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
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:582
|
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:589
|
270 |
msgid "Redirect to the source"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
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:601
|
278 |
msgid "No captcha"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
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:613
|
286 |
msgid "Public KEY"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
290 |
msgid "Private KEY"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
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:628
|
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:632
|
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:639
|
307 |
msgid "Change login/registration page logo"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
311 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:435
|
312 |
#, fuzzy
|
313 |
msgid "Delete the picture"
|
314 |
msgstr "Slet felt"
|
315 |
|
316 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
|
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:653
|
321 |
msgid "Database"
|
322 |
msgstr "Database administration"
|
323 |
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
326 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
|
328 |
msgid "select action"
|
329 |
msgstr "Vælg handling"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
332 |
msgid "Default values"
|
333 |
msgstr "Standard værdier"
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:718
|
339 |
msgid "Delete"
|
340 |
msgstr "Slet"
|
341 |
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:687
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
|
346 |
msgid "NOT PRESENT"
|
347 |
msgstr "FINDES IKKE"
|
348 |
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
350 |
msgid "WordPress Fields table"
|
351 |
msgstr "WordPress tabel"
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:700
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
356 |
msgid "Empty"
|
357 |
msgstr "Tøm"
|
358 |
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
360 |
msgid "Extra Fields table"
|
361 |
msgstr "Tabel med ekstra felter"
|
362 |
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
|
364 |
msgid "Users Data table"
|
365 |
msgstr "Tabel for brugerdata"
|
366 |
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
368 |
msgid "all data inserted by users in all and only extra fields"
|
369 |
msgstr "al brugerdata i alle ekstra felter"
|
370 |
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
372 |
msgid "Force tables creation"
|
373 |
msgstr "Gennemtving oprettelse af tabeller"
|
374 |
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
376 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
380 |
msgid "User Profile"
|
381 |
msgstr "Brugerprofil"
|
382 |
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
|
384 |
#, fuzzy
|
385 |
msgid "Extra Fields section title"
|
386 |
msgstr "Tabel med ekstra felter"
|
387 |
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
389 |
msgid "Fieldset's titles, separates with comma"
|
390 |
msgstr "Feltrækkernes titel, adkilt med komma"
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
393 |
msgid "example: title1,title2,title3"
|
394 |
msgstr "F. eks.: Titel1,Titel2,Titel3"
|
395 |
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
|
397 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
403 |
msgid "Authors & Users Extended"
|
404 |
msgstr "Bruger liste"
|
405 |
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
407 |
msgid "Hide username field"
|
408 |
msgstr "Skjul brugernavn"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:760
|
411 |
msgid "Hide name field"
|
412 |
msgstr "Skjul fornavn"
|
413 |
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
|
415 |
msgid "Hide email field"
|
416 |
msgstr "Skjul e-mailadresse"
|
417 |
|
418 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:769
|
419 |
#, fuzzy
|
420 |
msgid "Hide role field"
|
421 |
msgstr "Skjul fornavn"
|
422 |
|
423 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:773
|
424 |
msgid "Hide website field"
|
425 |
msgstr "Skjul website"
|
426 |
|
427 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:777
|
428 |
msgid "Hide n. posts field"
|
429 |
msgstr "Skjul angivelse af antal af brugerindlæg"
|
430 |
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
432 |
msgid "WordPress hidden fields"
|
433 |
msgstr "Wordpress skjulte felter"
|
434 |
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:785
|
436 |
msgid "Show password"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:789
|
440 |
msgid "Show confirmation password"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
|
444 |
msgid "Show password strength meter"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:797
|
448 |
msgid "Show first name"
|
449 |
msgstr "Vis fornavn"
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:801
|
452 |
msgid "Show last name"
|
453 |
msgstr "Vis Efternavn"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:805
|
456 |
msgid "Show nickname"
|
457 |
msgstr "Vis Kaldenavn"
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:809
|
460 |
msgid "Show website"
|
461 |
msgstr "Website"
|
462 |
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:813
|
464 |
msgid "Show AIM"
|
465 |
msgstr "Vis AIM"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:817
|
468 |
msgid "Show Yahoo IM"
|
469 |
msgstr "Vis Yahoo IM"
|
470 |
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:821
|
472 |
msgid "Show Jabber / Google Talk"
|
473 |
msgstr "Vis Jabber / Google Talk"
|
474 |
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:825
|
476 |
msgid "Show Biographical Info"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
|
480 |
msgid "Password"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
484 |
msgid "Password confirmation"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
488 |
#, fuzzy
|
489 |
msgid "First name"
|
490 |
msgstr "Vis fornavn"
|
491 |
|
492 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
493 |
#, fuzzy
|
494 |
msgid "Last name"
|
495 |
msgstr "Vis Efternavn"
|
496 |
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
498 |
#, fuzzy
|
499 |
msgid "Nickname"
|
500 |
msgstr "Navn"
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1541
|
505 |
msgid "Website"
|
506 |
msgstr "Website"
|
507 |
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
|
509 |
msgid "AIM"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
|
513 |
#, fuzzy
|
514 |
msgid "Yahoo IM"
|
515 |
msgstr "Vis Yahoo IM"
|
516 |
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
|
518 |
#, fuzzy
|
519 |
msgid "Jabber / Google Talk"
|
520 |
msgstr "Vis Jabber / Google Talk"
|
521 |
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:400
|
523 |
msgid "Biographical Info"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:750
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
528 |
msgid "Fields"
|
529 |
msgstr "Felter"
|
530 |
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
533 |
msgid "A&U Extended"
|
534 |
msgstr "Bruger liste"
|
535 |
|
536 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
537 |
#, fuzzy
|
538 |
msgid "Users Extended"
|
539 |
msgstr "Vis alle brugere"
|
552 |
msgid "File '%s' is not an image."
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:431
|
556 |
#, fuzzy
|
557 |
msgid "Delete the file"
|
558 |
msgstr "Slet felt"
|
559 |
|
560 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:432
|
561 |
#, fuzzy
|
562 |
msgid "Update the file"
|
563 |
msgstr "Opdater felt"
|
564 |
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:436
|
566 |
#, fuzzy
|
567 |
msgid "Update the picture"
|
568 |
msgstr "Opdater felt"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:456
|
571 |
msgid "Picture URL:"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:684
|
575 |
+
#, php-format
|
576 |
+
msgid "%s previous value: %s new value: %s"
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:699
|
580 |
+
#, php-format
|
581 |
+
msgid "%s (%s) has changed one or more fields"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
585 |
#, php-format
|
586 |
msgid "New user registration on your site %s:"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
592 |
#, fuzzy, php-format
|
593 |
msgid "Username: %s"
|
594 |
msgstr "Brugernavn"
|
595 |
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
|
597 |
#, fuzzy, php-format
|
598 |
msgid "E-mail: %s"
|
599 |
msgstr "e-mail: %s"
|
600 |
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
|
602 |
#, php-format
|
603 |
msgid "[%s] New User Registration"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
608 |
#, php-format
|
609 |
msgid "Password: %s"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
613 |
#, php-format
|
614 |
msgid "[%s] Your username and password"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:100
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
619 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:124
|
621 |
#, php-format
|
622 |
msgid "%s: %s"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:198
|
626 |
#, php-format
|
627 |
msgid ""
|
628 |
"To activate your user, please click the following link:\n"
|
633 |
"\n"
|
634 |
msgstr ""
|
635 |
|
|
|
636 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
638 |
msgid "Your account is now active!"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
642 |
#, php-format
|
643 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:217
|
647 |
msgid "An error occurred during the activation"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
651 |
msgid "Invalid activation key."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:239
|
655 |
msgid "The site is already active."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:258
|
659 |
msgid "Could not create user"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:270
|
663 |
msgid "That username is already activated."
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:290
|
667 |
msgid "That username is currently reserved but may be available in a couple of days."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:293
|
671 |
msgid "username and email used"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:303
|
675 |
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."
|
676 |
msgstr ""
|
677 |
|
696 |
msgstr "Ændre rækkefølge"
|
697 |
|
698 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
700 |
msgid "Min length"
|
701 |
msgstr "Min. længde"
|
702 |
|
703 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1045
|
705 |
msgid "Exact length"
|
706 |
msgstr "Eksakt længde"
|
707 |
|
708 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
709 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
|
710 |
msgid "Max length"
|
711 |
msgstr "Max. længde"
|
712 |
|
714 |
msgid "Exact or Max length"
|
715 |
msgstr "Eksakt eller max. længde"
|
716 |
|
717 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
718 |
msgid "changed to"
|
719 |
msgstr "ændret til"
|
720 |
|
721 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
722 |
msgid "You cannot give an order that misses some numbers"
|
723 |
msgstr "Ved angivelse af rækkefølge skal hele talrækken med."
|
724 |
|
725 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
727 |
msgid "Nothing selected"
|
728 |
msgstr "Ingenting valgt "
|
729 |
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
731 |
msgid "Field(s)"
|
732 |
msgstr "Felt(er)"
|
733 |
|
734 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
735 |
msgid "deleted correctly"
|
736 |
msgstr "Sletning gennemført"
|
737 |
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:236
|
739 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1036
|
740 |
msgid "Min size"
|
741 |
msgstr "Min. størrelse"
|
742 |
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:237
|
744 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1037
|
745 |
msgid "Exact size"
|
746 |
msgstr "Eksakt størrelse"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
|
749 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
|
750 |
msgid "Max size"
|
751 |
msgstr "Max. størrelse"
|
752 |
|
753 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
754 |
msgid "Exact or Max size"
|
755 |
msgstr "Eksakt eller Max. størrelse"
|
756 |
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
758 |
msgid "Name not specified"
|
759 |
msgstr "Navn ikke angivet"
|
760 |
|
761 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
762 |
msgid "Name cannot contains spaces"
|
763 |
msgstr "Navnet må ikke indeholde mellemrum"
|
764 |
|
765 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:300
|
766 |
msgid "Label not specified"
|
767 |
msgstr "Betegnelse ikke angivet"
|
768 |
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:305
|
770 |
msgid "not selected (with this type is necessary)"
|
771 |
msgstr "ikke valgt (kræves ved denne Type)"
|
772 |
|
773 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
774 |
msgid "If you select"
|
775 |
msgstr "Ved valg"
|
776 |
|
777 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
778 |
msgid "you cannot select Min or Max"
|
779 |
msgstr "Min eller Max kan ikke vælges"
|
780 |
|
781 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
782 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:321
|
783 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
784 |
msgid "should be in the range of"
|
785 |
msgstr "skal angives indenfor følgende talrække"
|
786 |
|
787 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:336
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
789 |
msgid "Equal TO not specified"
|
790 |
msgstr "LIG MED ikke angivet"
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:341
|
793 |
msgid "With checkbox type Equal TO can only be"
|
794 |
msgstr "Ved 'Type' - 'checkbox' kan LIG MED kun være"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:344
|
797 |
msgid "With radio type Equal TO can only be"
|
798 |
msgstr "Ved 'Type' - 'radio' kan LIG MED kun være"
|
799 |
|
800 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:360
|
801 |
msgid "With checkbox type Value can only be"
|
802 |
msgstr "Ved 'Type' - 'checkbox' kan 'Værdi' kun være"
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:363
|
805 |
msgid "With radio type Value can only be"
|
806 |
msgstr "Ved 'Type' - 'radio' kan 'Værdi' kun være"
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:420
|
809 |
msgid "Field inserted correctly"
|
810 |
msgstr "Felt indsat"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
813 |
msgid "Field #"
|
814 |
msgstr "Felt #"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
817 |
msgid "updated correctly"
|
818 |
msgstr "Opdatering gennemført"
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:425
|
821 |
msgid "Name inserted is just in the database, change to another one"
|
822 |
msgstr "Det valgte navn findes allerede, vælg venligst et andet"
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
|
825 |
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."
|
826 |
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."
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
829 |
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'"
|
830 |
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."
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
833 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
834 |
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"
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
837 |
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"
|
838 |
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."
|
839 |
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
841 |
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)"
|
842 |
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)."
|
843 |
|
844 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
|
845 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
846 |
msgstr "<strong>registration-date</strong>: <em>LIG MED</em> henviser til dato- og tidsformat."
|
847 |
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
849 |
#, fuzzy
|
850 |
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"
|
851 |
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."
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
854 |
#, fuzzy
|
855 |
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"
|
856 |
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."
|
857 |
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1069
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1525
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1526
|
864 |
msgid "Name"
|
865 |
msgstr "Navn"
|
866 |
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1072
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
873 |
msgid "Value"
|
874 |
msgstr "Værdi"
|
875 |
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
879 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1075
|
880 |
msgid "Type"
|
881 |
msgstr "Type"
|
882 |
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
884 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
887 |
msgid "Label"
|
888 |
msgstr "Betegnelse"
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
891 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:661
|
892 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1100
|
894 |
msgid "Description"
|
895 |
msgstr "Beskrivelse"
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
899 |
msgid "Rules"
|
900 |
msgstr "Regler"
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
903 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
904 |
msgid "Actions"
|
905 |
msgstr "Handlinger"
|
906 |
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
908 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
|
910 |
#, fuzzy
|
911 |
msgid "Fieldset"
|
912 |
msgstr "Felter"
|
913 |
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:673
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
916 |
msgid "Can be empty"
|
917 |
msgstr "Kan være tomt"
|
918 |
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
|
920 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
921 |
msgid "Check for E-mail syntax"
|
922 |
msgstr "Kontroller venligst e-mailadressen"
|
923 |
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
926 |
msgid "Can be modified"
|
927 |
msgstr "Kan ændres"
|
928 |
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
931 |
msgid "Can be modified only if empty"
|
932 |
msgstr "Kan kun ændres hvis feltet er tomt"
|
933 |
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
936 |
msgid "Can be modified only by admin"
|
937 |
msgstr "Kan kun ændres af Administrator"
|
938 |
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:680
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1121
|
941 |
msgid "Can be modified only by admin or if empty"
|
942 |
msgstr "Kan kun ændres hvis det er tomt"
|
943 |
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
945 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
946 |
msgid "Cannot be modified"
|
947 |
msgstr "Kan ikke ændres"
|
948 |
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
951 |
msgid "Should be equal TO"
|
952 |
msgstr "Skal være LIG MED"
|
953 |
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1129
|
956 |
msgid "Case sensitive"
|
957 |
msgstr "Forskel på store og små bogstaver"
|
958 |
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
961 |
msgid "Regular Expression"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:697
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
966 |
msgid "Show the field in the registration"
|
967 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
968 |
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
971 |
msgid "Show the field in User's profile"
|
972 |
msgstr "Vis felt i 'Brugerprofil'"
|
973 |
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:703
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
976 |
msgid "Show the field in A&U Extended menu"
|
977 |
msgstr "Vis felt under 'Vis alle brugere'"
|
978 |
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:706
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1150
|
981 |
#, fuzzy
|
982 |
msgid "Show the field in the search engine"
|
983 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
984 |
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
|
986 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
987 |
#, fuzzy
|
988 |
msgid "Show the field in the blog"
|
989 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
990 |
|
991 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:712
|
992 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1156
|
993 |
#, fuzzy
|
994 |
msgid "Show the field if the role is at least:"
|
995 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
999 |
msgid "Anonymous"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:724
|
1003 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1171
|
1004 |
+
msgid "Send an email to the admin if the user changes its value"
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
1008 |
msgid "Clear"
|
1009 |
msgstr "Slet"
|
1010 |
|
1011 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:786
|
1012 |
msgid "Invert selection"
|
1013 |
msgstr "Omvend markering"
|
1014 |
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
1016 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1017 |
msgstr "Er du sikker på at du vil slette dette/disse felt(er) og al tilknyttet brugerdata?"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:793
|
1020 |
msgid "WordPress Fields"
|
1021 |
msgstr "WordPress felter"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:806
|
1024 |
msgid "None!"
|
1025 |
msgstr "Ingen!"
|
1026 |
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:821
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
1029 |
msgid "Order"
|
1030 |
msgstr "Rækkefølge"
|
1031 |
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1033 |
msgid "Reset"
|
1034 |
msgstr "Nulstil"
|
1035 |
|
1036 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1265
|
1037 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1038 |
#, fuzzy
|
1039 |
msgid "select"
|
1040 |
msgstr "Slet"
|
1041 |
|
1042 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1043 |
#, php-format
|
1044 |
msgid "Users Matching \"%s\""
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1402
|
1048 |
#, fuzzy
|
1049 |
msgid "Users Extended List"
|
1050 |
msgstr "Vis alle brugere"
|
1051 |
|
1052 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1404
|
1053 |
msgid "Authors & Users Extended List"
|
1054 |
msgstr "Vis alle brugere"
|
1055 |
|
1056 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
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:1456
|
1062 |
msgid "Search Users"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
1066 |
msgid "« Back to All Users"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
1070 |
#, fuzzy
|
1071 |
msgid "Users per page"
|
1072 |
msgstr "Tabel for brugerdata"
|
1073 |
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
|
1075 |
msgid "Apply"
|
1076 |
msgstr ""
|
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 "Username"
|
1081 |
msgstr "Brugernavn"
|
1082 |
|
1083 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1530
|
1084 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1531
|
1085 |
msgid "E-mail"
|
1086 |
msgstr "E-mail"
|
1087 |
|
1088 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
1089 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1536
|
1090 |
#, fuzzy
|
1091 |
msgid "Role"
|
1092 |
msgstr "Regler"
|
1093 |
|
1094 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1546
|
1096 |
msgid "Posts"
|
1097 |
msgstr "Indlæg"
|
1098 |
|
1099 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1682
|
1100 |
msgid "View posts by this author"
|
1101 |
msgstr "Vis denne brugers indlæg"
|
1102 |
|
1103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1713
|
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:1834
|
1109 |
+
#, fuzzy
|
1110 |
+
msgid "Change"
|
1111 |
+
msgstr "Ændre rækkefølge"
|
1112 |
+
|
1113 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1859
|
1114 |
#, fuzzy
|
1115 |
msgid "Update selected users"
|
1116 |
msgstr "Slet valgte felter"
|
1117 |
|
1118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1880
|
1119 |
#, fuzzy
|
1120 |
msgid "Update"
|
1121 |
msgstr "Opdater felt"
|
1122 |
|
1123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1898
|
1124 |
+
msgid "OK"
|
1125 |
+
msgstr ""
|
1126 |
+
|
1127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1899
|
1128 |
+
msgid "Cancel"
|
1129 |
+
msgstr ""
|
1130 |
+
|
1131 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1132 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1133 |
msgstr ""
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,514 +16,518 @@ 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:403
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
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:
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
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/cimy_uef_profile.php:299
|
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:305
|
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 |
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 "Reihenfolge ändern "
|
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:
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
131 |
msgstr "\"Benutzerdefinierte Felder\" pro Abschnitt"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
134 |
msgid "WordPress Fields table emptied"
|
135 |
msgstr "WP-Datenbank-Tabelle Zusatzfelder geleert"
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
138 |
msgid "WordPress Fields table deleted"
|
139 |
msgstr "WP-Datenbank-Tabelle Zusatzfelder gelöscht"
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
142 |
msgid "Extra Fields table emptied"
|
143 |
msgstr "Tabelle \"Benutzerdefinierte Felder\" geleert"
|
144 |
|
145 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
146 |
msgid "Extra Fields table deleted"
|
147 |
msgstr "Tabelle \"Benutzerdefinierte Felder\" gelöscht"
|
148 |
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
150 |
msgid "Users Data table emptied"
|
151 |
msgstr "Tabelle \"Benutzerdaten\" geleert"
|
152 |
|
153 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
154 |
msgid "Users Data table deleted"
|
155 |
msgstr "Tabelle \"Benutzerdaten\" gelöscht"
|
156 |
|
157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
158 |
msgid "Options set to default values"
|
159 |
msgstr "Einstellungen auf Grundeinstellungen zurück gesetzt"
|
160 |
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
162 |
msgid "Options deleted"
|
163 |
msgstr "Einstellungen gelöscht"
|
164 |
|
165 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
166 |
msgid "Options changed"
|
167 |
msgstr "Einstellungen aktualisiert"
|
168 |
|
169 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
170 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
175 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
176 |
msgid "Options"
|
177 |
msgstr "Einstellungen"
|
178 |
|
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_uef_admin.php:
|
181 |
msgid "Add a new Field"
|
182 |
msgstr "Ein neues Feld hinzufügen"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
189 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
190 |
msgid "Extra Fields"
|
191 |
msgstr "Benutzerdefinierte Felder"
|
192 |
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
194 |
msgid "Support the Cimy Project"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
198 |
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!"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
203 |
msgid "SUCCESSFUL"
|
204 |
msgstr "ERFOLGREICH"
|
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_options.php:
|
208 |
msgid "Save Changes"
|
209 |
msgstr "Einstellungen aktualisieren"
|
210 |
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
msgid "General"
|
213 |
msgstr "Allgemein"
|
214 |
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
216 |
msgid "installed is"
|
217 |
msgstr "installiert ist"
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
220 |
msgid "OPTIONS DELETED!"
|
221 |
msgstr "EINSTELLUNGEN GELÖSCHT!"
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
225 |
msgid "Fix the problem"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
229 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
230 |
msgstr "VERSIONEN NICHT KOMPATIBEL! Du hast das Plugin nach dem Update nicht deaktiviert und anschließend reaktiviert. Das könnte Probleme geben..."
|
231 |
|
232 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
233 |
msgid "Picture/Avatar upload"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
237 |
msgid "is created and writable"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
241 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
245 |
#, fuzzy
|
246 |
msgid "Show all fields in the welcome email"
|
247 |
msgstr "Zeige das Feld bei der Registrierung"
|
248 |
|
249 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
250 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
254 |
msgid "Enable email confirmation"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
258 |
msgid "user that registers should confirm its email address via a link click"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
262 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
266 |
msgid "Redirect to the source"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
270 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
274 |
msgid "No captcha"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
278 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
msgid "Public KEY"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
286 |
msgid "Private KEY"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
294 |
msgid "This captcha is probably weaker, but is easier for users"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
#, php-format
|
299 |
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>"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
303 |
msgid "Change login/registration page logo"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
308 |
msgid "Delete the picture"
|
309 |
msgstr "Bild löschen"
|
310 |
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
312 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
316 |
msgid "Database"
|
317 |
msgstr "Datenbank"
|
318 |
|
319 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
320 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "select action"
|
324 |
msgstr "Wähle Aktion"
|
325 |
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
327 |
msgid "Default values"
|
328 |
msgstr "Werte: Grundeinstellung"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
331 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "Delete"
|
335 |
msgstr "Löschen"
|
336 |
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
341 |
msgid "NOT PRESENT"
|
342 |
msgstr "NICHT VORHANDEN"
|
343 |
|
344 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
345 |
msgid "WordPress Fields table"
|
346 |
msgstr "WP-Datenbank-Tabelle"
|
347 |
|
348 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
351 |
msgid "Empty"
|
352 |
msgstr "Leer"
|
353 |
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
355 |
msgid "Extra Fields table"
|
356 |
msgstr "Tabelle \"Benutzerdefinierte Felder\""
|
357 |
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
359 |
msgid "Users Data table"
|
360 |
msgstr "Tabelle \"Benutzerdaten\""
|
361 |
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
363 |
msgid "all data inserted by users in all and only extra fields"
|
364 |
msgstr "alle von \"Benutzern\" in die Cimy-Zusatzfelder eingetragenen Daten"
|
365 |
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
367 |
msgid "Force tables creation"
|
368 |
msgstr "Erzwingt die Erstellung der Datenbanktabellen"
|
369 |
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
371 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
372 |
msgstr "Achtung: Mit dieser Einstellung zwingen Sie das PlugIn die Datenbanktabellen zu erstellen. Dieser Schritt wird auch bei (De-)Aktivierung des PlugIns durchgeführt."
|
373 |
|
374 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
375 |
msgid "User Profile"
|
376 |
msgstr "\"Benutzer\" Profil"
|
377 |
|
378 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
379 |
msgid "Extra Fields section title"
|
380 |
msgstr "Titel für \"Benutzerdefinierte Felder\""
|
381 |
|
382 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
383 |
msgid "Fieldset's titles, separates with comma"
|
384 |
msgstr "Titel des Abschnitts der \"Benutzerdefinierten Felder\", abgetrennt durch Kommata (',')"
|
385 |
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
387 |
msgid "example: title1,title2,title3"
|
388 |
msgstr "Beispiel: Titel1, Titel2, Titel3"
|
389 |
|
390 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
391 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
397 |
msgid "Authors & Users Extended"
|
398 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
401 |
msgid "Hide username field"
|
402 |
msgstr "Feld: \"'Benutzer'-Name\" nicht anzeigen"
|
403 |
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
405 |
msgid "Hide name field"
|
406 |
msgstr "Feld: \"Name\" nicht anzeigen"
|
407 |
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
409 |
msgid "Hide email field"
|
410 |
msgstr "Feld: \"E-mail Adresse\" nicht anzeigen"
|
411 |
|
412 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
413 |
msgid "Hide role field"
|
414 |
msgstr "Feld: \"Rolle\" des \"Benutzers\" nicht anzeigen"
|
415 |
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
417 |
msgid "Hide website field"
|
418 |
msgstr "Feld: \"Webseite\" nicht anzeigen"
|
419 |
|
420 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
421 |
msgid "Hide n. posts field"
|
422 |
msgstr "Feld: Anzahl der von \"Benutzer(n)\" erstellten Artikel nicht anzeigen"
|
423 |
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
425 |
msgid "WordPress hidden fields"
|
426 |
msgstr "Feld: \"Wordpress hidden fields\" (verborgene Felder)"
|
427 |
|
428 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
429 |
msgid "Show password"
|
430 |
msgstr "\"Passwort\" anzeigen"
|
431 |
|
432 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
433 |
#, fuzzy
|
434 |
msgid "Show confirmation password"
|
435 |
msgstr "\"Passwort\" anzeigen"
|
436 |
|
437 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
438 |
#, fuzzy
|
439 |
msgid "Show password strength meter"
|
440 |
msgstr "\"Passwort\" anzeigen"
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
443 |
msgid "Show first name"
|
444 |
msgstr "Zeige \"Vornamen\""
|
445 |
|
446 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
447 |
msgid "Show last name"
|
448 |
msgstr "Zeige \"Nachnamen\""
|
449 |
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
451 |
msgid "Show nickname"
|
452 |
msgstr "Zeige \"Nicknamen\"/Spitznamen"
|
453 |
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
455 |
msgid "Show website"
|
456 |
msgstr "Zeige \"Webseite\""
|
457 |
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
459 |
msgid "Show AIM"
|
460 |
msgstr "Zeige \"AIM\""
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
463 |
msgid "Show Yahoo IM"
|
464 |
msgstr "Zeige \"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 "Zeige \"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 "\"Weitere Informationen\" anzeigen"
|
473 |
|
474 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
475 |
msgid "Password"
|
476 |
msgstr "Passwort"
|
477 |
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
479 |
msgid "Password confirmation"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
483 |
msgid "First name"
|
484 |
msgstr "Vorname"
|
485 |
|
486 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
487 |
msgid "Last name"
|
488 |
msgstr "Nachname"
|
489 |
|
490 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
491 |
msgid "Nickname"
|
492 |
msgstr "Spitzname"
|
493 |
|
494 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
495 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
496 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
497 |
msgid "Website"
|
498 |
msgstr "Webseite"
|
499 |
|
500 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
501 |
msgid "AIM"
|
502 |
msgstr "AIM"
|
503 |
|
504 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
505 |
msgid "Yahoo IM"
|
506 |
msgstr "Yahoo IM"
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
509 |
msgid "Jabber / Google Talk"
|
510 |
msgstr "Jabber / Google Talk"
|
511 |
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
513 |
msgid "Biographical Info"
|
514 |
msgstr "Weitere Informationen"
|
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 |
msgid "Fields"
|
519 |
msgstr "Felder"
|
520 |
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
523 |
msgid "A&U Extended"
|
524 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
527 |
#, fuzzy
|
528 |
msgid "Users Extended"
|
529 |
msgstr "Liste aller \"Benutzer\""
|
@@ -542,66 +546,76 @@ msgstr "Die \"GD image library\" ist nicht installiert"
|
|
542 |
msgid "File '%s' is not an image."
|
543 |
msgstr "Datei '%s' muss Bild-Datei sein"
|
544 |
|
545 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
546 |
#, fuzzy
|
547 |
msgid "Delete the file"
|
548 |
msgstr "Bild löschen"
|
549 |
|
550 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
551 |
#, fuzzy
|
552 |
msgid "Update the file"
|
553 |
msgstr "Bild aktualisieren"
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
556 |
msgid "Update the picture"
|
557 |
msgstr "Bild aktualisieren"
|
558 |
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
560 |
msgid "Picture URL:"
|
561 |
msgstr "URL für Bild:"
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
564 |
#, php-format
|
565 |
msgid "New user registration on your site %s:"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
571 |
#, fuzzy, php-format
|
572 |
msgid "Username: %s"
|
573 |
msgstr "\"Benutzer\"name"
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
576 |
#, fuzzy, php-format
|
577 |
msgid "E-mail: %s"
|
578 |
msgstr "E-Mail: %s"
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
581 |
#, php-format
|
582 |
msgid "[%s] New User Registration"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
586 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
587 |
#, fuzzy, php-format
|
588 |
msgid "Password: %s"
|
589 |
msgstr "Passwort"
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
592 |
#, php-format
|
593 |
msgid "[%s] Your username and password"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
600 |
#, php-format
|
601 |
msgid "%s: %s"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
605 |
#, php-format
|
606 |
msgid ""
|
607 |
"To activate your user, please click the following link:\n"
|
@@ -612,45 +626,45 @@ msgid ""
|
|
612 |
"\n"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
616 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
|
|
617 |
msgid "Your account is now active!"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
621 |
#, php-format
|
622 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
626 |
msgid "An error occurred during the activation"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
630 |
msgid "Invalid activation key."
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
634 |
msgid "The site is already active."
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
638 |
msgid "Could not create user"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
642 |
msgid "That username is already activated."
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
646 |
msgid "That username is currently reserved but may be available in a couple of days."
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
650 |
msgid "username and email used"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
654 |
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."
|
655 |
msgstr ""
|
656 |
|
@@ -675,17 +689,17 @@ msgid "Change order"
|
|
675 |
msgstr "Reihenfolge ändern "
|
676 |
|
677 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
678 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
679 |
msgid "Min length"
|
680 |
msgstr "Minimale Länge"
|
681 |
|
682 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
683 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
684 |
msgid "Exact length"
|
685 |
msgstr "Exakte Länge"
|
686 |
|
687 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
688 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
689 |
msgid "Max length"
|
690 |
msgstr "Maximale Länge"
|
691 |
|
@@ -693,397 +707,417 @@ msgstr "Maximale Länge"
|
|
693 |
msgid "Exact or Max length"
|
694 |
msgstr "Exakte oder maximale Länge"
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
697 |
msgid "changed to"
|
698 |
msgstr "geändert in"
|
699 |
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
701 |
msgid "You cannot give an order that misses some numbers"
|
702 |
msgstr "Die Ordnungnummern müssen fortlaufen & durchgängig sein."
|
703 |
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
706 |
msgid "Nothing selected"
|
707 |
msgstr "Nichts ausgewählt"
|
708 |
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
710 |
msgid "Field(s)"
|
711 |
msgstr "Feld(er)"
|
712 |
|
713 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
714 |
msgid "deleted correctly"
|
715 |
msgstr "erfolgreich gelöscht"
|
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 size"
|
720 |
msgstr "Minimale Größe"
|
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 size"
|
725 |
msgstr "Exakte Größe"
|
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 size"
|
730 |
msgstr "Maximale Größe"
|
731 |
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
733 |
msgid "Exact or Max size"
|
734 |
msgstr "Exakte oder maximale Größe"
|
735 |
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
737 |
msgid "Name not specified"
|
738 |
msgstr "Name nicht ausgefüllt"
|
739 |
|
740 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
741 |
msgid "Name cannot contains spaces"
|
742 |
msgstr "Der Name darf keine Leerstellen enthalten."
|
743 |
|
744 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
745 |
msgid "Label not specified"
|
746 |
msgstr "\"label\"/Feld-Titel nicht ausgefüllt"
|
747 |
|
748 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
749 |
msgid "not selected (with this type is necessary)"
|
750 |
msgstr "nicht ausgewählt (für diesen Typ notwendig)"
|
751 |
|
752 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
753 |
msgid "If you select"
|
754 |
msgstr "Wenn Sie folgendes auswählen"
|
755 |
|
756 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
757 |
msgid "you cannot select Min or Max"
|
758 |
msgstr "Sie dürfen \"Min\" oder \"Max\" nicht festlegen"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
763 |
msgid "should be in the range of"
|
764 |
msgstr "sollte im Bereich sein (von/bis)"
|
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 "Equal TO not specified"
|
769 |
msgstr "ENTSPRICHT (equal TO) nicht spezifiziert"
|
770 |
|
771 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
772 |
msgid "With checkbox type Equal TO can only be"
|
773 |
msgstr "Beim Typ <strong>checkbox</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
774 |
|
775 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
776 |
msgid "With radio type Equal TO can only be"
|
777 |
msgstr "Beim Typ <strong>radio</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
778 |
|
779 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
780 |
msgid "With checkbox type Value can only be"
|
781 |
msgstr "Beim Typ <strong>checkbox</strong> kann der Wert/$value nur folgendes sein"
|
782 |
|
783 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
784 |
msgid "With radio type Value can only be"
|
785 |
msgstr "Beim Typ <strong>radio</strong> kann der Wert/$value nur folgendes sein"
|
786 |
|
787 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
788 |
msgid "Field inserted correctly"
|
789 |
msgstr "Feld richtig eingefügt."
|
790 |
|
791 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
792 |
msgid "Field #"
|
793 |
msgstr "Feld #"
|
794 |
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
796 |
msgid "updated correctly"
|
797 |
msgstr "Update erfolgreich"
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
800 |
msgid "Name inserted is just in the database, change to another one"
|
801 |
msgstr "Dieser Name ist in der Datenbank bereits vorhanden, bitte wähle einen anderen"
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
804 |
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."
|
805 |
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."
|
806 |
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
808 |
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'"
|
809 |
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."
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
813 |
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"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
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"
|
817 |
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."
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
820 |
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)"
|
821 |
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)."
|
822 |
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
825 |
msgstr "Bei <strong>registration-date</strong> gilt: <em>ENTSRPICHT(equal TO)</em> meint das Format für Datum und Zeit."
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
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"
|
829 |
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."
|
830 |
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
832 |
#, fuzzy
|
833 |
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"
|
834 |
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."
|
835 |
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
837 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
838 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
842 |
msgid "Name"
|
843 |
msgstr "Name"
|
844 |
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
850 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
851 |
msgid "Value"
|
852 |
msgstr "Wert/$value"
|
853 |
|
854 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
msgid "Type"
|
859 |
msgstr "Typ"
|
860 |
|
861 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
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 |
msgid "Label"
|
866 |
msgstr "Bezeichnung/\"label\""
|
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 |
msgid "Description"
|
873 |
msgstr "Beschreibung"
|
874 |
|
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 |
msgid "Rules"
|
878 |
msgstr "Regeln"
|
879 |
|
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 "Actions"
|
883 |
msgstr "Aktion"
|
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 |
#, fuzzy
|
888 |
msgid "Fieldset"
|
889 |
msgstr "Felder"
|
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 |
msgid "Can be empty"
|
894 |
msgstr "Kann leer sein"
|
895 |
|
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 "Check for E-mail syntax"
|
899 |
msgstr "Kontrollieren Sie bitte die E-Mail-Syntax"
|
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 |
msgid "Can be modified"
|
904 |
msgstr "Änderung des Feldes möglich"
|
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 "Can be modified only if empty"
|
909 |
msgstr "Änderung des Feldes möglich wenn leer"
|
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 "Can be modified only by admin"
|
914 |
msgstr "Änderung des Feldes nur durch Admin möglich"
|
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 "Can be modified only by admin or if empty"
|
919 |
msgstr "Änderung des Feldes nur durch Admin, oder wenn leer"
|
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 "Cannot be modified"
|
924 |
msgstr "Änderung des Feldes nicht möglich"
|
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 "Should be equal TO"
|
929 |
msgstr "ENTSPRICHT (equal TO) folgendem"
|
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 "Case sensitive"
|
934 |
msgstr "Groß-/Kleinschreibung beachten"
|
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 "Regular Expression"
|
939 |
msgstr ""
|
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 "Show the field in the registration"
|
944 |
msgstr "Zeige das Feld bei der Registrierung"
|
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 "Show the field in User's profile"
|
949 |
msgstr "Zeige das Feld im \"Benutzer\"profil"
|
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 "Show the field in A&U Extended menu"
|
954 |
msgstr "Zeige das Feld in der \"Liste aller Benutzer\""
|
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 |
#, fuzzy
|
959 |
msgid "Show the field in the search engine"
|
960 |
msgstr "Zeige das Feld bei der Registrierung"
|
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 |
#, fuzzy
|
965 |
msgid "Show the field in the blog"
|
966 |
msgstr "Zeige das Feld bei der Registrierung"
|
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 |
#, fuzzy
|
971 |
msgid "Show the field if the role is at least:"
|
972 |
msgstr "Zeige das Feld bei der Registrierung"
|
973 |
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
976 |
msgid "Anonymous"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
980 |
msgid "Clear"
|
981 |
msgstr "Löschen"
|
982 |
|
983 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
984 |
msgid "Invert selection"
|
985 |
msgstr "Auswahl umkehren"
|
986 |
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
988 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
989 |
msgstr "Bist Du sicher, dass du diese(s) Feld(er) und alle Daten, die von \"Benutzer\"n angelegt wurden, löschen möchtest?"
|
990 |
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
992 |
msgid "WordPress Fields"
|
993 |
msgstr "WordPress Felder"
|
994 |
|
995 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
996 |
msgid "None!"
|
997 |
msgstr "Keine!"
|
998 |
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1000 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1001 |
msgid "Order"
|
1002 |
msgstr "Reihenfolge"
|
1003 |
|
1004 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1005 |
msgid "Reset"
|
1006 |
msgstr "Reset"
|
1007 |
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
1009 |
#, fuzzy
|
1010 |
msgid "select"
|
1011 |
msgstr "Löschen"
|
1012 |
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1014 |
#, php-format
|
1015 |
msgid "Users Matching \"%s\""
|
1016 |
msgstr "Benutzer Matching \"%s\""
|
1017 |
|
1018 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1019 |
#, fuzzy
|
1020 |
msgid "Users Extended List"
|
1021 |
msgstr "Liste aller \"Benutzer\""
|
1022 |
|
1023 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1024 |
msgid "Authors & Users Extended List"
|
1025 |
msgstr "Liste aller \"Benutzer\""
|
1026 |
|
1027 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1028 |
#, php-format
|
1029 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1033 |
msgid "Search Users"
|
1034 |
msgstr "Suche \"Benutzer\""
|
1035 |
|
1036 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1037 |
msgid "« Back to All Users"
|
1038 |
msgstr "« Zurück zu \"Alle Benutzer\""
|
1039 |
|
1040 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1041 |
msgid "Users per page"
|
1042 |
msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
|
1043 |
|
1044 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1045 |
msgid "Apply"
|
1046 |
msgstr "anwenden"
|
1047 |
|
1048 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1049 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1050 |
msgid "Username"
|
1051 |
msgstr "\"Benutzer\"name"
|
1052 |
|
1053 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1054 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1055 |
msgid "E-mail"
|
1056 |
msgstr "E-Mail"
|
1057 |
|
1058 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1059 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1060 |
msgid "Role"
|
1061 |
msgstr "\"Benutzer\"-Rollen"
|
1062 |
|
1063 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1064 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1065 |
msgid "Posts"
|
1066 |
msgstr "Artikel"
|
1067 |
|
1068 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1069 |
msgid "View posts by this author"
|
1070 |
msgstr "Zeige Artikel dieses Autors"
|
1071 |
|
1072 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1073 |
#, php-format
|
1074 |
msgid "e-mail: %s"
|
1075 |
msgstr "E-Mail: %s"
|
1076 |
|
1077 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1078 |
#, fuzzy
|
1079 |
msgid "Update selected users"
|
1080 |
msgstr "Ausgewählte Felder löschen"
|
1081 |
|
1082 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1083 |
#, fuzzy
|
1084 |
msgid "Update"
|
1085 |
msgstr "Feld aktualisieren"
|
1086 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1087 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1088 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1089 |
msgstr "<strong>Anm.:</strong> Diese Webseite lässt Sie Ihr Passwort frei wählen. Nach der Registrierung erhalten Sie eine E-Mail mit einem anderen Passwort. Bitte löschen Sie diese ungesehen."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-30 14:07+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-01-30 14:07+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:407
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:446
|
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:476
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1218
|
34 |
msgid "ERROR"
|
35 |
msgstr "FEHLER"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
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:425
|
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:445
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
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:451
|
55 |
msgid "YES"
|
56 |
msgstr "JA"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
59 |
msgid "NO"
|
60 |
msgstr "NEIN"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:456
|
63 |
msgid "should be"
|
64 |
msgstr "sollte sein"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
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:476
|
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:482
|
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:494
|
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:500
|
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:512
|
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:518
|
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:531
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
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:836
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:371
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
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:916
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
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:954
|
120 |
#, fuzzy
|
121 |
msgid "Change image"
|
122 |
msgstr "Reihenfolge ändern "
|
123 |
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
|
125 |
msgid "Insert the code:"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
131 |
msgstr "\"Benutzerdefinierte Felder\" pro Abschnitt"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:432
|
134 |
+
msgid "All"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:43
|
138 |
msgid "WordPress Fields table emptied"
|
139 |
msgstr "WP-Datenbank-Tabelle Zusatzfelder geleert"
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
142 |
msgid "WordPress Fields table deleted"
|
143 |
msgstr "WP-Datenbank-Tabelle Zusatzfelder gelöscht"
|
144 |
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
146 |
msgid "Extra Fields table emptied"
|
147 |
msgstr "Tabelle \"Benutzerdefinierte Felder\" geleert"
|
148 |
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
150 |
msgid "Extra Fields table deleted"
|
151 |
msgstr "Tabelle \"Benutzerdefinierte Felder\" gelöscht"
|
152 |
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
154 |
msgid "Users Data table emptied"
|
155 |
msgstr "Tabelle \"Benutzerdaten\" geleert"
|
156 |
|
157 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:76
|
158 |
msgid "Users Data table deleted"
|
159 |
msgstr "Tabelle \"Benutzerdaten\" gelöscht"
|
160 |
|
161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:87
|
162 |
msgid "Options set to default values"
|
163 |
msgstr "Einstellungen auf Grundeinstellungen zurück gesetzt"
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:93
|
166 |
msgid "Options deleted"
|
167 |
msgstr "Einstellungen gelöscht"
|
168 |
|
169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
|
170 |
msgid "Options changed"
|
171 |
msgstr "Einstellungen aktualisiert"
|
172 |
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
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:483
|
178 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:749
|
180 |
msgid "Options"
|
181 |
msgstr "Einstellungen"
|
182 |
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:440
|
185 |
msgid "Add a new Field"
|
186 |
msgstr "Ein neues Feld hinzufügen"
|
187 |
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:795
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
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:283
|
194 |
msgid "Extra Fields"
|
195 |
msgstr "Benutzerdefinierte Felder"
|
196 |
|
197 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
198 |
msgid "Support the Cimy Project"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
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:510
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1236
|
207 |
msgid "SUCCESSFUL"
|
208 |
msgstr "ERFOLGREICH"
|
209 |
|
210 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
|
211 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:830
|
212 |
msgid "Save Changes"
|
213 |
msgstr "Einstellungen aktualisieren"
|
214 |
|
215 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
216 |
msgid "General"
|
217 |
msgstr "Allgemein"
|
218 |
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
220 |
msgid "installed is"
|
221 |
msgstr "installiert ist"
|
222 |
|
223 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
224 |
msgid "OPTIONS DELETED!"
|
225 |
msgstr "EINSTELLUNGEN GELÖSCHT!"
|
226 |
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
228 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
229 |
msgid "Fix the problem"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
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 "VERSIONEN NICHT KOMPATIBEL! Du hast das Plugin nach dem Update nicht deaktiviert und anschließend reaktiviert. Das könnte Probleme geben..."
|
235 |
|
236 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
237 |
msgid "Picture/Avatar upload"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
241 |
msgid "is created and writable"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
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:564
|
249 |
#, fuzzy
|
250 |
msgid "Show all fields in the welcome email"
|
251 |
msgstr "Zeige das Feld bei der Registrierung"
|
252 |
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
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:576
|
258 |
msgid "Enable email confirmation"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
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:582
|
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:589
|
270 |
msgid "Redirect to the source"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
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:601
|
278 |
msgid "No captcha"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
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:613
|
286 |
msgid "Public KEY"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
290 |
msgid "Private KEY"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
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:628
|
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:632
|
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:639
|
307 |
msgid "Change login/registration page logo"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
311 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:435
|
312 |
msgid "Delete the picture"
|
313 |
msgstr "Bild löschen"
|
314 |
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
|
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:653
|
320 |
msgid "Database"
|
321 |
msgstr "Datenbank"
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
326 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
|
327 |
msgid "select action"
|
328 |
msgstr "Wähle Aktion"
|
329 |
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
331 |
msgid "Default values"
|
332 |
msgstr "Werte: Grundeinstellung"
|
333 |
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:718
|
338 |
msgid "Delete"
|
339 |
msgstr "Löschen"
|
340 |
|
341 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:687
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
|
345 |
msgid "NOT PRESENT"
|
346 |
msgstr "NICHT VORHANDEN"
|
347 |
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
349 |
msgid "WordPress Fields table"
|
350 |
msgstr "WP-Datenbank-Tabelle"
|
351 |
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:700
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
355 |
msgid "Empty"
|
356 |
msgstr "Leer"
|
357 |
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
359 |
msgid "Extra Fields table"
|
360 |
msgstr "Tabelle \"Benutzerdefinierte Felder\""
|
361 |
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
|
363 |
msgid "Users Data table"
|
364 |
msgstr "Tabelle \"Benutzerdaten\""
|
365 |
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
367 |
msgid "all data inserted by users in all and only extra fields"
|
368 |
msgstr "alle von \"Benutzern\" in die Cimy-Zusatzfelder eingetragenen Daten"
|
369 |
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
371 |
msgid "Force tables creation"
|
372 |
msgstr "Erzwingt die Erstellung der Datenbanktabellen"
|
373 |
|
374 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
375 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
376 |
msgstr "Achtung: Mit dieser Einstellung zwingen Sie das PlugIn die Datenbanktabellen zu erstellen. Dieser Schritt wird auch bei (De-)Aktivierung des PlugIns durchgeführt."
|
377 |
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
379 |
msgid "User Profile"
|
380 |
msgstr "\"Benutzer\" Profil"
|
381 |
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
|
383 |
msgid "Extra Fields section title"
|
384 |
msgstr "Titel für \"Benutzerdefinierte Felder\""
|
385 |
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
387 |
msgid "Fieldset's titles, separates with comma"
|
388 |
msgstr "Titel des Abschnitts der \"Benutzerdefinierten Felder\", abgetrennt durch Kommata (',')"
|
389 |
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
391 |
msgid "example: title1,title2,title3"
|
392 |
msgstr "Beispiel: Titel1, Titel2, Titel3"
|
393 |
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
|
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:750
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
401 |
msgid "Authors & Users Extended"
|
402 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
403 |
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
405 |
msgid "Hide username field"
|
406 |
msgstr "Feld: \"'Benutzer'-Name\" nicht anzeigen"
|
407 |
|
408 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:760
|
409 |
msgid "Hide name field"
|
410 |
msgstr "Feld: \"Name\" nicht anzeigen"
|
411 |
|
412 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
|
413 |
msgid "Hide email field"
|
414 |
msgstr "Feld: \"E-mail Adresse\" nicht anzeigen"
|
415 |
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:769
|
417 |
msgid "Hide role field"
|
418 |
msgstr "Feld: \"Rolle\" des \"Benutzers\" nicht anzeigen"
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:773
|
421 |
msgid "Hide website field"
|
422 |
msgstr "Feld: \"Webseite\" nicht anzeigen"
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:777
|
425 |
msgid "Hide n. posts field"
|
426 |
msgstr "Feld: Anzahl der von \"Benutzer(n)\" erstellten Artikel nicht anzeigen"
|
427 |
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
429 |
msgid "WordPress hidden fields"
|
430 |
msgstr "Feld: \"Wordpress hidden fields\" (verborgene Felder)"
|
431 |
|
432 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:785
|
433 |
msgid "Show password"
|
434 |
msgstr "\"Passwort\" anzeigen"
|
435 |
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:789
|
437 |
#, fuzzy
|
438 |
msgid "Show confirmation password"
|
439 |
msgstr "\"Passwort\" anzeigen"
|
440 |
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
|
442 |
#, fuzzy
|
443 |
msgid "Show password strength meter"
|
444 |
msgstr "\"Passwort\" anzeigen"
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:797
|
447 |
msgid "Show first name"
|
448 |
msgstr "Zeige \"Vornamen\""
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:801
|
451 |
msgid "Show last name"
|
452 |
msgstr "Zeige \"Nachnamen\""
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:805
|
455 |
msgid "Show nickname"
|
456 |
msgstr "Zeige \"Nicknamen\"/Spitznamen"
|
457 |
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:809
|
459 |
msgid "Show website"
|
460 |
msgstr "Zeige \"Webseite\""
|
461 |
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:813
|
463 |
msgid "Show AIM"
|
464 |
msgstr "Zeige \"AIM\""
|
465 |
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:817
|
467 |
msgid "Show Yahoo IM"
|
468 |
msgstr "Zeige \"Yahoo IM\""
|
469 |
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:821
|
471 |
msgid "Show Jabber / Google Talk"
|
472 |
msgstr "Zeige \"Jabber / Google Talk\""
|
473 |
|
474 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:825
|
475 |
msgid "Show Biographical Info"
|
476 |
msgstr "\"Weitere Informationen\" anzeigen"
|
477 |
|
478 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
|
479 |
msgid "Password"
|
480 |
msgstr "Passwort"
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
483 |
msgid "Password confirmation"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
487 |
msgid "First name"
|
488 |
msgstr "Vorname"
|
489 |
|
490 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
491 |
msgid "Last name"
|
492 |
msgstr "Nachname"
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
495 |
msgid "Nickname"
|
496 |
msgstr "Spitzname"
|
497 |
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
|
500 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1541
|
501 |
msgid "Website"
|
502 |
msgstr "Webseite"
|
503 |
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
|
505 |
msgid "AIM"
|
506 |
msgstr "AIM"
|
507 |
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
|
509 |
msgid "Yahoo IM"
|
510 |
msgstr "Yahoo IM"
|
511 |
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
|
513 |
msgid "Jabber / Google Talk"
|
514 |
msgstr "Jabber / Google Talk"
|
515 |
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:400
|
517 |
msgid "Biographical Info"
|
518 |
msgstr "Weitere Informationen"
|
519 |
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:750
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
522 |
msgid "Fields"
|
523 |
msgstr "Felder"
|
524 |
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
527 |
msgid "A&U Extended"
|
528 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
529 |
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
531 |
#, fuzzy
|
532 |
msgid "Users Extended"
|
533 |
msgstr "Liste aller \"Benutzer\""
|
546 |
msgid "File '%s' is not an image."
|
547 |
msgstr "Datei '%s' muss Bild-Datei sein"
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:431
|
550 |
#, fuzzy
|
551 |
msgid "Delete the file"
|
552 |
msgstr "Bild löschen"
|
553 |
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:432
|
555 |
#, fuzzy
|
556 |
msgid "Update the file"
|
557 |
msgstr "Bild aktualisieren"
|
558 |
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:436
|
560 |
msgid "Update the picture"
|
561 |
msgstr "Bild aktualisieren"
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:456
|
564 |
msgid "Picture URL:"
|
565 |
msgstr "URL für Bild:"
|
566 |
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:684
|
568 |
+
#, php-format
|
569 |
+
msgid "%s previous value: %s new value: %s"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:699
|
573 |
+
#, php-format
|
574 |
+
msgid "%s (%s) has changed one or more fields"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
578 |
#, php-format
|
579 |
msgid "New user registration on your site %s:"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
585 |
#, fuzzy, php-format
|
586 |
msgid "Username: %s"
|
587 |
msgstr "\"Benutzer\"name"
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
|
590 |
#, fuzzy, php-format
|
591 |
msgid "E-mail: %s"
|
592 |
msgstr "E-Mail: %s"
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
|
595 |
#, php-format
|
596 |
msgid "[%s] New User Registration"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
601 |
#, fuzzy, php-format
|
602 |
msgid "Password: %s"
|
603 |
msgstr "Passwort"
|
604 |
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
606 |
#, php-format
|
607 |
msgid "[%s] Your username and password"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:100
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
612 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
613 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:124
|
614 |
#, php-format
|
615 |
msgid "%s: %s"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:198
|
619 |
#, php-format
|
620 |
msgid ""
|
621 |
"To activate your user, please click the following link:\n"
|
626 |
"\n"
|
627 |
msgstr ""
|
628 |
|
|
|
629 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
630 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
631 |
msgid "Your account is now active!"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
635 |
#, php-format
|
636 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:217
|
640 |
msgid "An error occurred during the activation"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
644 |
msgid "Invalid activation key."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:239
|
648 |
msgid "The site is already active."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:258
|
652 |
msgid "Could not create user"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:270
|
656 |
msgid "That username is already activated."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:290
|
660 |
msgid "That username is currently reserved but may be available in a couple of days."
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:293
|
664 |
msgid "username and email used"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:303
|
668 |
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."
|
669 |
msgstr ""
|
670 |
|
689 |
msgstr "Reihenfolge ändern "
|
690 |
|
691 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
692 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
693 |
msgid "Min length"
|
694 |
msgstr "Minimale Länge"
|
695 |
|
696 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1045
|
698 |
msgid "Exact length"
|
699 |
msgstr "Exakte Länge"
|
700 |
|
701 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
|
703 |
msgid "Max length"
|
704 |
msgstr "Maximale Länge"
|
705 |
|
707 |
msgid "Exact or Max length"
|
708 |
msgstr "Exakte oder maximale Länge"
|
709 |
|
710 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
711 |
msgid "changed to"
|
712 |
msgstr "geändert in"
|
713 |
|
714 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
715 |
msgid "You cannot give an order that misses some numbers"
|
716 |
msgstr "Die Ordnungnummern müssen fortlaufen & durchgängig sein."
|
717 |
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
719 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
720 |
msgid "Nothing selected"
|
721 |
msgstr "Nichts ausgewählt"
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
724 |
msgid "Field(s)"
|
725 |
msgstr "Feld(er)"
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
728 |
msgid "deleted correctly"
|
729 |
msgstr "erfolgreich gelöscht"
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:236
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1036
|
733 |
msgid "Min size"
|
734 |
msgstr "Minimale Größe"
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:237
|
737 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1037
|
738 |
msgid "Exact size"
|
739 |
msgstr "Exakte Größe"
|
740 |
|
741 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
|
742 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
|
743 |
msgid "Max size"
|
744 |
msgstr "Maximale Größe"
|
745 |
|
746 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
747 |
msgid "Exact or Max size"
|
748 |
msgstr "Exakte oder maximale Größe"
|
749 |
|
750 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
751 |
msgid "Name not specified"
|
752 |
msgstr "Name nicht ausgefüllt"
|
753 |
|
754 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
755 |
msgid "Name cannot contains spaces"
|
756 |
msgstr "Der Name darf keine Leerstellen enthalten."
|
757 |
|
758 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:300
|
759 |
msgid "Label not specified"
|
760 |
msgstr "\"label\"/Feld-Titel nicht ausgefüllt"
|
761 |
|
762 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:305
|
763 |
msgid "not selected (with this type is necessary)"
|
764 |
msgstr "nicht ausgewählt (für diesen Typ notwendig)"
|
765 |
|
766 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
767 |
msgid "If you select"
|
768 |
msgstr "Wenn Sie folgendes auswählen"
|
769 |
|
770 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
771 |
msgid "you cannot select Min or Max"
|
772 |
msgstr "Sie dürfen \"Min\" oder \"Max\" nicht festlegen"
|
773 |
|
774 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:321
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
777 |
msgid "should be in the range of"
|
778 |
msgstr "sollte im Bereich sein (von/bis)"
|
779 |
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:336
|
781 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
782 |
msgid "Equal TO not specified"
|
783 |
msgstr "ENTSPRICHT (equal TO) nicht spezifiziert"
|
784 |
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:341
|
786 |
msgid "With checkbox type Equal TO can only be"
|
787 |
msgstr "Beim Typ <strong>checkbox</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
788 |
|
789 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:344
|
790 |
msgid "With radio type Equal TO can only be"
|
791 |
msgstr "Beim Typ <strong>radio</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
792 |
|
793 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:360
|
794 |
msgid "With checkbox type Value can only be"
|
795 |
msgstr "Beim Typ <strong>checkbox</strong> kann der Wert/$value nur folgendes sein"
|
796 |
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:363
|
798 |
msgid "With radio type Value can only be"
|
799 |
msgstr "Beim Typ <strong>radio</strong> kann der Wert/$value nur folgendes sein"
|
800 |
|
801 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:420
|
802 |
msgid "Field inserted correctly"
|
803 |
msgstr "Feld richtig eingefügt."
|
804 |
|
805 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
806 |
msgid "Field #"
|
807 |
msgstr "Feld #"
|
808 |
|
809 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
810 |
msgid "updated correctly"
|
811 |
msgstr "Update erfolgreich"
|
812 |
|
813 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:425
|
814 |
msgid "Name inserted is just in the database, change to another one"
|
815 |
msgstr "Dieser Name ist in der Datenbank bereits vorhanden, bitte wähle einen anderen"
|
816 |
|
817 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
|
818 |
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."
|
819 |
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."
|
820 |
|
821 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
822 |
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'"
|
823 |
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."
|
824 |
|
825 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
826 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
827 |
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"
|
828 |
|
829 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
830 |
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"
|
831 |
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."
|
832 |
|
833 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
834 |
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)"
|
835 |
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)."
|
836 |
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
|
838 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
839 |
msgstr "Bei <strong>registration-date</strong> gilt: <em>ENTSRPICHT(equal TO)</em> meint das Format für Datum und Zeit."
|
840 |
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
842 |
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"
|
843 |
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."
|
844 |
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
846 |
#, fuzzy
|
847 |
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"
|
848 |
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."
|
849 |
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1069
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1525
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1526
|
856 |
msgid "Name"
|
857 |
msgstr "Name"
|
858 |
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1072
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
865 |
msgid "Value"
|
866 |
msgstr "Wert/$value"
|
867 |
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1075
|
872 |
msgid "Type"
|
873 |
msgstr "Typ"
|
874 |
|
875 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
879 |
msgid "Label"
|
880 |
msgstr "Bezeichnung/\"label\""
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:661
|
884 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1100
|
886 |
msgid "Description"
|
887 |
msgstr "Beschreibung"
|
888 |
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
891 |
msgid "Rules"
|
892 |
msgstr "Regeln"
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
896 |
msgid "Actions"
|
897 |
msgstr "Aktion"
|
898 |
|
899 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
900 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
|
902 |
#, fuzzy
|
903 |
msgid "Fieldset"
|
904 |
msgstr "Felder"
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:673
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
908 |
msgid "Can be empty"
|
909 |
msgstr "Kann leer sein"
|
910 |
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
|
912 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
913 |
msgid "Check for E-mail syntax"
|
914 |
msgstr "Kontrollieren Sie bitte die E-Mail-Syntax"
|
915 |
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
918 |
msgid "Can be modified"
|
919 |
msgstr "Änderung des Feldes möglich"
|
920 |
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
923 |
msgid "Can be modified only if empty"
|
924 |
msgstr "Änderung des Feldes möglich wenn leer"
|
925 |
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
928 |
msgid "Can be modified only by admin"
|
929 |
msgstr "Änderung des Feldes nur durch Admin möglich"
|
930 |
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:680
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1121
|
933 |
msgid "Can be modified only by admin or if empty"
|
934 |
msgstr "Änderung des Feldes nur durch Admin, oder wenn leer"
|
935 |
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
938 |
msgid "Cannot be modified"
|
939 |
msgstr "Änderung des Feldes nicht möglich"
|
940 |
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
943 |
msgid "Should be equal TO"
|
944 |
msgstr "ENTSPRICHT (equal TO) folgendem"
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1129
|
948 |
msgid "Case sensitive"
|
949 |
msgstr "Groß-/Kleinschreibung beachten"
|
950 |
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
952 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
953 |
msgid "Regular Expression"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:697
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
958 |
msgid "Show the field in the registration"
|
959 |
msgstr "Zeige das Feld bei der Registrierung"
|
960 |
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
963 |
msgid "Show the field in User's profile"
|
964 |
msgstr "Zeige das Feld im \"Benutzer\"profil"
|
965 |
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:703
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
968 |
msgid "Show the field in A&U Extended menu"
|
969 |
msgstr "Zeige das Feld in der \"Liste aller Benutzer\""
|
970 |
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:706
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1150
|
973 |
#, fuzzy
|
974 |
msgid "Show the field in the search engine"
|
975 |
msgstr "Zeige das Feld bei der Registrierung"
|
976 |
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
979 |
#, fuzzy
|
980 |
msgid "Show the field in the blog"
|
981 |
msgstr "Zeige das Feld bei der Registrierung"
|
982 |
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:712
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1156
|
985 |
#, fuzzy
|
986 |
msgid "Show the field if the role is at least:"
|
987 |
msgstr "Zeige das Feld bei der Registrierung"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
990 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
991 |
msgid "Anonymous"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:724
|
995 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1171
|
996 |
+
msgid "Send an email to the admin if the user changes its value"
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
1000 |
msgid "Clear"
|
1001 |
msgstr "Löschen"
|
1002 |
|
1003 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:786
|
1004 |
msgid "Invert selection"
|
1005 |
msgstr "Auswahl umkehren"
|
1006 |
|
1007 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
1008 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1009 |
msgstr "Bist Du sicher, dass du diese(s) Feld(er) und alle Daten, die von \"Benutzer\"n angelegt wurden, löschen möchtest?"
|
1010 |
|
1011 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:793
|
1012 |
msgid "WordPress Fields"
|
1013 |
msgstr "WordPress Felder"
|
1014 |
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:806
|
1016 |
msgid "None!"
|
1017 |
msgstr "Keine!"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:821
|
1020 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
1021 |
msgid "Order"
|
1022 |
msgstr "Reihenfolge"
|
1023 |
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1025 |
msgid "Reset"
|
1026 |
msgstr "Reset"
|
1027 |
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1265
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1030 |
#, fuzzy
|
1031 |
msgid "select"
|
1032 |
msgstr "Löschen"
|
1033 |
|
1034 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1035 |
#, php-format
|
1036 |
msgid "Users Matching \"%s\""
|
1037 |
msgstr "Benutzer Matching \"%s\""
|
1038 |
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1402
|
1040 |
#, fuzzy
|
1041 |
msgid "Users Extended List"
|
1042 |
msgstr "Liste aller \"Benutzer\""
|
1043 |
|
1044 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1404
|
1045 |
msgid "Authors & Users Extended List"
|
1046 |
msgstr "Liste aller \"Benutzer\""
|
1047 |
|
1048 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
1049 |
#, php-format
|
1050 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
|
1054 |
msgid "Search Users"
|
1055 |
msgstr "Suche \"Benutzer\""
|
1056 |
|
1057 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
1058 |
msgid "« Back to All Users"
|
1059 |
msgstr "« Zurück zu \"Alle Benutzer\""
|
1060 |
|
1061 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
1062 |
msgid "Users per page"
|
1063 |
msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
|
1064 |
|
1065 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
|
1066 |
msgid "Apply"
|
1067 |
msgstr "anwenden"
|
1068 |
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1071 |
msgid "Username"
|
1072 |
msgstr "\"Benutzer\"name"
|
1073 |
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1530
|
1075 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1531
|
1076 |
msgid "E-mail"
|
1077 |
msgstr "E-Mail"
|
1078 |
|
1079 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
1080 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1536
|
1081 |
msgid "Role"
|
1082 |
msgstr "\"Benutzer\"-Rollen"
|
1083 |
|
1084 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
1085 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1546
|
1086 |
msgid "Posts"
|
1087 |
msgstr "Artikel"
|
1088 |
|
1089 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1682
|
1090 |
msgid "View posts by this author"
|
1091 |
msgstr "Zeige Artikel dieses Autors"
|
1092 |
|
1093 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1713
|
1094 |
#, php-format
|
1095 |
msgid "e-mail: %s"
|
1096 |
msgstr "E-Mail: %s"
|
1097 |
|
1098 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1834
|
1099 |
+
#, fuzzy
|
1100 |
+
msgid "Change"
|
1101 |
+
msgstr "Reihenfolge ändern "
|
1102 |
+
|
1103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1859
|
1104 |
#, fuzzy
|
1105 |
msgid "Update selected users"
|
1106 |
msgstr "Ausgewählte Felder löschen"
|
1107 |
|
1108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1880
|
1109 |
#, fuzzy
|
1110 |
msgid "Update"
|
1111 |
msgstr "Feld aktualisieren"
|
1112 |
|
1113 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1898
|
1114 |
+
msgid "OK"
|
1115 |
+
msgstr ""
|
1116 |
+
|
1117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1899
|
1118 |
+
msgid "Cancel"
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1122 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1123 |
msgstr "<strong>Anm.:</strong> Diese Webseite lässt Sie Ihr Passwort frei wählen. Nach der Registrierung erhalten Sie eine E-Mail mit einem anderen Passwort. Bitte löschen Sie diese ungesehen."
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,513 +16,517 @@ 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:403
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
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:
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
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/cimy_uef_profile.php:299
|
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:305
|
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 |
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 "Cambiar orden"
|
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:
|
129 |
msgid "no fieldset"
|
130 |
msgstr "no hay grupo de campos"
|
131 |
|
132 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
133 |
msgid "WordPress Fields table emptied"
|
134 |
msgstr "Tabla de Campos WordPress vaciada"
|
135 |
|
136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
137 |
msgid "WordPress Fields table deleted"
|
138 |
msgstr "Tabla de Campos WordPress borrada"
|
139 |
|
140 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
141 |
msgid "Extra Fields table emptied"
|
142 |
msgstr "Tabla de Campos Adicionales vaciada"
|
143 |
|
144 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
145 |
msgid "Extra Fields table deleted"
|
146 |
msgstr "Tabla de Campos Adicionales borrada"
|
147 |
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
149 |
msgid "Users Data table emptied"
|
150 |
msgstr "Tabla de Datos de Usuarios vaciada"
|
151 |
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
153 |
msgid "Users Data table deleted"
|
154 |
msgstr "Tabla de Datos de Usuarios borrada"
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
157 |
msgid "Options set to default values"
|
158 |
msgstr "Opciones asignadas los valores por defecto"
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
161 |
msgid "Options deleted"
|
162 |
msgstr "Opciones borradas"
|
163 |
|
164 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
165 |
msgid "Options changed"
|
166 |
msgstr "Opciones cambiadas"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
169 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
170 |
msgstr "Esta operación creará/actualizará todas las opciones/tablas faltantes ¿Desea continuar?"
|
171 |
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
175 |
msgid "Options"
|
176 |
msgstr "Opciones"
|
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_admin.php:
|
180 |
msgid "Add a new Field"
|
181 |
msgstr "Agregar un nuevo Campo"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
186 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
187 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
189 |
msgid "Extra Fields"
|
190 |
msgstr "Campos Adicionales"
|
191 |
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
193 |
msgid "Support the Cimy Project"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
197 |
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!"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
201 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
202 |
msgid "SUCCESSFUL"
|
203 |
msgstr "EXITOSO"
|
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_options.php:
|
207 |
msgid "Save Changes"
|
208 |
msgstr "Salvar cambios"
|
209 |
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
msgid "General"
|
212 |
msgstr "General"
|
213 |
|
214 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
215 |
msgid "installed is"
|
216 |
msgstr "instalada es"
|
217 |
|
218 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
219 |
msgid "OPTIONS DELETED!"
|
220 |
msgstr "OPCIONES BORRADAS!"
|
221 |
|
222 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
msgid "Fix the problem"
|
225 |
msgstr "Arreglar el problema"
|
226 |
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
228 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
229 |
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..."
|
230 |
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
232 |
msgid "Picture/Avatar upload"
|
233 |
msgstr "Subida de foto/avatar"
|
234 |
|
235 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
236 |
msgid "is created and writable"
|
237 |
msgstr "existe y tiene permisos de escritura"
|
238 |
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
240 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
241 |
msgstr "no está creado o el servidor web no tiene permisos de escritura"
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
244 |
#, fuzzy
|
245 |
msgid "Show all fields in the welcome email"
|
246 |
msgstr "Mostrar el campo en el registro"
|
247 |
|
248 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
249 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
253 |
msgid "Enable email confirmation"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
257 |
msgid "user that registers should confirm its email address via a link click"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
261 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
265 |
msgid "Redirect to the source"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
269 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
273 |
msgid "No captcha"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
277 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
281 |
msgid "Public KEY"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
285 |
msgid "Private KEY"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
289 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
293 |
msgid "This captcha is probably weaker, but is easier for users"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
297 |
#, php-format
|
298 |
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>"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
302 |
msgid "Change login/registration page logo"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
307 |
msgid "Delete the picture"
|
308 |
msgstr "Borrar la imagen"
|
309 |
|
310 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
311 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
315 |
msgid "Database"
|
316 |
msgstr "Base de Datos"
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
319 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
320 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
322 |
msgid "select action"
|
323 |
msgstr "seleccione acción"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
msgid "Default values"
|
327 |
msgstr "Valores por defecto"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
331 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
332 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
333 |
msgid "Delete"
|
334 |
msgstr "Borrar"
|
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 "NOT PRESENT"
|
341 |
msgstr "NO EXISTE"
|
342 |
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
344 |
msgid "WordPress Fields table"
|
345 |
msgstr "tabla de Campos WordPress"
|
346 |
|
347 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
348 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
350 |
msgid "Empty"
|
351 |
msgstr "Vacío"
|
352 |
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
354 |
msgid "Extra Fields table"
|
355 |
msgstr "Tabla de campos adicionales"
|
356 |
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
358 |
msgid "Users Data table"
|
359 |
msgstr "Tabla de datos del usuario"
|
360 |
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
362 |
msgid "all data inserted by users in all and only extra fields"
|
363 |
msgstr "todos las datos insertados por los usuarios en todos (y unicamente) los campos adicionales"
|
364 |
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
366 |
msgid "Force tables creation"
|
367 |
msgstr "Forzar la creación de tablas"
|
368 |
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
370 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
371 |
msgstr "Equivalente a desactivar y activar el plug-in. No se realizará otra operación."
|
372 |
|
373 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
374 |
msgid "User Profile"
|
375 |
msgstr "Perfil de usuario"
|
376 |
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
378 |
msgid "Extra Fields section title"
|
379 |
msgstr "Título de la sección de campos adicionales"
|
380 |
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
382 |
msgid "Fieldset's titles, separates with comma"
|
383 |
msgstr "Títulos de los grupos de campo, separar con coma"
|
384 |
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
386 |
msgid "example: title1,title2,title3"
|
387 |
msgstr "ejemplo: título 1, título 2, título 3"
|
388 |
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
390 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
391 |
msgstr "<strong>nota:</strong> si cambia el orden o quita grupos de campos posiblemente deba reasignar todos los campos adicionales a su grupo correspondiente"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
396 |
msgid "Authors & Users Extended"
|
397 |
msgstr "Autores & Usuarios Extendido"
|
398 |
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
400 |
msgid "Hide username field"
|
401 |
msgstr "Esconder campo de nombre de usuario"
|
402 |
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
404 |
msgid "Hide name field"
|
405 |
msgstr "Esconder campo de nombre"
|
406 |
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
408 |
msgid "Hide email field"
|
409 |
msgstr "Esconder campo de correo electrónico"
|
410 |
|
411 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
412 |
msgid "Hide role field"
|
413 |
msgstr "Esconder campo de rol"
|
414 |
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
416 |
msgid "Hide website field"
|
417 |
msgstr "Esconder el campo de sitio web"
|
418 |
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
420 |
msgid "Hide n. posts field"
|
421 |
msgstr "Esconder el campo de n. entradas"
|
422 |
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
424 |
msgid "WordPress hidden fields"
|
425 |
msgstr "Campos escondidos WordPress"
|
426 |
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
428 |
msgid "Show password"
|
429 |
msgstr "Mostrar contraseña"
|
430 |
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
432 |
#, fuzzy
|
433 |
msgid "Show confirmation password"
|
434 |
msgstr "Mostrar contraseña"
|
435 |
|
436 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
437 |
#, fuzzy
|
438 |
msgid "Show password strength meter"
|
439 |
msgstr "Mostrar contraseña"
|
440 |
|
441 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
442 |
msgid "Show first name"
|
443 |
msgstr "Mostrar primer nombre"
|
444 |
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
446 |
msgid "Show last name"
|
447 |
msgstr "Mostrar apellido"
|
448 |
|
449 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
450 |
msgid "Show nickname"
|
451 |
msgstr "Mostrar sobrenombre"
|
452 |
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
454 |
msgid "Show website"
|
455 |
msgstr "Mostrar sitio web"
|
456 |
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
458 |
msgid "Show AIM"
|
459 |
msgstr "Mostrar AIM"
|
460 |
|
461 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
462 |
msgid "Show Yahoo IM"
|
463 |
msgstr "Mostrar mensajero Yahoo"
|
464 |
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
466 |
msgid "Show Jabber / Google Talk"
|
467 |
msgstr "Mostrar Jabber / Google Talk"
|
468 |
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
470 |
msgid "Show Biographical Info"
|
471 |
msgstr "Mostrar información biográfica"
|
472 |
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
474 |
msgid "Password"
|
475 |
msgstr "Contraseña"
|
476 |
|
477 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
478 |
msgid "Password confirmation"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
482 |
msgid "First name"
|
483 |
msgstr "Primer nombre"
|
484 |
|
485 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
486 |
msgid "Last name"
|
487 |
msgstr "Apellido"
|
488 |
|
489 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
490 |
msgid "Nickname"
|
491 |
msgstr "Sobrenombre"
|
492 |
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
494 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
495 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
496 |
msgid "Website"
|
497 |
msgstr "Sitio Web"
|
498 |
|
499 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
500 |
msgid "AIM"
|
501 |
msgstr "AIM"
|
502 |
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
504 |
msgid "Yahoo IM"
|
505 |
msgstr "Yahoo IM"
|
506 |
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
508 |
msgid "Jabber / Google Talk"
|
509 |
msgstr "Jabber / Google Talk"
|
510 |
|
511 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
512 |
msgid "Biographical Info"
|
513 |
msgstr "Información Biográfica"
|
514 |
|
515 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
516 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
517 |
msgid "Fields"
|
518 |
msgstr "Campos"
|
519 |
|
520 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
522 |
msgid "A&U Extended"
|
523 |
msgstr "A&U Extendido"
|
524 |
|
525 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
526 |
#, fuzzy
|
527 |
msgid "Users Extended"
|
528 |
msgstr "Usuarios extendido"
|
@@ -541,66 +545,76 @@ msgstr "La librería GD image no está instalada."
|
|
541 |
msgid "File '%s' is not an image."
|
542 |
msgstr "El archivo '%s' no es una imagen."
|
543 |
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
545 |
#, fuzzy
|
546 |
msgid "Delete the file"
|
547 |
msgstr "Borrar la imagen"
|
548 |
|
549 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
550 |
#, fuzzy
|
551 |
msgid "Update the file"
|
552 |
msgstr "Actualizar la imagen"
|
553 |
|
554 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
555 |
msgid "Update the picture"
|
556 |
msgstr "Actualizar la imagen"
|
557 |
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
559 |
msgid "Picture URL:"
|
560 |
msgstr "URL de la imagen:"
|
561 |
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
563 |
#, php-format
|
564 |
msgid "New user registration on your site %s:"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
570 |
#, fuzzy, php-format
|
571 |
msgid "Username: %s"
|
572 |
msgstr "Nombre de usuario"
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
575 |
#, fuzzy, php-format
|
576 |
msgid "E-mail: %s"
|
577 |
msgstr "correo electrónico: %s"
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
580 |
#, php-format
|
581 |
msgid "[%s] New User Registration"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
585 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
586 |
#, fuzzy, php-format
|
587 |
msgid "Password: %s"
|
588 |
msgstr "Contraseña"
|
589 |
|
590 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
591 |
#, php-format
|
592 |
msgid "[%s] Your username and password"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
599 |
#, php-format
|
600 |
msgid "%s: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
604 |
#, php-format
|
605 |
msgid ""
|
606 |
"To activate your user, please click the following link:\n"
|
@@ -611,45 +625,45 @@ msgid ""
|
|
611 |
"\n"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
615 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
|
|
616 |
msgid "Your account is now active!"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
620 |
#, php-format
|
621 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
625 |
msgid "An error occurred during the activation"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
629 |
msgid "Invalid activation key."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
633 |
msgid "The site is already active."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
637 |
msgid "Could not create user"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
641 |
msgid "That username is already activated."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
645 |
msgid "That username is currently reserved but may be available in a couple of days."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
649 |
msgid "username and email used"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
653 |
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."
|
654 |
msgstr ""
|
655 |
|
@@ -674,17 +688,17 @@ msgid "Change order"
|
|
674 |
msgstr "Cambiar orden"
|
675 |
|
676 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
677 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
678 |
msgid "Min length"
|
679 |
msgstr "Longitud mínima"
|
680 |
|
681 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
682 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
683 |
msgid "Exact length"
|
684 |
msgstr "Longitud exacta"
|
685 |
|
686 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
687 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
688 |
msgid "Max length"
|
689 |
msgstr "Longitud máxima"
|
690 |
|
@@ -692,395 +706,415 @@ msgstr "Longitud máxima"
|
|
692 |
msgid "Exact or Max length"
|
693 |
msgstr "Longitud máxima o exacta"
|
694 |
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
696 |
msgid "changed to"
|
697 |
msgstr "cambiado a"
|
698 |
|
699 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
700 |
msgid "You cannot give an order that misses some numbers"
|
701 |
msgstr "No se puede poner un orden que se salte algunos números"
|
702 |
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
705 |
msgid "Nothing selected"
|
706 |
msgstr "Nada seleccionado"
|
707 |
|
708 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
709 |
msgid "Field(s)"
|
710 |
msgstr "Campo(s)"
|
711 |
|
712 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
713 |
msgid "deleted correctly"
|
714 |
msgstr "borrado correctamente"
|
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 size"
|
719 |
msgstr "Tamaño mínimo"
|
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 size"
|
724 |
msgstr "Tamaño exacto"
|
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 size"
|
729 |
msgstr "Tamaño máximo"
|
730 |
|
731 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
732 |
msgid "Exact or Max size"
|
733 |
msgstr "Tamaño máximo o exacto"
|
734 |
|
735 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
736 |
msgid "Name not specified"
|
737 |
msgstr "Nombre no especificado"
|
738 |
|
739 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
740 |
msgid "Name cannot contains spaces"
|
741 |
msgstr "El nombre no puede contener espacios"
|
742 |
|
743 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
744 |
msgid "Label not specified"
|
745 |
msgstr "Etiqueta no especificada"
|
746 |
|
747 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
748 |
msgid "not selected (with this type is necessary)"
|
749 |
msgstr "no seleccionado (necesario para este tipo)"
|
750 |
|
751 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
752 |
msgid "If you select"
|
753 |
msgstr "Si usted selecciona"
|
754 |
|
755 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
756 |
msgid "you cannot select Min or Max"
|
757 |
msgstr "usted no puede seleccionar mínimo o máximo"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
762 |
msgid "should be in the range of"
|
763 |
msgstr "debe estar en el rango de"
|
764 |
|
765 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
766 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
767 |
msgid "Equal TO not specified"
|
768 |
msgstr "Igual a no especificado"
|
769 |
|
770 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
771 |
msgid "With checkbox type Equal TO can only be"
|
772 |
msgstr "Con tipo casilla de verificación \"igual a\" solo puede ser"
|
773 |
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
775 |
msgid "With radio type Equal TO can only be"
|
776 |
msgstr "Con tipo radio \"igual a\" solo puede ser"
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
779 |
msgid "With checkbox type Value can only be"
|
780 |
msgstr "Con tipo casilla de verificación \"Valor\" solo puede ser"
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
783 |
msgid "With radio type Value can only be"
|
784 |
msgstr "Con tipo radio \"Valor\" solo puede ser"
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
787 |
msgid "Field inserted correctly"
|
788 |
msgstr "Campo insertado correctamente"
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
791 |
msgid "Field #"
|
792 |
msgstr "Campo #"
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
msgid "updated correctly"
|
796 |
msgstr "Actualizado correctamente"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
799 |
msgid "Name inserted is just in the database, change to another one"
|
800 |
msgstr "El nombre insertado"
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
803 |
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."
|
804 |
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."
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
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'"
|
808 |
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"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
812 |
msgstr "Con <strong>drop-down</strong>: debe agregar todas las opciones en \"etiqueta\" por ejemplo: etiqueta/elemento1,elemento2,elemento3"
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
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"
|
816 |
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"
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
819 |
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)"
|
820 |
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)"
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
824 |
msgstr "Con <strong>registration-date</strong>: <em>igual a</em> significa el formato de fecha y hora"
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
827 |
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"
|
828 |
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"
|
829 |
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
#, fuzzy
|
832 |
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"
|
833 |
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"
|
834 |
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
837 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
838 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
841 |
msgid "Name"
|
842 |
msgstr "Nombre"
|
843 |
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
850 |
msgid "Value"
|
851 |
msgstr "Valor"
|
852 |
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
857 |
msgid "Type"
|
858 |
msgstr "Tipo"
|
859 |
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
861 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
864 |
msgid "Label"
|
865 |
msgstr "Etiqueta"
|
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 |
msgid "Description"
|
872 |
msgstr "Descripción"
|
873 |
|
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 |
msgid "Rules"
|
877 |
msgstr "Reglas"
|
878 |
|
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 "Actions"
|
882 |
msgstr "Acciones"
|
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 |
msgid "Fieldset"
|
887 |
msgstr "Grupo de campos"
|
888 |
|
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 "Can be empty"
|
892 |
msgstr "Puede estar vacío"
|
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 |
msgid "Check for E-mail syntax"
|
897 |
msgstr "Checar formato de e-mail"
|
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 |
msgid "Can be modified"
|
902 |
msgstr "Puede ser modificado"
|
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 "Can be modified only if empty"
|
907 |
msgstr "Puede ser modificado solo si está vacío"
|
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 "Can be modified only by admin"
|
912 |
msgstr "Puede ser modificado solo por el administrador"
|
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 |
msgid "Can be modified only by admin or if empty"
|
917 |
msgstr "Puede ser modificado solo por el administrador o si está vacío"
|
918 |
|
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 |
msgid "Cannot be modified"
|
922 |
msgstr "No puede ser modificado"
|
923 |
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
926 |
msgid "Should be equal TO"
|
927 |
msgstr "Debe ser igual a"
|
928 |
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
931 |
msgid "Case sensitive"
|
932 |
msgstr "Distinción mayúsculas y minúsculas"
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
msgid "Regular Expression"
|
937 |
msgstr "Expresión regular"
|
938 |
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
941 |
msgid "Show the field in the registration"
|
942 |
msgstr "Mostrar el campo en el registro"
|
943 |
|
944 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
946 |
msgid "Show the field in User's profile"
|
947 |
msgstr "Mostrar el campo en el perfil del usuario"
|
948 |
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
950 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
951 |
msgid "Show the field in A&U Extended menu"
|
952 |
msgstr "Mostrar el campo en el menú extendido de A&U"
|
953 |
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
#, fuzzy
|
957 |
msgid "Show the field in the search engine"
|
958 |
msgstr "Mostrar el campo en el registro"
|
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 |
#, fuzzy
|
963 |
msgid "Show the field in the blog"
|
964 |
msgstr "Mostrar el campo en el registro"
|
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 |
#, fuzzy
|
969 |
msgid "Show the field if the role is at least:"
|
970 |
msgstr "Mostrar el campo en el registro"
|
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 "Anonymous"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
978 |
msgid "Clear"
|
979 |
msgstr "Vaciar"
|
980 |
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
982 |
msgid "Invert selection"
|
983 |
msgstr "Invertir Selección"
|
984 |
|
985 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
986 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
987 |
msgstr "&lquot;Está seguro de que quiere borrar los campos y todos los datos insertados por los usuarios?"
|
988 |
|
989 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
990 |
msgid "WordPress Fields"
|
991 |
msgstr "Campos WordPress"
|
992 |
|
993 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
994 |
msgid "None!"
|
995 |
msgstr "Ninguno!"
|
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 "Order"
|
1000 |
msgstr "Orden"
|
1001 |
|
1002 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1003 |
msgid "Reset"
|
1004 |
msgstr "Reestablecer"
|
1005 |
|
1006 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
1007 |
#, fuzzy
|
1008 |
msgid "select"
|
1009 |
msgstr "Borrar"
|
1010 |
|
1011 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1012 |
#, php-format
|
1013 |
msgid "Users Matching \"%s\""
|
1014 |
msgstr "Usuarios que concuerdan con \"%s\""
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1017 |
msgid "Users Extended List"
|
1018 |
msgstr "Lista de usuarios extendida"
|
1019 |
|
1020 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1021 |
msgid "Authors & Users Extended List"
|
1022 |
msgstr "Lista de autores y usuarios extendida"
|
1023 |
|
1024 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1025 |
#, php-format
|
1026 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1030 |
msgid "Search Users"
|
1031 |
msgstr "Buscar Usuarios"
|
1032 |
|
1033 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1034 |
msgid "« Back to All Users"
|
1035 |
msgstr "« Regresar a \"todos los usuarios\""
|
1036 |
|
1037 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1038 |
msgid "Users per page"
|
1039 |
msgstr "Usuarios por página"
|
1040 |
|
1041 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1042 |
msgid "Apply"
|
1043 |
msgstr "Aplicar"
|
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 "Username"
|
1048 |
msgstr "Nombre de usuario"
|
1049 |
|
1050 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1051 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1052 |
msgid "E-mail"
|
1053 |
msgstr "Correo electrónico"
|
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 |
msgid "Role"
|
1058 |
msgstr "Rol"
|
1059 |
|
1060 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1061 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1062 |
msgid "Posts"
|
1063 |
msgstr "Entradas"
|
1064 |
|
1065 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1066 |
msgid "View posts by this author"
|
1067 |
msgstr "Ver entradas de este autor"
|
1068 |
|
1069 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1070 |
#, php-format
|
1071 |
msgid "e-mail: %s"
|
1072 |
msgstr "correo electrónico: %s"
|
1073 |
|
1074 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1075 |
#, fuzzy
|
1076 |
msgid "Update selected users"
|
1077 |
msgstr "Borrar campos seleccionados"
|
1078 |
|
1079 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1080 |
#, fuzzy
|
1081 |
msgid "Update"
|
1082 |
msgstr "Actualizar campo"
|
1083 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1084 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1085 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1086 |
msgstr "<strong>Nota:</strong> este sitio permite la personalización de contraseña. Despues de registrarse recibirá un correo con otra contraseña, haga caso omiso!"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-30 14:07+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-01-30 14:07+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:407
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:446
|
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:476
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1218
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERROR"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
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:425
|
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:445
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
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:451
|
55 |
msgid "YES"
|
56 |
msgstr "SI"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
59 |
msgid "NO"
|
60 |
msgstr "NO"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:456
|
63 |
msgid "should be"
|
64 |
msgstr "no debe ser"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
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:476
|
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:482
|
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:494
|
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:500
|
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:512
|
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:518
|
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:531
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
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:836
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:371
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
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:916
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
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:954
|
120 |
#, fuzzy
|
121 |
msgid "Change image"
|
122 |
msgstr "Cambiar orden"
|
123 |
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
|
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 "no hay grupo de campos"
|
131 |
|
132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:432
|
133 |
+
msgid "All"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:43
|
137 |
msgid "WordPress Fields table emptied"
|
138 |
msgstr "Tabla de Campos WordPress vaciada"
|
139 |
|
140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
141 |
msgid "WordPress Fields table deleted"
|
142 |
msgstr "Tabla de Campos WordPress borrada"
|
143 |
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
145 |
msgid "Extra Fields table emptied"
|
146 |
msgstr "Tabla de Campos Adicionales vaciada"
|
147 |
|
148 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
149 |
msgid "Extra Fields table deleted"
|
150 |
msgstr "Tabla de Campos Adicionales borrada"
|
151 |
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
153 |
msgid "Users Data table emptied"
|
154 |
msgstr "Tabla de Datos de Usuarios vaciada"
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:76
|
157 |
msgid "Users Data table deleted"
|
158 |
msgstr "Tabla de Datos de Usuarios borrada"
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:87
|
161 |
msgid "Options set to default values"
|
162 |
msgstr "Opciones asignadas los valores por defecto"
|
163 |
|
164 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:93
|
165 |
msgid "Options deleted"
|
166 |
msgstr "Opciones borradas"
|
167 |
|
168 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
|
169 |
msgid "Options changed"
|
170 |
msgstr "Opciones cambiadas"
|
171 |
|
172 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
173 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
174 |
msgstr "Esta operación creará/actualizará todas las opciones/tablas faltantes ¿Desea continuar?"
|
175 |
|
176 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
177 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
|
178 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:749
|
179 |
msgid "Options"
|
180 |
msgstr "Opciones"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:440
|
184 |
msgid "Add a new Field"
|
185 |
msgstr "Agregar un nuevo Campo"
|
186 |
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:795
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
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:283
|
193 |
msgid "Extra Fields"
|
194 |
msgstr "Campos Adicionales"
|
195 |
|
196 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
197 |
msgid "Support the Cimy Project"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
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:510
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1236
|
206 |
msgid "SUCCESSFUL"
|
207 |
msgstr "EXITOSO"
|
208 |
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
|
210 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:830
|
211 |
msgid "Save Changes"
|
212 |
msgstr "Salvar cambios"
|
213 |
|
214 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
215 |
msgid "General"
|
216 |
msgstr "General"
|
217 |
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
219 |
msgid "installed is"
|
220 |
msgstr "instalada es"
|
221 |
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
223 |
msgid "OPTIONS DELETED!"
|
224 |
msgstr "OPCIONES BORRADAS!"
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
228 |
msgid "Fix the problem"
|
229 |
msgstr "Arreglar el problema"
|
230 |
|
231 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
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 "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..."
|
234 |
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
236 |
msgid "Picture/Avatar upload"
|
237 |
msgstr "Subida de foto/avatar"
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
240 |
msgid "is created and writable"
|
241 |
msgstr "existe y tiene permisos de escritura"
|
242 |
|
243 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
244 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
245 |
msgstr "no está creado o el servidor web no tiene permisos de escritura"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
248 |
#, fuzzy
|
249 |
msgid "Show all fields in the welcome email"
|
250 |
msgstr "Mostrar el campo en el registro"
|
251 |
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
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:576
|
257 |
msgid "Enable email confirmation"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
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:582
|
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:589
|
269 |
msgid "Redirect to the source"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
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:601
|
277 |
msgid "No captcha"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
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:613
|
285 |
msgid "Public KEY"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
289 |
msgid "Private KEY"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
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:628
|
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:632
|
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:639
|
306 |
msgid "Change login/registration page logo"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:435
|
311 |
msgid "Delete the picture"
|
312 |
msgstr "Borrar la imagen"
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
|
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:653
|
319 |
msgid "Database"
|
320 |
msgstr "Base de Datos"
|
321 |
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
|
326 |
msgid "select action"
|
327 |
msgstr "seleccione acción"
|
328 |
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
330 |
msgid "Default values"
|
331 |
msgstr "Valores por defecto"
|
332 |
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:718
|
337 |
msgid "Delete"
|
338 |
msgstr "Borrar"
|
339 |
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
|
341 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:687
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
|
344 |
msgid "NOT PRESENT"
|
345 |
msgstr "NO EXISTE"
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
348 |
msgid "WordPress Fields table"
|
349 |
msgstr "tabla de Campos WordPress"
|
350 |
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:700
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
354 |
msgid "Empty"
|
355 |
msgstr "Vacío"
|
356 |
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
358 |
msgid "Extra Fields table"
|
359 |
msgstr "Tabla de campos adicionales"
|
360 |
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
|
362 |
msgid "Users Data table"
|
363 |
msgstr "Tabla de datos del usuario"
|
364 |
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
366 |
msgid "all data inserted by users in all and only extra fields"
|
367 |
msgstr "todos las datos insertados por los usuarios en todos (y unicamente) los campos adicionales"
|
368 |
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
370 |
msgid "Force tables creation"
|
371 |
msgstr "Forzar la creación de tablas"
|
372 |
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
374 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
375 |
msgstr "Equivalente a desactivar y activar el plug-in. No se realizará otra operación."
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
378 |
msgid "User Profile"
|
379 |
msgstr "Perfil de usuario"
|
380 |
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
|
382 |
msgid "Extra Fields section title"
|
383 |
msgstr "Título de la sección de campos adicionales"
|
384 |
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
386 |
msgid "Fieldset's titles, separates with comma"
|
387 |
msgstr "Títulos de los grupos de campo, separar con coma"
|
388 |
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
390 |
msgid "example: title1,title2,title3"
|
391 |
msgstr "ejemplo: título 1, título 2, título 3"
|
392 |
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
|
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>nota:</strong> si cambia el orden o quita grupos de campos posiblemente deba reasignar todos los campos adicionales a su grupo correspondiente"
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
400 |
msgid "Authors & Users Extended"
|
401 |
msgstr "Autores & Usuarios Extendido"
|
402 |
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
404 |
msgid "Hide username field"
|
405 |
msgstr "Esconder campo de nombre de usuario"
|
406 |
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:760
|
408 |
msgid "Hide name field"
|
409 |
msgstr "Esconder campo de nombre"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
|
412 |
msgid "Hide email field"
|
413 |
msgstr "Esconder campo de correo electrónico"
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:769
|
416 |
msgid "Hide role field"
|
417 |
msgstr "Esconder campo de rol"
|
418 |
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:773
|
420 |
msgid "Hide website field"
|
421 |
msgstr "Esconder el campo de sitio web"
|
422 |
|
423 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:777
|
424 |
msgid "Hide n. posts field"
|
425 |
msgstr "Esconder el campo de n. entradas"
|
426 |
|
427 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
428 |
msgid "WordPress hidden fields"
|
429 |
msgstr "Campos escondidos WordPress"
|
430 |
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:785
|
432 |
msgid "Show password"
|
433 |
msgstr "Mostrar contraseña"
|
434 |
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:789
|
436 |
#, fuzzy
|
437 |
msgid "Show confirmation password"
|
438 |
msgstr "Mostrar contraseña"
|
439 |
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
|
441 |
#, fuzzy
|
442 |
msgid "Show password strength meter"
|
443 |
msgstr "Mostrar contraseña"
|
444 |
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:797
|
446 |
msgid "Show first name"
|
447 |
msgstr "Mostrar primer nombre"
|
448 |
|
449 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:801
|
450 |
msgid "Show last name"
|
451 |
msgstr "Mostrar apellido"
|
452 |
|
453 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:805
|
454 |
msgid "Show nickname"
|
455 |
msgstr "Mostrar sobrenombre"
|
456 |
|
457 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:809
|
458 |
msgid "Show website"
|
459 |
msgstr "Mostrar sitio web"
|
460 |
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:813
|
462 |
msgid "Show AIM"
|
463 |
msgstr "Mostrar AIM"
|
464 |
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:817
|
466 |
msgid "Show Yahoo IM"
|
467 |
msgstr "Mostrar mensajero Yahoo"
|
468 |
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:821
|
470 |
msgid "Show Jabber / Google Talk"
|
471 |
msgstr "Mostrar Jabber / Google Talk"
|
472 |
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:825
|
474 |
msgid "Show Biographical Info"
|
475 |
msgstr "Mostrar información biográfica"
|
476 |
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
|
478 |
msgid "Password"
|
479 |
msgstr "Contraseña"
|
480 |
|
481 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
482 |
msgid "Password confirmation"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
486 |
msgid "First name"
|
487 |
msgstr "Primer nombre"
|
488 |
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
490 |
msgid "Last name"
|
491 |
msgstr "Apellido"
|
492 |
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
494 |
msgid "Nickname"
|
495 |
msgstr "Sobrenombre"
|
496 |
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1541
|
500 |
msgid "Website"
|
501 |
msgstr "Sitio Web"
|
502 |
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
|
504 |
msgid "AIM"
|
505 |
msgstr "AIM"
|
506 |
|
507 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
|
508 |
msgid "Yahoo IM"
|
509 |
msgstr "Yahoo IM"
|
510 |
|
511 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
|
512 |
msgid "Jabber / Google Talk"
|
513 |
msgstr "Jabber / Google Talk"
|
514 |
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:400
|
516 |
msgid "Biographical Info"
|
517 |
msgstr "Información Biográfica"
|
518 |
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:750
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
521 |
msgid "Fields"
|
522 |
msgstr "Campos"
|
523 |
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
526 |
msgid "A&U Extended"
|
527 |
msgstr "A&U Extendido"
|
528 |
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
530 |
#, fuzzy
|
531 |
msgid "Users Extended"
|
532 |
msgstr "Usuarios extendido"
|
545 |
msgid "File '%s' is not an image."
|
546 |
msgstr "El archivo '%s' no es una imagen."
|
547 |
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:431
|
549 |
#, fuzzy
|
550 |
msgid "Delete the file"
|
551 |
msgstr "Borrar la imagen"
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:432
|
554 |
#, fuzzy
|
555 |
msgid "Update the file"
|
556 |
msgstr "Actualizar la imagen"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:436
|
559 |
msgid "Update the picture"
|
560 |
msgstr "Actualizar la imagen"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:456
|
563 |
msgid "Picture URL:"
|
564 |
msgstr "URL de la imagen:"
|
565 |
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:684
|
567 |
+
#, php-format
|
568 |
+
msgid "%s previous value: %s new value: %s"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:699
|
572 |
+
#, php-format
|
573 |
+
msgid "%s (%s) has changed one or more fields"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
577 |
#, php-format
|
578 |
msgid "New user registration on your site %s:"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
584 |
#, fuzzy, php-format
|
585 |
msgid "Username: %s"
|
586 |
msgstr "Nombre de usuario"
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
|
589 |
#, fuzzy, php-format
|
590 |
msgid "E-mail: %s"
|
591 |
msgstr "correo electrónico: %s"
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
|
594 |
#, php-format
|
595 |
msgid "[%s] New User Registration"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
600 |
#, fuzzy, php-format
|
601 |
msgid "Password: %s"
|
602 |
msgstr "Contraseña"
|
603 |
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
605 |
#, php-format
|
606 |
msgid "[%s] Your username and password"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:100
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
612 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:124
|
613 |
#, php-format
|
614 |
msgid "%s: %s"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:198
|
618 |
#, php-format
|
619 |
msgid ""
|
620 |
"To activate your user, please click the following link:\n"
|
625 |
"\n"
|
626 |
msgstr ""
|
627 |
|
|
|
628 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
630 |
msgid "Your account is now active!"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
634 |
#, php-format
|
635 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:217
|
639 |
msgid "An error occurred during the activation"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
643 |
msgid "Invalid activation key."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:239
|
647 |
msgid "The site is already active."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:258
|
651 |
msgid "Could not create user"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:270
|
655 |
msgid "That username is already activated."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:290
|
659 |
msgid "That username is currently reserved but may be available in a couple of days."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:293
|
663 |
msgid "username and email used"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:303
|
667 |
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."
|
668 |
msgstr ""
|
669 |
|
688 |
msgstr "Cambiar orden"
|
689 |
|
690 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
691 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
692 |
msgid "Min length"
|
693 |
msgstr "Longitud mínima"
|
694 |
|
695 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1045
|
697 |
msgid "Exact length"
|
698 |
msgstr "Longitud exacta"
|
699 |
|
700 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
|
702 |
msgid "Max length"
|
703 |
msgstr "Longitud máxima"
|
704 |
|
706 |
msgid "Exact or Max length"
|
707 |
msgstr "Longitud máxima o exacta"
|
708 |
|
709 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
710 |
msgid "changed to"
|
711 |
msgstr "cambiado a"
|
712 |
|
713 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
714 |
msgid "You cannot give an order that misses some numbers"
|
715 |
msgstr "No se puede poner un orden que se salte algunos números"
|
716 |
|
717 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
719 |
msgid "Nothing selected"
|
720 |
msgstr "Nada seleccionado"
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
723 |
msgid "Field(s)"
|
724 |
msgstr "Campo(s)"
|
725 |
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
727 |
msgid "deleted correctly"
|
728 |
msgstr "borrado correctamente"
|
729 |
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:236
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1036
|
732 |
msgid "Min size"
|
733 |
msgstr "Tamaño mínimo"
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:237
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1037
|
737 |
msgid "Exact size"
|
738 |
msgstr "Tamaño exacto"
|
739 |
|
740 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
|
741 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
|
742 |
msgid "Max size"
|
743 |
msgstr "Tamaño máximo"
|
744 |
|
745 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
746 |
msgid "Exact or Max size"
|
747 |
msgstr "Tamaño máximo o exacto"
|
748 |
|
749 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
750 |
msgid "Name not specified"
|
751 |
msgstr "Nombre no especificado"
|
752 |
|
753 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
754 |
msgid "Name cannot contains spaces"
|
755 |
msgstr "El nombre no puede contener espacios"
|
756 |
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:300
|
758 |
msgid "Label not specified"
|
759 |
msgstr "Etiqueta no especificada"
|
760 |
|
761 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:305
|
762 |
msgid "not selected (with this type is necessary)"
|
763 |
msgstr "no seleccionado (necesario para este tipo)"
|
764 |
|
765 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
766 |
msgid "If you select"
|
767 |
msgstr "Si usted selecciona"
|
768 |
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
770 |
msgid "you cannot select Min or Max"
|
771 |
msgstr "usted no puede seleccionar mínimo o máximo"
|
772 |
|
773 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
774 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:321
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
776 |
msgid "should be in the range of"
|
777 |
msgstr "debe estar en el rango de"
|
778 |
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:336
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
781 |
msgid "Equal TO not specified"
|
782 |
msgstr "Igual a no especificado"
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:341
|
785 |
msgid "With checkbox type Equal TO can only be"
|
786 |
msgstr "Con tipo casilla de verificación \"igual a\" solo puede ser"
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:344
|
789 |
msgid "With radio type Equal TO can only be"
|
790 |
msgstr "Con tipo radio \"igual a\" solo puede ser"
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:360
|
793 |
msgid "With checkbox type Value can only be"
|
794 |
msgstr "Con tipo casilla de verificación \"Valor\" solo puede ser"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:363
|
797 |
msgid "With radio type Value can only be"
|
798 |
msgstr "Con tipo radio \"Valor\" solo puede ser"
|
799 |
|
800 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:420
|
801 |
msgid "Field inserted correctly"
|
802 |
msgstr "Campo insertado correctamente"
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
805 |
msgid "Field #"
|
806 |
msgstr "Campo #"
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
809 |
msgid "updated correctly"
|
810 |
msgstr "Actualizado correctamente"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:425
|
813 |
msgid "Name inserted is just in the database, change to another one"
|
814 |
msgstr "El nombre insertado"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
|
817 |
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."
|
818 |
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."
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
821 |
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'"
|
822 |
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"
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
825 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
826 |
msgstr "Con <strong>drop-down</strong>: debe agregar todas las opciones en \"etiqueta\" por ejemplo: etiqueta/elemento1,elemento2,elemento3"
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
829 |
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"
|
830 |
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"
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
833 |
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)"
|
834 |
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)"
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
|
837 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
838 |
msgstr "Con <strong>registration-date</strong>: <em>igual a</em> significa el formato de fecha y hora"
|
839 |
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
841 |
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"
|
842 |
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"
|
843 |
|
844 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
845 |
#, fuzzy
|
846 |
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"
|
847 |
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"
|
848 |
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1069
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1525
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1526
|
855 |
msgid "Name"
|
856 |
msgstr "Nombre"
|
857 |
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1072
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
864 |
msgid "Value"
|
865 |
msgstr "Valor"
|
866 |
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1075
|
871 |
msgid "Type"
|
872 |
msgstr "Tipo"
|
873 |
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
875 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
878 |
msgid "Label"
|
879 |
msgstr "Etiqueta"
|
880 |
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:661
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
884 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1100
|
885 |
msgid "Description"
|
886 |
msgstr "Descripción"
|
887 |
|
888 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
890 |
msgid "Rules"
|
891 |
msgstr "Reglas"
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
895 |
msgid "Actions"
|
896 |
msgstr "Acciones"
|
897 |
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
899 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
900 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
|
901 |
msgid "Fieldset"
|
902 |
msgstr "Grupo de campos"
|
903 |
|
904 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:673
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
906 |
msgid "Can be empty"
|
907 |
msgstr "Puede estar vacío"
|
908 |
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
911 |
msgid "Check for E-mail syntax"
|
912 |
msgstr "Checar formato de e-mail"
|
913 |
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
916 |
msgid "Can be modified"
|
917 |
msgstr "Puede ser modificado"
|
918 |
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
920 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
921 |
msgid "Can be modified only if empty"
|
922 |
msgstr "Puede ser modificado solo si está vacío"
|
923 |
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
926 |
msgid "Can be modified only by admin"
|
927 |
msgstr "Puede ser modificado solo por el administrador"
|
928 |
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:680
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1121
|
931 |
msgid "Can be modified only by admin or if empty"
|
932 |
msgstr "Puede ser modificado solo por el administrador o si está vacío"
|
933 |
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
936 |
msgid "Cannot be modified"
|
937 |
msgstr "No puede ser modificado"
|
938 |
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
941 |
msgid "Should be equal TO"
|
942 |
msgstr "Debe ser igual a"
|
943 |
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
945 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1129
|
946 |
msgid "Case sensitive"
|
947 |
msgstr "Distinción mayúsculas y minúsculas"
|
948 |
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
951 |
msgid "Regular Expression"
|
952 |
msgstr "Expresión regular"
|
953 |
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:697
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
956 |
msgid "Show the field in the registration"
|
957 |
msgstr "Mostrar el campo en el registro"
|
958 |
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
961 |
msgid "Show the field in User's profile"
|
962 |
msgstr "Mostrar el campo en el perfil del usuario"
|
963 |
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:703
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
966 |
msgid "Show the field in A&U Extended menu"
|
967 |
msgstr "Mostrar el campo en el menú extendido de A&U"
|
968 |
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:706
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1150
|
971 |
#, fuzzy
|
972 |
msgid "Show the field in the search engine"
|
973 |
msgstr "Mostrar el campo en el registro"
|
974 |
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
977 |
#, fuzzy
|
978 |
msgid "Show the field in the blog"
|
979 |
msgstr "Mostrar el campo en el registro"
|
980 |
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:712
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1156
|
983 |
#, fuzzy
|
984 |
msgid "Show the field if the role is at least:"
|
985 |
msgstr "Mostrar el campo en el registro"
|
986 |
|
987 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
989 |
msgid "Anonymous"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:724
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1171
|
994 |
+
msgid "Send an email to the admin if the user changes its value"
|
995 |
+
msgstr ""
|
996 |
+
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
998 |
msgid "Clear"
|
999 |
msgstr "Vaciar"
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:786
|
1002 |
msgid "Invert selection"
|
1003 |
msgstr "Invertir Selección"
|
1004 |
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
1006 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1007 |
msgstr "&lquot;Está seguro de que quiere borrar los campos y todos los datos insertados por los usuarios?"
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:793
|
1010 |
msgid "WordPress Fields"
|
1011 |
msgstr "Campos WordPress"
|
1012 |
|
1013 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:806
|
1014 |
msgid "None!"
|
1015 |
msgstr "Ninguno!"
|
1016 |
|
1017 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:821
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
1019 |
msgid "Order"
|
1020 |
msgstr "Orden"
|
1021 |
|
1022 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1023 |
msgid "Reset"
|
1024 |
msgstr "Reestablecer"
|
1025 |
|
1026 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1265
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1028 |
#, fuzzy
|
1029 |
msgid "select"
|
1030 |
msgstr "Borrar"
|
1031 |
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1033 |
#, php-format
|
1034 |
msgid "Users Matching \"%s\""
|
1035 |
msgstr "Usuarios que concuerdan con \"%s\""
|
1036 |
|
1037 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1402
|
1038 |
msgid "Users Extended List"
|
1039 |
msgstr "Lista de usuarios extendida"
|
1040 |
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1404
|
1042 |
msgid "Authors & Users Extended List"
|
1043 |
msgstr "Lista de autores y usuarios extendida"
|
1044 |
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
1046 |
#, php-format
|
1047 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
|
1051 |
msgid "Search Users"
|
1052 |
msgstr "Buscar Usuarios"
|
1053 |
|
1054 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
1055 |
msgid "« Back to All Users"
|
1056 |
msgstr "« Regresar a \"todos los usuarios\""
|
1057 |
|
1058 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
1059 |
msgid "Users per page"
|
1060 |
msgstr "Usuarios por página"
|
1061 |
|
1062 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
|
1063 |
msgid "Apply"
|
1064 |
msgstr "Aplicar"
|
1065 |
|
1066 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1067 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1068 |
msgid "Username"
|
1069 |
msgstr "Nombre de usuario"
|
1070 |
|
1071 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1530
|
1072 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1531
|
1073 |
msgid "E-mail"
|
1074 |
msgstr "Correo electrónico"
|
1075 |
|
1076 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
1077 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1536
|
1078 |
msgid "Role"
|
1079 |
msgstr "Rol"
|
1080 |
|
1081 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
1082 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1546
|
1083 |
msgid "Posts"
|
1084 |
msgstr "Entradas"
|
1085 |
|
1086 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1682
|
1087 |
msgid "View posts by this author"
|
1088 |
msgstr "Ver entradas de este autor"
|
1089 |
|
1090 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1713
|
1091 |
#, php-format
|
1092 |
msgid "e-mail: %s"
|
1093 |
msgstr "correo electrónico: %s"
|
1094 |
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1834
|
1096 |
+
#, fuzzy
|
1097 |
+
msgid "Change"
|
1098 |
+
msgstr "Cambiar orden"
|
1099 |
+
|
1100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1859
|
1101 |
#, fuzzy
|
1102 |
msgid "Update selected users"
|
1103 |
msgstr "Borrar campos seleccionados"
|
1104 |
|
1105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1880
|
1106 |
#, fuzzy
|
1107 |
msgid "Update"
|
1108 |
msgstr "Actualizar campo"
|
1109 |
|
1110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1898
|
1111 |
+
msgid "OK"
|
1112 |
+
msgstr ""
|
1113 |
+
|
1114 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1899
|
1115 |
+
msgid "Cancel"
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1119 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1120 |
msgstr "<strong>Nota:</strong> este sitio permite la personalización de contraseña. Despues de registrarse recibirá un correo con otra contraseña, haga caso omiso!"
|
langs/cimy_uef-fr_FR.mo
CHANGED
Binary file
|
langs/cimy_uef-fr_FR.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -16,599 +16,599 @@ 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:403
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
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:
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
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 ""
|
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
|
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
|
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
|
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 "
|
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 "ne
|
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
|
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
|
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
|
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
|
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
|
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/cimy_uef_profile.php:299
|
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:305
|
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 |
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 "Changer l'
|
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:
|
129 |
-
#, fuzzy
|
130 |
msgid "no fieldset"
|
131 |
-
msgstr "
|
|
|
|
|
|
|
|
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
134 |
msgid "WordPress Fields table emptied"
|
135 |
-
msgstr "Table des champs
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
138 |
msgid "WordPress Fields table deleted"
|
139 |
-
msgstr "Table des champs
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
142 |
msgid "Extra Fields table emptied"
|
143 |
-
msgstr "Table des champs
|
144 |
|
145 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
146 |
msgid "Extra Fields table deleted"
|
147 |
-
msgstr "Table des champs
|
148 |
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
150 |
msgid "Users Data table emptied"
|
151 |
-
msgstr "Table des
|
152 |
|
153 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
154 |
msgid "Users Data table deleted"
|
155 |
-
msgstr "Table des
|
156 |
|
157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
158 |
msgid "Options set to default values"
|
159 |
-
msgstr "Options
|
160 |
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
162 |
msgid "Options deleted"
|
163 |
-
msgstr "Options
|
164 |
|
165 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
166 |
msgid "Options changed"
|
167 |
-
msgstr "Options
|
168 |
|
169 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
170 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
171 |
-
msgstr ""
|
172 |
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
175 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
176 |
msgid "Options"
|
177 |
msgstr "Options"
|
178 |
|
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_uef_admin.php:
|
181 |
msgid "Add a new Field"
|
182 |
msgstr "Ajouter un nouveau champ"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
189 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
190 |
msgid "Extra Fields"
|
191 |
-
msgstr "Champs
|
192 |
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
194 |
msgid "Support the Cimy Project"
|
195 |
-
msgstr ""
|
196 |
|
197 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
198 |
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!"
|
199 |
-
msgstr ""
|
200 |
|
201 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
203 |
msgid "SUCCESSFUL"
|
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_options.php:
|
208 |
msgid "Save Changes"
|
209 |
-
msgstr ""
|
210 |
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
msgid "General"
|
213 |
-
msgstr "G
|
214 |
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
216 |
msgid "installed is"
|
217 |
-
msgstr "
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
220 |
msgid "OPTIONS DELETED!"
|
221 |
-
msgstr "OPTIONS
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
225 |
msgid "Fix the problem"
|
226 |
-
msgstr ""
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
229 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
230 |
-
msgstr "
|
231 |
|
232 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
233 |
msgid "Picture/Avatar upload"
|
234 |
-
msgstr ""
|
235 |
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
237 |
msgid "is created and writable"
|
238 |
-
msgstr ""
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
241 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
242 |
-
msgstr ""
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
245 |
-
#, fuzzy
|
246 |
msgid "Show all fields in the welcome email"
|
247 |
-
msgstr "Montrer le
|
248 |
|
249 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
250 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
251 |
-
msgstr ""
|
252 |
|
253 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
254 |
msgid "Enable email confirmation"
|
255 |
-
msgstr ""
|
256 |
|
257 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
258 |
msgid "user that registers should confirm its email address via a link click"
|
259 |
-
msgstr ""
|
260 |
|
261 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
262 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
263 |
-
msgstr ""
|
264 |
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
266 |
msgid "Redirect to the source"
|
267 |
-
msgstr ""
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
270 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
271 |
-
msgstr ""
|
272 |
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
274 |
msgid "No captcha"
|
275 |
-
msgstr ""
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
278 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
279 |
-
msgstr ""
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
msgid "Public KEY"
|
283 |
-
msgstr ""
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
286 |
msgid "Private KEY"
|
287 |
-
msgstr ""
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
291 |
-
msgstr ""
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
294 |
msgid "This captcha is probably weaker, but is easier for users"
|
295 |
-
msgstr ""
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
#, php-format
|
299 |
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>"
|
300 |
-
msgstr ""
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
303 |
msgid "Change login/registration page logo"
|
304 |
-
msgstr ""
|
305 |
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
308 |
-
#, fuzzy
|
309 |
msgid "Delete the picture"
|
310 |
-
msgstr "Supprimer
|
311 |
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
313 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
314 |
-
msgstr ""
|
315 |
|
316 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
317 |
msgid "Database"
|
318 |
-
msgstr "
|
319 |
|
320 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "select action"
|
325 |
-
msgstr "
|
326 |
|
327 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
328 |
msgid "Default values"
|
329 |
-
msgstr "Valeurs par
|
330 |
|
331 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "Delete"
|
336 |
msgstr "Supprimer"
|
337 |
|
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 |
-
#: /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 |
msgid "NOT PRESENT"
|
343 |
msgstr "NON PRESENT"
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
346 |
msgid "WordPress Fields table"
|
347 |
-
msgstr "Table des champs
|
348 |
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "Empty"
|
353 |
msgstr "Vider"
|
354 |
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
356 |
msgid "Extra Fields table"
|
357 |
-
msgstr "Table des champs
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
360 |
msgid "Users Data table"
|
361 |
-
msgstr "Table des
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
364 |
msgid "all data inserted by users in all and only extra fields"
|
365 |
-
msgstr "toutes les
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
368 |
msgid "Force tables creation"
|
369 |
-
msgstr "Forcer la
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
372 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
373 |
-
msgstr ""
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
376 |
msgid "User Profile"
|
377 |
msgstr "Profil utilisateur"
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
380 |
-
#, fuzzy
|
381 |
msgid "Extra Fields section title"
|
382 |
-
msgstr "
|
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 "Titres des regroupements,
|
387 |
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
389 |
msgid "example: title1,title2,title3"
|
390 |
msgstr "exemple : titre1,titre2,titre3"
|
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 ""
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
399 |
msgid "Authors & Users Extended"
|
400 |
-
msgstr "Auteurs &
|
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
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
415 |
-
#, fuzzy
|
416 |
msgid "Hide role field"
|
417 |
-
msgstr "Cacher le champ
|
418 |
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
420 |
msgid "Hide website field"
|
421 |
-
msgstr "Cacher le champ du site
|
422 |
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
424 |
msgid "Hide n. posts field"
|
425 |
-
msgstr "Cacher le champ
|
426 |
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
428 |
msgid "WordPress hidden fields"
|
429 |
-
msgstr "Champs
|
430 |
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
432 |
msgid "Show password"
|
433 |
-
msgstr ""
|
434 |
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
436 |
msgid "Show confirmation password"
|
437 |
-
msgstr ""
|
438 |
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
440 |
msgid "Show password strength meter"
|
441 |
-
msgstr ""
|
442 |
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
444 |
msgid "Show first name"
|
445 |
-
msgstr "Montrer le
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
448 |
msgid "Show last name"
|
449 |
msgstr "Montrer le nom"
|
450 |
|
451 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
452 |
msgid "Show nickname"
|
453 |
msgstr "Montrer le surnom"
|
454 |
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
456 |
msgid "Show website"
|
457 |
msgstr "Montrer le site web"
|
458 |
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
460 |
msgid "Show AIM"
|
461 |
msgstr "Montrer AIM"
|
462 |
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
464 |
msgid "Show Yahoo IM"
|
465 |
msgstr "Montrer 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 "Montrer 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 ""
|
474 |
-
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:200
|
476 |
-
msgid "Password"
|
477 |
-
msgstr ""
|
478 |
|
479 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
|
480 |
-
msgid "Password
|
481 |
-
msgstr ""
|
482 |
|
483 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
484 |
-
|
485 |
-
|
486 |
-
msgstr "Montrer le prénom"
|
487 |
|
488 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
489 |
-
|
490 |
-
|
491 |
-
msgstr "Montrer le nom"
|
492 |
|
493 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
494 |
-
|
495 |
-
msgid "Nickname"
|
496 |
msgstr "Nom"
|
497 |
|
498 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
499 |
-
|
500 |
-
|
501 |
-
msgid "Website"
|
502 |
-
msgstr ""
|
503 |
|
504 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
|
505 |
-
|
506 |
-
|
|
|
|
|
507 |
|
508 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
|
509 |
-
|
510 |
-
|
511 |
-
msgstr "Montrer Yahoo IM"
|
512 |
|
513 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
|
514 |
-
|
515 |
-
|
516 |
-
msgstr "Montrer Jabber / Google Talk"
|
517 |
|
518 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
|
|
|
|
|
|
|
|
|
519 |
msgid "Biographical Info"
|
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 |
msgid "Fields"
|
525 |
msgstr "Champs"
|
526 |
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
529 |
msgid "A&U Extended"
|
530 |
-
msgstr "A&
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
533 |
-
#, fuzzy
|
534 |
msgid "Users Extended"
|
535 |
-
msgstr "
|
536 |
|
537 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
538 |
#, php-format
|
539 |
msgid "File '%s' doesn't exist?"
|
540 |
-
msgstr ""
|
541 |
|
542 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
543 |
msgid "The GD image library is not installed."
|
544 |
-
msgstr ""
|
545 |
|
546 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
547 |
#, php-format
|
548 |
msgid "File '%s' is not an image."
|
549 |
-
msgstr ""
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
552 |
-
#, fuzzy
|
553 |
msgid "Delete the file"
|
554 |
-
msgstr "Supprimer le
|
555 |
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
557 |
-
#, fuzzy
|
558 |
msgid "Update the file"
|
559 |
-
msgstr "Mettre
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
562 |
-
#, fuzzy
|
563 |
msgid "Update the picture"
|
564 |
-
msgstr "Mettre
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
567 |
msgid "Picture URL:"
|
568 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
571 |
#, php-format
|
572 |
msgid "New user registration on your site %s:"
|
573 |
-
msgstr ""
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
576 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
577 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
578 |
#, php-format
|
579 |
msgid "Username: %s"
|
580 |
-
msgstr ""
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
583 |
#, php-format
|
584 |
msgid "E-mail: %s"
|
585 |
-
msgstr ""
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
588 |
#, php-format
|
589 |
msgid "[%s] New User Registration"
|
590 |
-
msgstr ""
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
594 |
#, php-format
|
595 |
msgid "Password: %s"
|
596 |
-
msgstr ""
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
599 |
#, php-format
|
600 |
msgid "[%s] Your username and password"
|
601 |
-
msgstr ""
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
605 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
607 |
#, php-format
|
608 |
msgid "%s: %s"
|
609 |
-
msgstr ""
|
610 |
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
612 |
#, php-format
|
613 |
msgid ""
|
614 |
"To activate your user, please click the following link:\n"
|
@@ -618,48 +618,53 @@ msgid ""
|
|
618 |
"After you activate, you will receive *another email* with your login.\n"
|
619 |
"\n"
|
620 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
621 |
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
623 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
|
|
624 |
msgid "Your account is now active!"
|
625 |
-
msgstr ""
|
626 |
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
628 |
#, php-format
|
629 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
630 |
-
msgstr ""
|
631 |
|
632 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
633 |
msgid "An error occurred during the activation"
|
634 |
-
msgstr ""
|
635 |
|
636 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
637 |
msgid "Invalid activation key."
|
638 |
-
msgstr ""
|
639 |
|
640 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
641 |
msgid "The site is already active."
|
642 |
-
msgstr ""
|
643 |
|
644 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
645 |
msgid "Could not create user"
|
646 |
-
msgstr ""
|
647 |
|
648 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
649 |
msgid "That username is already activated."
|
650 |
-
msgstr ""
|
651 |
|
652 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
653 |
msgid "That username is currently reserved but may be available in a couple of days."
|
654 |
-
msgstr ""
|
655 |
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
657 |
msgid "username and email used"
|
658 |
-
msgstr ""
|
659 |
|
660 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
661 |
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."
|
662 |
-
msgstr ""
|
663 |
|
664 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
665 |
msgid "Add field"
|
@@ -667,7 +672,7 @@ msgstr "Ajouter un champ"
|
|
667 |
|
668 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:15
|
669 |
msgid "Update field"
|
670 |
-
msgstr "Mettre
|
671 |
|
672 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:16
|
673 |
msgid "Delete field"
|
@@ -675,24 +680,24 @@ msgstr "Supprimer le champ"
|
|
675 |
|
676 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
677 |
msgid "Delete selected fields"
|
678 |
-
msgstr "Supprimer les champs
|
679 |
|
680 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
681 |
msgid "Change order"
|
682 |
msgstr "Changer l'ordre"
|
683 |
|
684 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
686 |
msgid "Min length"
|
687 |
msgstr "Longueur min"
|
688 |
|
689 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
691 |
msgid "Exact length"
|
692 |
msgstr "Longueur exacte"
|
693 |
|
694 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
696 |
msgid "Max length"
|
697 |
msgstr "Longueur max"
|
698 |
|
@@ -700,414 +705,427 @@ msgstr "Longueur max"
|
|
700 |
msgid "Exact or Max length"
|
701 |
msgstr "Longueur exacte ou max"
|
702 |
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
704 |
msgid "changed to"
|
705 |
-
msgstr "
|
706 |
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
708 |
msgid "You cannot give an order that misses some numbers"
|
709 |
msgstr "Vous ne pouvez pas donner un ordre qui manque des nombres"
|
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 "Nothing selected"
|
714 |
-
msgstr "Rien n'est
|
715 |
|
716 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
717 |
msgid "Field(s)"
|
718 |
msgstr "Champ(s)"
|
719 |
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
721 |
msgid "deleted correctly"
|
722 |
-
msgstr "
|
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 "Min size"
|
727 |
msgstr "Taille min"
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
731 |
msgid "Exact size"
|
732 |
msgstr "Taille exacte"
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
735 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
736 |
msgid "Max size"
|
737 |
msgstr "Taille max"
|
738 |
|
739 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
740 |
msgid "Exact or Max size"
|
741 |
msgstr "Taille exacte ou Max"
|
742 |
|
743 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
744 |
msgid "Name not specified"
|
745 |
-
msgstr "Nom non
|
746 |
|
747 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
748 |
msgid "Name cannot contains spaces"
|
749 |
msgstr "Le nom ne peut pas contenir d'espace"
|
750 |
|
751 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
752 |
msgid "Label not specified"
|
753 |
-
msgstr "
|
754 |
|
755 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
756 |
msgid "not selected (with this type is necessary)"
|
757 |
-
msgstr "non
|
758 |
|
759 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
760 |
msgid "If you select"
|
761 |
-
msgstr "Si vous
|
762 |
|
763 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
764 |
msgid "you cannot select Min or Max"
|
765 |
-
msgstr "vous ne pouvez pas
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
770 |
msgid "should be in the range of"
|
771 |
-
msgstr "
|
772 |
|
773 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
775 |
msgid "Equal TO not specified"
|
776 |
-
msgstr "
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
779 |
msgid "With checkbox type Equal TO can only be"
|
780 |
-
msgstr "Avec le type checkbox,
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
783 |
msgid "With radio type Equal TO can only be"
|
784 |
-
msgstr "Avec le type radio,
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
787 |
msgid "With checkbox type Value can only be"
|
788 |
-
msgstr "Avec le type checkbox, la valeur ne peut
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
791 |
msgid "With radio type Value can only be"
|
792 |
-
msgstr "Avec le type radio, la valeur ne peut
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
msgid "Field inserted correctly"
|
796 |
-
msgstr "Champ
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
799 |
msgid "Field #"
|
800 |
msgstr "Champ #"
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
803 |
msgid "updated correctly"
|
804 |
-
msgstr "mis
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
msgid "Name inserted is just in the database, change to another one"
|
808 |
-
msgstr "Le nom est
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
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."
|
812 |
-
msgstr "Pour ajouter un nouveau champ, vous devez choisir un nom, un type et
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
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'"
|
816 |
-
msgstr "Avec les types <strong>radio</strong> et <strong>checkbox</strong
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
819 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
820 |
-
msgstr "Avec le type <strong>drop-down</strong
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
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"
|
824 |
-
msgstr "Avec le type <strong>picture</strong
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
827 |
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)"
|
828 |
-
msgstr "Avec le type <strong>picture-url</strong
|
829 |
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
832 |
-
msgstr "Avec le type <strong>registration-date</strong
|
833 |
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
-
#, fuzzy
|
836 |
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"
|
837 |
-
msgstr "Avec le type <strong>picture</strong
|
838 |
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
840 |
-
#, fuzzy
|
841 |
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"
|
842 |
-
msgstr "Avec le type <strong>picture</strong
|
843 |
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
850 |
msgid "Name"
|
851 |
msgstr "Nom"
|
852 |
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
msgid "Value"
|
860 |
msgstr "Valeur"
|
861 |
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
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 |
msgid "Type"
|
867 |
msgstr "Type"
|
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 |
msgid "Label"
|
874 |
-
msgstr "
|
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 |
msgid "Description"
|
881 |
-
msgstr ""
|
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 |
msgid "Rules"
|
886 |
-
msgstr "
|
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 |
msgid "Actions"
|
891 |
msgstr "Actions"
|
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 |
-
|
896 |
msgid "Fieldset"
|
897 |
-
msgstr "
|
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 |
msgid "Can be empty"
|
902 |
-
msgstr "Peut
|
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 "Check for E-mail syntax"
|
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 |
msgid "Can be modified"
|
912 |
-
msgstr "Peut
|
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 |
msgid "Can be modified only if empty"
|
917 |
-
msgstr "Ne peut
|
918 |
|
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 |
msgid "Can be modified only by admin"
|
922 |
-
msgstr "Ne peut
|
923 |
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
926 |
msgid "Can be modified only by admin or if empty"
|
927 |
-
msgstr "Ne peut
|
928 |
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
931 |
msgid "Cannot be modified"
|
932 |
-
msgstr "Ne peut pas
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
msgid "Should be equal TO"
|
937 |
-
msgstr "
|
938 |
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
941 |
msgid "Case sensitive"
|
942 |
-
msgstr "Tenir compte
|
943 |
|
944 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
946 |
msgid "Regular Expression"
|
947 |
-
msgstr ""
|
948 |
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
950 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
951 |
msgid "Show the field in the registration"
|
952 |
msgstr "Montrer le champ lors de l'inscription"
|
953 |
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
msgid "Show the field in User's profile"
|
957 |
msgstr "Montrer le champ dans le profil de l'utilisateur"
|
958 |
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
961 |
msgid "Show the field in A&U Extended menu"
|
962 |
-
msgstr "Montrer le champ dans le menu A&
|
963 |
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
966 |
-
#, fuzzy
|
967 |
msgid "Show the field in the search engine"
|
968 |
-
msgstr "Montrer le champ
|
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 |
-
#, fuzzy
|
973 |
msgid "Show the field in the blog"
|
974 |
-
msgstr "Montrer le champ
|
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 |
-
#, fuzzy
|
979 |
msgid "Show the field if the role is at least:"
|
980 |
-
msgstr "Montrer le champ
|
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 "Anonymous"
|
985 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
986 |
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
988 |
msgid "Clear"
|
989 |
msgstr "Vider (RAZ)"
|
990 |
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
992 |
msgid "Invert selection"
|
993 |
-
msgstr "Inverser la
|
994 |
|
995 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
996 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
997 |
-
msgstr "
|
998 |
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1000 |
msgid "WordPress Fields"
|
1001 |
-
msgstr "Champs
|
1002 |
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
msgid "None!"
|
1005 |
-
msgstr "Aucun
|
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 "Order"
|
1010 |
msgstr "Ordre"
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1013 |
msgid "Reset"
|
1014 |
-
msgstr "
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
1017 |
#, fuzzy
|
1018 |
msgid "select"
|
1019 |
-
msgstr "
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1022 |
#, php-format
|
1023 |
msgid "Users Matching \"%s\""
|
1024 |
-
msgstr ""
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1027 |
-
#, fuzzy
|
1028 |
msgid "Users Extended List"
|
1029 |
-
msgstr "Liste
|
1030 |
|
1031 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1032 |
msgid "Authors & Users Extended List"
|
1033 |
-
msgstr "Liste
|
1034 |
|
1035 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1036 |
#, php-format
|
1037 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1038 |
-
msgstr ""
|
1039 |
|
1040 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1041 |
msgid "Search Users"
|
1042 |
-
msgstr ""
|
1043 |
|
1044 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1045 |
msgid "« Back to All Users"
|
1046 |
-
msgstr ""
|
1047 |
|
1048 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1049 |
-
#, fuzzy
|
1050 |
msgid "Users per page"
|
1051 |
-
msgstr "
|
1052 |
|
1053 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1054 |
msgid "Apply"
|
1055 |
-
msgstr ""
|
1056 |
|
1057 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1058 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1059 |
msgid "Username"
|
1060 |
-
msgstr ""
|
1061 |
|
1062 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1063 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1064 |
msgid "E-mail"
|
1065 |
-
msgstr ""
|
1066 |
|
1067 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1068 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1069 |
-
#, fuzzy
|
1070 |
msgid "Role"
|
1071 |
-
msgstr "
|
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 "Posts"
|
1076 |
msgstr "Articles"
|
1077 |
|
1078 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1079 |
msgid "View posts by this author"
|
1080 |
msgstr "Voir les articles de cet auteur"
|
1081 |
|
1082 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1083 |
#, php-format
|
1084 |
msgid "e-mail: %s"
|
1085 |
-
msgstr ""
|
1086 |
|
1087 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1088 |
#, fuzzy
|
|
|
|
|
|
|
|
|
1089 |
msgid "Update selected users"
|
1090 |
-
msgstr "
|
1091 |
|
1092 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1093 |
-
#, fuzzy
|
1094 |
msgid "Update"
|
1095 |
-
msgstr "Mettre
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1096 |
|
1097 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1098 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1099 |
-
msgstr ""
|
1100 |
|
1101 |
#~ msgid "Disable get_cimyFieldValue function"
|
1102 |
-
#~ msgstr "
|
|
|
1103 |
#~ msgid "leave disabled if you don't know what to do"
|
1104 |
-
#~ msgstr "Laisser
|
|
|
1105 |
#~ msgid "Update Options »"
|
1106 |
#~ msgstr "Mettre à jour les options »"
|
|
|
1107 |
#~ msgid "Hide actions button"
|
1108 |
#~ msgstr "Cacher le bouton actions"
|
|
|
1109 |
#~ msgid "User ID"
|
1110 |
#~ msgstr "ID Utilisateur"
|
|
|
1111 |
#~ msgid "label"
|
1112 |
#~ msgstr "label"
|
1113 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-30 14:08+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-01-30 10:10-0500\n"
|
7 |
+
"Last-Translator: Bruno PS <sharkkiller0@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
|
|
19 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:446
|
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:476
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1218
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERREUR"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
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:411
|
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:425
|
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:445
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
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:451
|
55 |
msgid "YES"
|
56 |
msgstr "OUI"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
59 |
msgid "NO"
|
60 |
msgstr "NON"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:456
|
63 |
msgid "should be"
|
64 |
+
msgstr "devrait être"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
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:476
|
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:482
|
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:494
|
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:500
|
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:512
|
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:518
|
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:531
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
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:830
|
101 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
|
|
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:836
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:371
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
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:916
|
112 |
msgid "Strength indicator"
|
113 |
+
msgstr "Indicateur de sûreté"
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
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 "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 ! \\\" ? $ % ^ & )."
|
118 |
|
119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:954
|
|
|
120 |
msgid "Change image"
|
121 |
+
msgstr "Changer l'image"
|
122 |
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
|
124 |
msgid "Insert the code:"
|
125 |
+
msgstr "Insérer le code :"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
|
|
128 |
msgid "no fieldset"
|
129 |
+
msgstr "aucun regroupement"
|
130 |
+
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:432
|
132 |
+
msgid "All"
|
133 |
+
msgstr "Tous"
|
134 |
|
135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:43
|
136 |
msgid "WordPress Fields table emptied"
|
137 |
+
msgstr "Table des champs WordPress vidée"
|
138 |
|
139 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
140 |
msgid "WordPress Fields table deleted"
|
141 |
+
msgstr "Table des champs WordPress supprimée"
|
142 |
|
143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
144 |
msgid "Extra Fields table emptied"
|
145 |
+
msgstr "Table des champs supplémentaires vidée"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
148 |
msgid "Extra Fields table deleted"
|
149 |
+
msgstr "Table des champs supplémentaires supprimée"
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
152 |
msgid "Users Data table emptied"
|
153 |
+
msgstr "Table des données utilsateurs vidée"
|
154 |
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:76
|
156 |
msgid "Users Data table deleted"
|
157 |
+
msgstr "Table des données utilsateurs supprimée"
|
158 |
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:87
|
160 |
msgid "Options set to default values"
|
161 |
+
msgstr "Options réinitialisées avec les valeurs par défaut"
|
162 |
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:93
|
164 |
msgid "Options deleted"
|
165 |
+
msgstr "Options supprimées"
|
166 |
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
|
168 |
msgid "Options changed"
|
169 |
+
msgstr "Options changées"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
172 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
173 |
+
msgstr "Cette opération créera ou mettra à jour toutes les tables et options manquantes. Voulez-vous continuer?"
|
174 |
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
176 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
|
177 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:749
|
178 |
msgid "Options"
|
179 |
msgstr "Options"
|
180 |
|
181 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
182 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:440
|
183 |
msgid "Add a new Field"
|
184 |
msgstr "Ajouter un nouveau champ"
|
185 |
|
186 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:795
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
190 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
191 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
192 |
msgid "Extra Fields"
|
193 |
+
msgstr "Champs Supplémentaires"
|
194 |
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
196 |
msgid "Support the Cimy Project"
|
197 |
+
msgstr "Supportez le <em>Cimy Project</em>"
|
198 |
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
200 |
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!"
|
201 |
+
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!"
|
202 |
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
204 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1236
|
205 |
msgid "SUCCESSFUL"
|
206 |
+
msgstr "SUCCÈS"
|
207 |
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:830
|
210 |
msgid "Save Changes"
|
211 |
+
msgstr "Enregistrer les changements"
|
212 |
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
214 |
msgid "General"
|
215 |
+
msgstr "Général"
|
216 |
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
218 |
+
#, fuzzy
|
219 |
msgid "installed is"
|
220 |
+
msgstr "installé"
|
221 |
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
223 |
msgid "OPTIONS DELETED!"
|
224 |
+
msgstr "OPTIONS SUPPRIMÉES!"
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
228 |
msgid "Fix the problem"
|
229 |
+
msgstr "Corriger le problème"
|
230 |
|
231 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
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 "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..."
|
234 |
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
236 |
msgid "Picture/Avatar upload"
|
237 |
+
msgstr "Téléchargement de photo ou d'avatar"
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
240 |
msgid "is created and writable"
|
241 |
+
msgstr "est créé et en écriture"
|
242 |
|
243 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
244 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
245 |
+
msgstr "N'est PAS créé ou le serveur Web N'a PAS les permissions pour l'écrire"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
|
|
248 |
msgid "Show all fields in the welcome email"
|
249 |
+
msgstr "Montrer tous les champs dans le courriel de bienvenue"
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
252 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
253 |
+
msgstr "le courriel envoyé aux administrateurs et à l'utilisateur lors de l'inscription contiendra tous les champs"
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:576
|
256 |
msgid "Enable email confirmation"
|
257 |
+
msgstr "Activer la confirmation par courriel"
|
258 |
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
260 |
msgid "user that registers should confirm its email address via a link click"
|
261 |
+
msgstr "les utilisateurs qui s'inscrivent doivent confirmer leur adresse courriel grâce à un lien à cliquer"
|
262 |
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
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>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"
|
266 |
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
268 |
msgid "Redirect to the source"
|
269 |
+
msgstr "Rediriger au référant"
|
270 |
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
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 "après l'inscription, ou la confirmation, l'utilisateur sera redirigé à la page qu'il visitait avant de cliquer sur le lien d'inscription"
|
274 |
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:601
|
276 |
msgid "No captcha"
|
277 |
+
msgstr "Pas de captcha"
|
278 |
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
280 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
281 |
+
msgstr "Activer <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:613
|
284 |
msgid "Public KEY"
|
285 |
+
msgstr "Public KEY"
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
288 |
msgid "Private KEY"
|
289 |
+
msgstr "Private KEY"
|
290 |
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
292 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
293 |
+
msgstr "Activer <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:628
|
296 |
msgid "This captcha is probably weaker, but is easier for users"
|
297 |
+
msgstr "Ce captcha est probablement plus faible, mais plus facile d'utilisation pour les utilisateurs"
|
298 |
|
299 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:632
|
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>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>"
|
303 |
|
304 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
305 |
msgid "Change login/registration page logo"
|
306 |
+
msgstr "Changer le logo de la page de connexion et d'inscription"
|
307 |
|
308 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
309 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:435
|
|
|
310 |
msgid "Delete the picture"
|
311 |
+
msgstr "Supprimer l'image"
|
312 |
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
|
314 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
315 |
+
msgstr "La largeur maximum recommandé est de 328px, mais n'importe quelle hauteur devrait fonctionner."
|
316 |
|
317 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
318 |
msgid "Database"
|
319 |
+
msgstr "Base de données"
|
320 |
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
|
325 |
msgid "select action"
|
326 |
+
msgstr "sélectionner une action"
|
327 |
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
329 |
msgid "Default values"
|
330 |
+
msgstr "Valeurs par défaut"
|
331 |
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:718
|
336 |
msgid "Delete"
|
337 |
msgstr "Supprimer"
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:687
|
341 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
|
343 |
msgid "NOT PRESENT"
|
344 |
msgstr "NON PRESENT"
|
345 |
|
346 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
347 |
msgid "WordPress Fields table"
|
348 |
+
msgstr "Table des champs WordPress"
|
349 |
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:700
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
353 |
msgid "Empty"
|
354 |
msgstr "Vider"
|
355 |
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
357 |
msgid "Extra Fields table"
|
358 |
+
msgstr "Table des champs supplémentaires"
|
359 |
|
360 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
|
361 |
msgid "Users Data table"
|
362 |
+
msgstr "Table des données utilisateurs"
|
363 |
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
365 |
msgid "all data inserted by users in all and only extra fields"
|
366 |
+
msgstr "toutes les données insérées par les utilisateurs dans les champs supplémentaires seulement"
|
367 |
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
369 |
msgid "Force tables creation"
|
370 |
+
msgstr "Forcer la création des tables"
|
371 |
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
373 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
374 |
+
msgstr "équivalent à désactiver et activer le plug-in; aucune autre opération ne sera effectuée"
|
375 |
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
377 |
msgid "User Profile"
|
378 |
msgstr "Profil utilisateur"
|
379 |
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
|
|
|
381 |
msgid "Extra Fields section title"
|
382 |
+
msgstr "Titre de la section des champs supplémentaires"
|
383 |
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
385 |
msgid "Fieldset's titles, separates with comma"
|
386 |
+
msgstr "Titres des regroupements, séparés par des virgules"
|
387 |
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
389 |
msgid "example: title1,title2,title3"
|
390 |
msgstr "exemple : titre1,titre2,titre3"
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
|
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>note</strong> : si vous changez l'ordre ou retirez des regroupements, vous pourriez devoir refaire l'affection des fieldsets aux champs supplémentaires"
|
395 |
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
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:754
|
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:760
|
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:765
|
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:769
|
|
|
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:773
|
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:777
|
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:782
|
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:785
|
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:789
|
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:793
|
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:797
|
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:801
|
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:805
|
451 |
msgid "Show nickname"
|
452 |
msgstr "Montrer le surnom"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:809
|
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:813
|
459 |
msgid "Show AIM"
|
460 |
msgstr "Montrer AIM"
|
461 |
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:817
|
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:821
|
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:825
|
471 |
msgid "Show Biographical Info"
|
472 |
+
msgstr "Afficher les renseignements biographiques"
|
|
|
|
|
|
|
|
|
473 |
|
474 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
|
475 |
+
msgid "Password"
|
476 |
+
msgstr "Mot de passe"
|
477 |
|
478 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
479 |
+
msgid "Password confirmation"
|
480 |
+
msgstr "Confirmation du mot de passe"
|
|
|
481 |
|
482 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
483 |
+
msgid "First name"
|
484 |
+
msgstr "Prénom"
|
|
|
485 |
|
486 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
487 |
+
msgid "Last name"
|
|
|
488 |
msgstr "Nom"
|
489 |
|
490 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
491 |
+
msgid "Nickname"
|
492 |
+
msgstr "Pseudonyme"
|
|
|
|
|
493 |
|
494 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1541
|
497 |
+
msgid "Website"
|
498 |
+
msgstr "Site Web"
|
499 |
|
500 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
|
501 |
+
msgid "AIM"
|
502 |
+
msgstr "AIM"
|
|
|
503 |
|
504 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
|
505 |
+
msgid "Yahoo IM"
|
506 |
+
msgstr "Yahoo IM"
|
|
|
507 |
|
508 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
|
509 |
+
msgid "Jabber / Google Talk"
|
510 |
+
msgstr "Jabber / Google Talk"
|
511 |
+
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:400
|
513 |
msgid "Biographical Info"
|
514 |
+
msgstr "Renseignements biographiques"
|
515 |
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:750
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
518 |
msgid "Fields"
|
519 |
msgstr "Champs"
|
520 |
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
523 |
msgid "A&U Extended"
|
524 |
+
msgstr "A&U Étendu"
|
525 |
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
|
|
527 |
msgid "Users Extended"
|
528 |
+
msgstr "Utilisateurs Étendus"
|
529 |
|
530 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
531 |
#, php-format
|
532 |
msgid "File '%s' doesn't exist?"
|
533 |
+
msgstr "Le fichier '%s' n'existe pas?"
|
534 |
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
536 |
msgid "The GD image library is not installed."
|
537 |
+
msgstr "La bibliothèque GD n'est pas installée."
|
538 |
|
539 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
540 |
#, php-format
|
541 |
msgid "File '%s' is not an image."
|
542 |
+
msgstr "Le fichier '%s' n'est pas une image."
|
543 |
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:431
|
|
|
545 |
msgid "Delete the file"
|
546 |
+
msgstr "Supprimer le fichier"
|
547 |
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:432
|
|
|
549 |
msgid "Update the file"
|
550 |
+
msgstr "Mettre à jour le fichier"
|
551 |
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:436
|
|
|
553 |
msgid "Update the picture"
|
554 |
+
msgstr "Mettre à jour la photo"
|
555 |
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:456
|
557 |
msgid "Picture URL:"
|
558 |
+
msgstr "URL de la photo :"
|
559 |
+
|
560 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:684
|
561 |
+
#, php-format
|
562 |
+
msgid "%s previous value: %s new value: %s"
|
563 |
+
msgstr "%s ancienne valeur : %s; nouvelle valeur : %s"
|
564 |
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:699
|
566 |
+
#, php-format
|
567 |
+
msgid "%s (%s) has changed one or more fields"
|
568 |
+
msgstr "%s (%s) a modifié un ou plusieurs champs"
|
569 |
+
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
571 |
#, php-format
|
572 |
msgid "New user registration on your site %s:"
|
573 |
+
msgstr "Inscription d'un nouvel utilisateur sur votre site %s :"
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
578 |
#, php-format
|
579 |
msgid "Username: %s"
|
580 |
+
msgstr "Identifiant : %s"
|
581 |
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
|
583 |
#, php-format
|
584 |
msgid "E-mail: %s"
|
585 |
+
msgstr "Courriel : %s"
|
586 |
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
|
588 |
#, php-format
|
589 |
msgid "[%s] New User Registration"
|
590 |
+
msgstr "[%s] Inscription d'un nouvel utilisateur"
|
591 |
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
594 |
#, php-format
|
595 |
msgid "Password: %s"
|
596 |
+
msgstr "Mot de passe : %s"
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
599 |
#, php-format
|
600 |
msgid "[%s] Your username and password"
|
601 |
+
msgstr "[%s] Votre identifiant et mot de passe"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:100
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:124
|
607 |
#, php-format
|
608 |
msgid "%s: %s"
|
609 |
+
msgstr "%s : %s"
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:198
|
612 |
#, php-format
|
613 |
msgid ""
|
614 |
"To activate your user, please click the following link:\n"
|
618 |
"After you activate, you will receive *another email* with your login.\n"
|
619 |
"\n"
|
620 |
msgstr ""
|
621 |
+
"Pour activer votre compte d'utilisateur, veuillez cliquer sur le lien suivant :\n"
|
622 |
+
"\n"
|
623 |
+
"%s\n"
|
624 |
+
"\n"
|
625 |
+
"Après l'activation, vous recevrez un *autre courriel* avec votre identifiant.\n"
|
626 |
|
|
|
627 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
628 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
629 |
msgid "Your account is now active!"
|
630 |
+
msgstr "Votre compte est maintenant actif!"
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
633 |
#, php-format
|
634 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
635 |
+
msgstr "Votre compte à <a href=\"%1$s\">%2$s</a> est actif. Vous pouvez vous connecter à votre compte en utilisant l'identifiant \"%3$s\". Veuillez vérifier la boite de réception de votre courriel %4$s pour votre mot de passe et les instructions de connexion. Si vous ne recevez pas ce courriel, vérifiez dans votre dossier de pourriel (spam). Si après une heure vous n'avez toujours pas reçu de courriel, vous pouvez <a href=\"%5$s\">réinitialiser votre mot de passe</a></p>."
|
636 |
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:217
|
638 |
msgid "An error occurred during the activation"
|
639 |
+
msgstr "Une erreur est survenue durant l'activation"
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
642 |
msgid "Invalid activation key."
|
643 |
+
msgstr "Clef d'activation invalide."
|
644 |
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:239
|
646 |
msgid "The site is already active."
|
647 |
+
msgstr "Le compte est déjà actif."
|
648 |
|
649 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:258
|
650 |
msgid "Could not create user"
|
651 |
+
msgstr "N'a pu créer l'utilisateur"
|
652 |
|
653 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:270
|
654 |
msgid "That username is already activated."
|
655 |
+
msgstr "Cet identifiant est déjà actif."
|
656 |
|
657 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:290
|
658 |
msgid "That username is currently reserved but may be available in a couple of days."
|
659 |
+
msgstr "Cet identifiant est actuellement réservé, mais peut être disponible d'ici quelques jours."
|
660 |
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:293
|
662 |
msgid "username and email used"
|
663 |
+
msgstr "identifiant et courriel utilisé"
|
664 |
|
665 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:303
|
666 |
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."
|
667 |
+
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."
|
668 |
|
669 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
670 |
msgid "Add field"
|
672 |
|
673 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:15
|
674 |
msgid "Update field"
|
675 |
+
msgstr "Mettre à jour le champ"
|
676 |
|
677 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:16
|
678 |
msgid "Delete field"
|
680 |
|
681 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
682 |
msgid "Delete selected fields"
|
683 |
+
msgstr "Supprimer les champs sélectionnés"
|
684 |
|
685 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
686 |
msgid "Change order"
|
687 |
msgstr "Changer l'ordre"
|
688 |
|
689 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
690 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
691 |
msgid "Min length"
|
692 |
msgstr "Longueur min"
|
693 |
|
694 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
695 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1045
|
696 |
msgid "Exact length"
|
697 |
msgstr "Longueur exacte"
|
698 |
|
699 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
|
701 |
msgid "Max length"
|
702 |
msgstr "Longueur max"
|
703 |
|
705 |
msgid "Exact or Max length"
|
706 |
msgstr "Longueur exacte ou max"
|
707 |
|
708 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
709 |
msgid "changed to"
|
710 |
+
msgstr "changé à"
|
711 |
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
713 |
msgid "You cannot give an order that misses some numbers"
|
714 |
msgstr "Vous ne pouvez pas donner un ordre qui manque des nombres"
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
717 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
718 |
msgid "Nothing selected"
|
719 |
+
msgstr "Rien n'est sélectionné"
|
720 |
|
721 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
722 |
msgid "Field(s)"
|
723 |
msgstr "Champ(s)"
|
724 |
|
725 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
726 |
msgid "deleted correctly"
|
727 |
+
msgstr "supprmé(e) correctement"
|
728 |
|
729 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:236
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1036
|
731 |
msgid "Min size"
|
732 |
msgstr "Taille min"
|
733 |
|
734 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:237
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1037
|
736 |
msgid "Exact size"
|
737 |
msgstr "Taille exacte"
|
738 |
|
739 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
|
740 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
|
741 |
msgid "Max size"
|
742 |
msgstr "Taille max"
|
743 |
|
744 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
745 |
msgid "Exact or Max size"
|
746 |
msgstr "Taille exacte ou Max"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
749 |
msgid "Name not specified"
|
750 |
+
msgstr "Nom non spécifié"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
753 |
msgid "Name cannot contains spaces"
|
754 |
msgstr "Le nom ne peut pas contenir d'espace"
|
755 |
|
756 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:300
|
757 |
msgid "Label not specified"
|
758 |
+
msgstr "Étiquette non spécifié"
|
759 |
|
760 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:305
|
761 |
msgid "not selected (with this type is necessary)"
|
762 |
+
msgstr "non sélectionné (avec ce type, c'est nécessaire)"
|
763 |
|
764 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
765 |
msgid "If you select"
|
766 |
+
msgstr "Si vous sélectionnez"
|
767 |
|
768 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
769 |
msgid "you cannot select Min or Max"
|
770 |
+
msgstr "vous ne pouvez pas sélectionner Min ou Max"
|
771 |
|
772 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
773 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:321
|
774 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
775 |
msgid "should be in the range of"
|
776 |
+
msgstr "devrait être compris entre"
|
777 |
|
778 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:336
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
780 |
msgid "Equal TO not specified"
|
781 |
+
msgstr "Égal À non spécifié"
|
782 |
|
783 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:341
|
784 |
msgid "With checkbox type Equal TO can only be"
|
785 |
+
msgstr "Avec le type checkbox, Égal À ne peut être que"
|
786 |
|
787 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:344
|
788 |
msgid "With radio type Equal TO can only be"
|
789 |
+
msgstr "Avec le type radio, Égal À ne peut être que"
|
790 |
|
791 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:360
|
792 |
msgid "With checkbox type Value can only be"
|
793 |
+
msgstr "Avec le type checkbox, la valeur ne peut être que"
|
794 |
|
795 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:363
|
796 |
msgid "With radio type Value can only be"
|
797 |
+
msgstr "Avec le type radio, la valeur ne peut être que"
|
798 |
|
799 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:420
|
800 |
msgid "Field inserted correctly"
|
801 |
+
msgstr "Champ inséré correctement"
|
802 |
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
804 |
msgid "Field #"
|
805 |
msgstr "Champ #"
|
806 |
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
808 |
msgid "updated correctly"
|
809 |
+
msgstr "mis à jour correctement"
|
810 |
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:425
|
812 |
msgid "Name inserted is just in the database, change to another one"
|
813 |
+
msgstr "Le nom est déjà dans la base de données; veuillez le changer"
|
814 |
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
|
816 |
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."
|
817 |
+
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."
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
820 |
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'"
|
821 |
+
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é'"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
824 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
825 |
+
msgstr "Avec le type <strong>drop-down</strong> : vous devez ajouter toutes les options dans l'étiquette, par exemple: étiquette/item1,item2,item3"
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
828 |
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"
|
829 |
+
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"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
832 |
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)"
|
833 |
+
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)"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
|
836 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
837 |
+
msgstr "Avec le type <strong>registration-date</strong> : <em>égal À</em> indique un format date et heure"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
|
|
840 |
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"
|
841 |
+
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"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
|
|
844 |
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"
|
845 |
+
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"
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1069
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1525
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1526
|
853 |
msgid "Name"
|
854 |
msgstr "Nom"
|
855 |
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1072
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
862 |
msgid "Value"
|
863 |
msgstr "Valeur"
|
864 |
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1075
|
869 |
msgid "Type"
|
870 |
msgstr "Type"
|
871 |
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
875 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
876 |
msgid "Label"
|
877 |
+
msgstr "Étiquette"
|
878 |
|
879 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
880 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:661
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1100
|
883 |
msgid "Description"
|
884 |
+
msgstr "Description"
|
885 |
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
887 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
888 |
msgid "Rules"
|
889 |
+
msgstr "Règles"
|
890 |
|
891 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
892 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
893 |
msgid "Actions"
|
894 |
msgstr "Actions"
|
895 |
|
896 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
|
899 |
msgid "Fieldset"
|
900 |
+
msgstr "Regroupements"
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:673
|
903 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
904 |
msgid "Can be empty"
|
905 |
+
msgstr "Peut être vide"
|
906 |
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
|
908 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
909 |
msgid "Check for E-mail syntax"
|
910 |
+
msgstr "Vérifier la syntaxe du courriel"
|
911 |
|
912 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
914 |
msgid "Can be modified"
|
915 |
+
msgstr "Peut être modifié"
|
916 |
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
919 |
msgid "Can be modified only if empty"
|
920 |
+
msgstr "Ne peut être modifié que s'il est vide"
|
921 |
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
924 |
msgid "Can be modified only by admin"
|
925 |
+
msgstr "Ne peut être modifié que par un admin"
|
926 |
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:680
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1121
|
929 |
msgid "Can be modified only by admin or if empty"
|
930 |
+
msgstr "Ne peut être modifié que par un admin ou s'il est vide"
|
931 |
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
934 |
msgid "Cannot be modified"
|
935 |
+
msgstr "Ne peut pas être modifié"
|
936 |
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
939 |
msgid "Should be equal TO"
|
940 |
+
msgstr "Devrait être égal À"
|
941 |
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1129
|
944 |
msgid "Case sensitive"
|
945 |
+
msgstr "Tenir compte de la case (majuscule/minuscule)"
|
946 |
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
949 |
msgid "Regular Expression"
|
950 |
+
msgstr "Expression régulière"
|
951 |
|
952 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:697
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
954 |
msgid "Show the field in the registration"
|
955 |
msgstr "Montrer le champ lors de l'inscription"
|
956 |
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
959 |
msgid "Show the field in User's profile"
|
960 |
msgstr "Montrer le champ dans le profil de l'utilisateur"
|
961 |
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:703
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
964 |
msgid "Show the field in A&U Extended menu"
|
965 |
+
msgstr "Montrer le champ dans le menu A&U Étendu"
|
966 |
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:706
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1150
|
|
|
969 |
msgid "Show the field in the search engine"
|
970 |
+
msgstr "Montrer le champ dans les moteurs de recherche"
|
971 |
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
|
|
974 |
msgid "Show the field in the blog"
|
975 |
+
msgstr "Montrer le champ dans le blogue"
|
976 |
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:712
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1156
|
|
|
979 |
msgid "Show the field if the role is at least:"
|
980 |
+
msgstr "Montrer le champ si le rôle est au moins :"
|
981 |
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
984 |
msgid "Anonymous"
|
985 |
+
msgstr "Anonyme"
|
986 |
+
|
987 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:724
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1171
|
989 |
+
msgid "Send an email to the admin if the user changes its value"
|
990 |
+
msgstr "Envoyer un courriel à l'administrateur si l'utilisateur modifie la valeur de ce champ"
|
991 |
|
992 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
993 |
msgid "Clear"
|
994 |
msgstr "Vider (RAZ)"
|
995 |
|
996 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:786
|
997 |
msgid "Invert selection"
|
998 |
+
msgstr "Inverser la sélection"
|
999 |
|
1000 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
1001 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1002 |
+
msgstr "Êtes-vous certain de vouloir supprimer ce(s) champ(s) et toutes les données insérées par vos utilisateurs?"
|
1003 |
|
1004 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:793
|
1005 |
msgid "WordPress Fields"
|
1006 |
+
msgstr "Champs WordPress"
|
1007 |
|
1008 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:806
|
1009 |
msgid "None!"
|
1010 |
+
msgstr "Aucun!"
|
1011 |
|
1012 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:821
|
1013 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
1014 |
msgid "Order"
|
1015 |
msgstr "Ordre"
|
1016 |
|
1017 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1018 |
msgid "Reset"
|
1019 |
+
msgstr "Réinitialiser"
|
1020 |
|
1021 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1265
|
1022 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1023 |
#, fuzzy
|
1024 |
msgid "select"
|
1025 |
+
msgstr "sélectionnez"
|
1026 |
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1028 |
#, php-format
|
1029 |
msgid "Users Matching \"%s\""
|
1030 |
+
msgstr "Utilisateurs correspondant à \"%s\""
|
1031 |
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1402
|
|
|
1033 |
msgid "Users Extended List"
|
1034 |
+
msgstr "Liste étendue des auteurs & des utilisateurs"
|
1035 |
|
1036 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1404
|
1037 |
msgid "Authors & Users Extended List"
|
1038 |
+
msgstr "Liste étendue des auteurs & des utilisateurs"
|
1039 |
|
1040 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
1041 |
#, php-format
|
1042 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1043 |
+
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
1044 |
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
|
1046 |
msgid "Search Users"
|
1047 |
+
msgstr "Chercher des utilisateurs"
|
1048 |
|
1049 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
1050 |
msgid "« Back to All Users"
|
1051 |
+
msgstr "« Retour à tous les utilisateurs"
|
1052 |
|
1053 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
|
|
1054 |
msgid "Users per page"
|
1055 |
+
msgstr "Utilisateurs par page"
|
1056 |
|
1057 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
|
1058 |
msgid "Apply"
|
1059 |
+
msgstr "Appliquer"
|
1060 |
|
1061 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1062 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1063 |
msgid "Username"
|
1064 |
+
msgstr "Identifiant"
|
1065 |
|
1066 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1530
|
1067 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1531
|
1068 |
msgid "E-mail"
|
1069 |
+
msgstr "Courriel"
|
1070 |
|
1071 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
1072 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1536
|
|
|
1073 |
msgid "Role"
|
1074 |
+
msgstr "Rôle"
|
1075 |
|
1076 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
1077 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1546
|
1078 |
msgid "Posts"
|
1079 |
msgstr "Articles"
|
1080 |
|
1081 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1682
|
1082 |
msgid "View posts by this author"
|
1083 |
msgstr "Voir les articles de cet auteur"
|
1084 |
|
1085 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1713
|
1086 |
#, php-format
|
1087 |
msgid "e-mail: %s"
|
1088 |
+
msgstr "courriel : %s"
|
1089 |
|
1090 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1834
|
1091 |
#, fuzzy
|
1092 |
+
msgid "Change"
|
1093 |
+
msgstr "Changer l'image"
|
1094 |
+
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1859
|
1096 |
msgid "Update selected users"
|
1097 |
+
msgstr "Mettre à jour les utilisateurs sélectionnés"
|
1098 |
|
1099 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1880
|
|
|
1100 |
msgid "Update"
|
1101 |
+
msgstr "Mettre à jour"
|
1102 |
+
|
1103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1898
|
1104 |
+
msgid "OK"
|
1105 |
+
msgstr "OK"
|
1106 |
+
|
1107 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1899
|
1108 |
+
msgid "Cancel"
|
1109 |
+
msgstr "Annuler"
|
1110 |
|
1111 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1112 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1113 |
+
msgstr "<strong>Note :</strong> ce site Web vous permet de personnaliser votre mot de passe. Après l'inscription, vous recevrez un courriel avec un autre mot de passe, ne vous en préoccupez pas!"
|
1114 |
|
1115 |
#~ msgid "Disable get_cimyFieldValue function"
|
1116 |
+
#~ msgstr "Désactiver la fonction get_cimyFieldValue"
|
1117 |
+
|
1118 |
#~ msgid "leave disabled if you don't know what to do"
|
1119 |
+
#~ msgstr "Laisser désactivé si vous ne savez pas quoi faire"
|
1120 |
+
|
1121 |
#~ msgid "Update Options »"
|
1122 |
#~ msgstr "Mettre à jour les options »"
|
1123 |
+
|
1124 |
#~ msgid "Hide actions button"
|
1125 |
#~ msgstr "Cacher le bouton actions"
|
1126 |
+
|
1127 |
#~ msgid "User ID"
|
1128 |
#~ msgstr "ID Utilisateur"
|
1129 |
+
|
1130 |
#~ msgid "label"
|
1131 |
#~ msgstr "label"
|
|
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:
|
6 |
-
"PO-Revision-Date:
|
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,515 +16,519 @@ 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:403
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
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:
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
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/cimy_uef_profile.php:299
|
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:305
|
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 |
msgid "Strength indicator"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
115 |
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 ! \\\" ? $ % ^ & )."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
119 |
#, fuzzy
|
120 |
msgid "Change image"
|
121 |
msgstr "Cambia ordine"
|
122 |
|
123 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
124 |
msgid "Insert the code:"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:
|
128 |
msgid "no fieldset"
|
129 |
msgstr "Nessun raggruppamento"
|
130 |
|
131 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
132 |
msgid "WordPress Fields table emptied"
|
133 |
msgstr "Tabella Campi WordPress svuotata"
|
134 |
|
135 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
136 |
msgid "WordPress Fields table deleted"
|
137 |
msgstr "Tabella Campi WordPress cancellata"
|
138 |
|
139 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
140 |
msgid "Extra Fields table emptied"
|
141 |
msgstr "Tabella Campi Extra svuotata"
|
142 |
|
143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
144 |
msgid "Extra Fields table deleted"
|
145 |
msgstr "Tabella Campi Extra cancellata"
|
146 |
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
148 |
msgid "Users Data table emptied"
|
149 |
msgstr "Tabella Dati degli Utenti svuotata"
|
150 |
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
152 |
msgid "Users Data table deleted"
|
153 |
msgstr "Tabella Dati degli Utenti cancellata"
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
156 |
msgid "Options set to default values"
|
157 |
msgstr "Opzioni settate ai valori di default"
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
160 |
msgid "Options deleted"
|
161 |
msgstr "Opzioni cancellate"
|
162 |
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
164 |
msgid "Options changed"
|
165 |
msgstr "Opzioni cambiate"
|
166 |
|
167 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
168 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
169 |
msgstr "Questa operazione creerà/aggiornerà tutte le tabelle/opzioni mancanti, vuoi procedere?"
|
170 |
|
171 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
174 |
msgid "Options"
|
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_admin.php:
|
179 |
msgid "Add a new Field"
|
180 |
msgstr "Aggiungi un campo"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
185 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
186 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
187 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
188 |
msgid "Extra Fields"
|
189 |
msgstr "Campi Extra"
|
190 |
|
191 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
192 |
msgid "Support the Cimy Project"
|
193 |
msgstr "Supporta il progetto Cimy"
|
194 |
|
195 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
196 |
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!"
|
197 |
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!"
|
198 |
|
199 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
200 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
201 |
msgid "SUCCESSFUL"
|
202 |
msgstr "SUCCESSO"
|
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_options.php:
|
206 |
msgid "Save Changes"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
210 |
msgid "General"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
214 |
msgid "installed is"
|
215 |
msgstr "installata"
|
216 |
|
217 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
218 |
msgid "OPTIONS DELETED!"
|
219 |
msgstr "OPZIONI CANCELLATE!"
|
220 |
|
221 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
222 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
223 |
msgid "Fix the problem"
|
224 |
msgstr "Aggiusta il problema"
|
225 |
|
226 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
227 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
228 |
msgstr "VERSIONI NON CORRISPONDENTI! Avviene quando non hai disattivato e riattivato il plug-in dopo l'aggiornamento! Questo può dare dei problemi..."
|
229 |
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
231 |
msgid "Picture/Avatar upload"
|
232 |
msgstr "Picture/Avatar upload"
|
233 |
|
234 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
235 |
msgid "is created and writable"
|
236 |
msgstr "è creata e scrivibile"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
239 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
240 |
msgstr "NON è stata creata o il webserver NON ha il permesso di scrittura su di essa"
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
243 |
msgid "Show all fields in the welcome email"
|
244 |
msgstr "Mostra tutti i campi nella email di benvenuto"
|
245 |
|
246 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
247 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
248 |
msgstr "l'email spedita all'amministratore e all'utente al momento della registrazione avrà tutti i campi"
|
249 |
|
250 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
251 |
msgid "Enable email confirmation"
|
252 |
msgstr "Abilita la conferma dell'email"
|
253 |
|
254 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
255 |
msgid "user that registers should confirm its email address via a link click"
|
256 |
msgstr "gli utenti che si registrano devono confermare il loro indirizzo email cliccando su un link"
|
257 |
|
258 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
259 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
260 |
msgstr "<strong>nota:</strong> abilitando questa opzione verranno disabilitati (solo durante la registrazione) tutti i campi di upload: file, picture, avatar"
|
261 |
|
262 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
263 |
msgid "Redirect to the source"
|
264 |
msgstr "Ridireziona alla fonte"
|
265 |
|
266 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
267 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
268 |
msgstr "dopo la registrazione o la conferma l'utente verrà redirezionato all'indirizzo dov'era esattamente prima di cliccare sul link della registrazione"
|
269 |
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
271 |
msgid "No captcha"
|
272 |
msgstr "Nessun captcha"
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
275 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
276 |
msgstr "Abilita <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
279 |
msgid "Public KEY"
|
280 |
msgstr "Chiave pubblica"
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
283 |
msgid "Private KEY"
|
284 |
msgstr "Chiave privata"
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
287 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
288 |
msgstr "Abilita <a href=\"http://www.phpcaptcha.org\" target=\"_blank\">Securimage Captcha</a>"
|
289 |
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
291 |
msgid "This captcha is probably weaker, but is easier for users"
|
292 |
msgstr "Questo captcha è probabilmente più debole, ma più facile da usare per gli utenti"
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
295 |
#, php-format
|
296 |
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>"
|
297 |
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>"
|
298 |
|
299 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
300 |
msgid "Change login/registration page logo"
|
301 |
msgstr "Cambia il logo nella pagina di login/registrazione"
|
302 |
|
303 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
305 |
msgid "Delete the picture"
|
306 |
msgstr "Cancella l'immagine"
|
307 |
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
309 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
310 |
msgstr "La larghezza massima raccomandata del logo è 328 pixel, qualsiasi altezza dovrebbe funzionare."
|
311 |
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
313 |
msgid "Database"
|
314 |
msgstr "Database"
|
315 |
|
316 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
319 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
320 |
msgid "select action"
|
321 |
msgstr "seleziona una azione"
|
322 |
|
323 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
324 |
msgid "Default values"
|
325 |
msgstr "Valori di default"
|
326 |
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
331 |
msgid "Delete"
|
332 |
msgstr ""
|
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 "NOT PRESENT"
|
339 |
msgstr "NON PRESENTE"
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
342 |
msgid "WordPress Fields table"
|
343 |
msgstr "Tabella Campi WordPress"
|
344 |
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
348 |
msgid "Empty"
|
349 |
msgstr "Svuota"
|
350 |
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
352 |
msgid "Extra Fields table"
|
353 |
msgstr "Tabella Campi Extra"
|
354 |
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
356 |
msgid "Users Data table"
|
357 |
msgstr "Tabella Dati degli Utenti"
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
360 |
msgid "all data inserted by users in all and only extra fields"
|
361 |
msgstr "tutti i dati inseriti dagli utenti in tutti e soli i campi extra"
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
364 |
msgid "Force tables creation"
|
365 |
msgstr "Forza la creazione delle tabelle"
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
368 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
369 |
msgstr "equivalente a disattivare e attivare il plug-in; nessun'altra operazione sarà effettuata"
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
372 |
msgid "User Profile"
|
373 |
msgstr "Profilo utente"
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
376 |
msgid "Extra Fields section title"
|
377 |
msgstr "Titolo della sezione Campi Extra"
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
380 |
msgid "Fieldset's titles, separates with comma"
|
381 |
msgstr "Titoli dei raggruppamenti, separati dalla virgola"
|
382 |
|
383 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
384 |
msgid "example: title1,title2,title3"
|
385 |
msgstr "esempio: titolo1, titolo2, titolo3"
|
386 |
|
387 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
388 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
389 |
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"
|
390 |
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
394 |
msgid "Authors & Users Extended"
|
395 |
msgstr "Autori & Utenti Estesa"
|
396 |
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
398 |
msgid "Hide username field"
|
399 |
msgstr "Nascondi il campo nome utente"
|
400 |
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
402 |
msgid "Hide name field"
|
403 |
msgstr "Nascondi il campo nome"
|
404 |
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
406 |
msgid "Hide email field"
|
407 |
msgstr "Nascondi il campo email"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
410 |
msgid "Hide role field"
|
411 |
msgstr "Nascondi il campo ruolo"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
414 |
msgid "Hide website field"
|
415 |
msgstr "Nascondi il campo sito web"
|
416 |
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
418 |
msgid "Hide n. posts field"
|
419 |
msgstr "Nascondi il campo n. di post"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
422 |
msgid "WordPress hidden fields"
|
423 |
msgstr "Campi nascosti di WordPress"
|
424 |
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
426 |
msgid "Show password"
|
427 |
msgstr "Mostra password"
|
428 |
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
430 |
msgid "Show confirmation password"
|
431 |
msgstr "Mostra conferma della password"
|
432 |
|
433 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
434 |
msgid "Show password strength meter"
|
435 |
msgstr "Mostra indicatore di forza della password"
|
436 |
|
437 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
438 |
msgid "Show first name"
|
439 |
msgstr "Mostra nome"
|
440 |
|
441 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
442 |
msgid "Show last name"
|
443 |
msgstr "Mostra cognome"
|
444 |
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
446 |
msgid "Show nickname"
|
447 |
msgstr "Mostra nickname"
|
448 |
|
449 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
450 |
msgid "Show website"
|
451 |
msgstr "Mostra sito web"
|
452 |
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
454 |
msgid "Show AIM"
|
455 |
msgstr "Mostra AIM"
|
456 |
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
458 |
msgid "Show Yahoo IM"
|
459 |
msgstr "Mostra Yahoo IM"
|
460 |
|
461 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
462 |
msgid "Show Jabber / Google Talk"
|
463 |
msgstr "Mostra Jabber / Google Talk"
|
464 |
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
466 |
msgid "Show Biographical Info"
|
467 |
msgstr "Mostra informazioni biografiche"
|
468 |
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
470 |
#, fuzzy
|
471 |
msgid "Password"
|
472 |
msgstr "Mostra password"
|
473 |
|
474 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
475 |
msgid "Password confirmation"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
479 |
#, fuzzy
|
480 |
msgid "First name"
|
481 |
msgstr "Mostra nome"
|
482 |
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
484 |
#, fuzzy
|
485 |
msgid "Last name"
|
486 |
msgstr "Mostra cognome"
|
487 |
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
489 |
#, fuzzy
|
490 |
msgid "Nickname"
|
491 |
msgstr "Mostra nickname"
|
492 |
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
494 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
495 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
496 |
msgid "Website"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
500 |
msgid "AIM"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
504 |
#, fuzzy
|
505 |
msgid "Yahoo IM"
|
506 |
msgstr "Mostra Yahoo IM"
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
509 |
#, fuzzy
|
510 |
msgid "Jabber / Google Talk"
|
511 |
msgstr "Mostra Jabber / Google Talk"
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
514 |
msgid "Biographical Info"
|
515 |
msgstr ""
|
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 |
msgid "Fields"
|
520 |
msgstr "Campi"
|
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_user_extra_fields.php:
|
524 |
msgid "A&U Extended"
|
525 |
msgstr "A&U Estesa"
|
526 |
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
528 |
msgid "Users Extended"
|
529 |
msgstr "Lista Utenti Estesa"
|
530 |
|
@@ -542,64 +546,74 @@ msgstr ""
|
|
542 |
msgid "File '%s' is not an image."
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
546 |
msgid "Delete the file"
|
547 |
msgstr "Cancella il file"
|
548 |
|
549 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
550 |
msgid "Update the file"
|
551 |
msgstr "Aggiorna il file"
|
552 |
|
553 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
554 |
msgid "Update the picture"
|
555 |
msgstr "Aggiorna l'immagine"
|
556 |
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
558 |
msgid "Picture URL:"
|
559 |
msgstr "URL dell'immagine:"
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
562 |
#, php-format
|
563 |
msgid "New user registration on your site %s:"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
567 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
569 |
#, php-format
|
570 |
msgid "Username: %s"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
574 |
#, php-format
|
575 |
msgid "E-mail: %s"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
579 |
#, php-format
|
580 |
msgid "[%s] New User Registration"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
585 |
#, fuzzy, php-format
|
586 |
msgid "Password: %s"
|
587 |
msgstr "Mostra password"
|
588 |
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
590 |
#, php-format
|
591 |
msgid "[%s] Your username and password"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
598 |
#, php-format
|
599 |
msgid "%s: %s"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
603 |
#, php-format
|
604 |
msgid ""
|
605 |
"To activate your user, please click the following link:\n"
|
@@ -616,45 +630,45 @@ msgstr ""
|
|
616 |
"Dopo l’attivazione, si riceverà *un’altra email* con i dati di login.\n"
|
617 |
"\n"
|
618 |
|
619 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
620 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
|
|
621 |
msgid "Your account is now active!"
|
622 |
msgstr "Il tuo account è ora attivo!"
|
623 |
|
624 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
625 |
#, php-format
|
626 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
627 |
msgstr "Il sito su <a href=\"%1$s\">%2$s</a> è attivo. Ora è possibile effettuare la login al sito utilizzando il nome utente scelto che è \"%3$s\". Per favore controllare la propria casella postale su %4$s per la password e le istruzioni per il login. Se non si ricevesse alcuna email, controllare la cartella junk o spam. Se si continua a non ricevere alcuna email nella prossima ora è possibile <a href=\"%5$s\">azzerare la propria password</a>.</p>"
|
628 |
|
629 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
630 |
msgid "An error occurred during the activation"
|
631 |
msgstr "Si è verificato un errore durante l'attivazione"
|
632 |
|
633 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
634 |
msgid "Invalid activation key."
|
635 |
msgstr "Chiave di attivazione non valida."
|
636 |
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
638 |
msgid "The site is already active."
|
639 |
msgstr "Il sito è già attivo."
|
640 |
|
641 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
642 |
msgid "Could not create user"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
646 |
msgid "That username is already activated."
|
647 |
msgstr "Il nome utente è già stato attivato."
|
648 |
|
649 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
650 |
msgid "That username is currently reserved but may be available in a couple of days."
|
651 |
msgstr "Il nome utente è attualmente riservato ma potrebbe rendersi disponibile in un paio di giorni."
|
652 |
|
653 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
654 |
msgid "username and email used"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
658 |
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."
|
659 |
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."
|
660 |
|
@@ -679,17 +693,17 @@ msgid "Change order"
|
|
679 |
msgstr "Cambia ordine"
|
680 |
|
681 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
682 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
683 |
msgid "Min length"
|
684 |
msgstr "Lunghezza Min"
|
685 |
|
686 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
687 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
688 |
msgid "Exact length"
|
689 |
msgstr "Lunghezza Esatta"
|
690 |
|
691 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
693 |
msgid "Max length"
|
694 |
msgstr "Lunghezza Max"
|
695 |
|
@@ -697,391 +711,411 @@ msgstr "Lunghezza Max"
|
|
697 |
msgid "Exact or Max length"
|
698 |
msgstr "Lunghezza Max o Esatta"
|
699 |
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
701 |
msgid "changed to"
|
702 |
msgstr "cambiati a"
|
703 |
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
705 |
msgid "You cannot give an order that misses some numbers"
|
706 |
msgstr "Non puoi dare un ordine dove mancano alcuni numeri"
|
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 "Nothing selected"
|
711 |
msgstr "Nessun campo selezionato"
|
712 |
|
713 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
714 |
msgid "Field(s)"
|
715 |
msgstr "Campo(i)"
|
716 |
|
717 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
718 |
msgid "deleted correctly"
|
719 |
msgstr "cancellato(i) correttamente"
|
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 "Min size"
|
724 |
msgstr "Dimensione Min"
|
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 "Exact size"
|
729 |
msgstr "Dimensione Esatta"
|
730 |
|
731 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
733 |
msgid "Max size"
|
734 |
msgstr "Dimensione Max"
|
735 |
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
737 |
msgid "Exact or Max size"
|
738 |
msgstr "Dimensione Esatta o Max"
|
739 |
|
740 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
741 |
msgid "Name not specified"
|
742 |
msgstr "Nome non specificato"
|
743 |
|
744 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
745 |
msgid "Name cannot contains spaces"
|
746 |
msgstr "Il Nome non può contenere spazi"
|
747 |
|
748 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
749 |
msgid "Label not specified"
|
750 |
msgstr "Etichetta non specificata"
|
751 |
|
752 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
753 |
msgid "not selected (with this type is necessary)"
|
754 |
msgstr "non selezionata (con questo tipo è necessario)"
|
755 |
|
756 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
757 |
msgid "If you select"
|
758 |
msgstr "Se selezioni"
|
759 |
|
760 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
761 |
msgid "you cannot select Min or Max"
|
762 |
msgstr "non puoi selezionare Min o Max"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
767 |
msgid "should be in the range of"
|
768 |
msgstr "deve essere compreso tra"
|
769 |
|
770 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
771 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
772 |
msgid "Equal TO not specified"
|
773 |
msgstr "Uguale A non specificato"
|
774 |
|
775 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
776 |
msgid "With checkbox type Equal TO can only be"
|
777 |
msgstr "Con il tipo checkbox Uguale A può essere solo"
|
778 |
|
779 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
780 |
msgid "With radio type Equal TO can only be"
|
781 |
msgstr "Con il tipo radio Uguale A può essere solo"
|
782 |
|
783 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
784 |
msgid "With checkbox type Value can only be"
|
785 |
msgstr "Con il tipo checkbox Valore può essere solo"
|
786 |
|
787 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
788 |
msgid "With radio type Value can only be"
|
789 |
msgstr "Con il tipo radio Valore può essere solo"
|
790 |
|
791 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
792 |
msgid "Field inserted correctly"
|
793 |
msgstr "Campo inserito correttamente"
|
794 |
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
796 |
msgid "Field #"
|
797 |
msgstr "Campo #"
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
800 |
msgid "updated correctly"
|
801 |
msgstr "aggiornato correttamente"
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
804 |
msgid "Name inserted is just in the database, change to another one"
|
805 |
msgstr "Il Nome inserito è già nel database, cambialo con un altro"
|
806 |
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
808 |
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."
|
809 |
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."
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
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'"
|
813 |
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'"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
817 |
msgstr "Con <strong>drop-down</strong>: devi aggiungere tutte le opzioni nell'etichetta per esempio: etichetta/oggetto1,oggetto2,oggetto3"
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
820 |
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"
|
821 |
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"
|
822 |
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
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)"
|
825 |
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)"
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
829 |
msgstr "Con <strong>registration-date</strong>: <em>uguale A</em> significa il formato della data e dell'ora"
|
830 |
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
832 |
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"
|
833 |
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"
|
834 |
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
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"
|
837 |
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"
|
838 |
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
845 |
msgid "Name"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
850 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
msgid "Value"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
861 |
msgid "Type"
|
862 |
msgstr "Tipo"
|
863 |
|
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 |
msgid "Label"
|
869 |
msgstr "Etichetta"
|
870 |
|
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 "Description"
|
876 |
msgstr ""
|
877 |
|
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 "Rules"
|
881 |
msgstr "Regole"
|
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 |
msgid "Actions"
|
886 |
msgstr ""
|
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 |
msgid "Fieldset"
|
891 |
msgstr "Raggruppamento"
|
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 |
msgid "Can be empty"
|
896 |
msgstr "Può essere vuoto"
|
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 |
msgid "Check for E-mail syntax"
|
901 |
msgstr "Controlla la sintassi dell'E-mail"
|
902 |
|
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 "Can be modified"
|
906 |
msgstr "Può essere modificato"
|
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 "Can be modified only if empty"
|
911 |
msgstr "Può essere modificato solo se vuoto"
|
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 "Can be modified only by admin"
|
916 |
msgstr "Può essere modificato solo dall'admin"
|
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 modified only by admin or if empty"
|
921 |
msgstr "Può essere modificato solo dall'admin o se vuoto"
|
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 "Cannot be modified"
|
926 |
msgstr "Non può essere modificato"
|
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 "Should be equal TO"
|
931 |
msgstr "Deve essere uguale A"
|
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 "Case sensitive"
|
936 |
msgstr "Distinguere le maiuscole"
|
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 "Regular Expression"
|
941 |
msgstr "Espressione Regolare"
|
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 "Show the field in the registration"
|
946 |
msgstr "Mostra il campo nella registrazione"
|
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 "Show the field in User's profile"
|
951 |
msgstr "Mostra il campo nel profilo dell'utente"
|
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 "Show the field in A&U Extended menu"
|
956 |
msgstr "Mostra il campo nel menù A&U esteso"
|
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 "Show the field in the search engine"
|
961 |
msgstr "Mostra il campo nel motore di ricerca"
|
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 "Show the field in the blog"
|
966 |
msgstr "Mostra il campo nel blog"
|
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 if the role is at least:"
|
971 |
msgstr "Mostra il campo se il ruolo è almeno:"
|
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 "Anonymous"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
979 |
msgid "Clear"
|
980 |
msgstr "Pulisci"
|
981 |
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
983 |
msgid "Invert selection"
|
984 |
msgstr "Inverti selezione"
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
987 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
988 |
msgstr "Sei sicuro di volere cancellare il(i) campo(i) e tutti i relativi dati inseriti dagli utenti?"
|
989 |
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
991 |
msgid "WordPress Fields"
|
992 |
msgstr "Campi WordPress"
|
993 |
|
994 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
995 |
msgid "None!"
|
996 |
msgstr "Nessuno!"
|
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 "Order"
|
1001 |
msgstr "Ordine"
|
1002 |
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
msgid "Reset"
|
1005 |
msgstr "Reset"
|
1006 |
|
1007 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
1008 |
msgid "select"
|
1009 |
msgstr "seleziona"
|
1010 |
|
1011 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1012 |
#, php-format
|
1013 |
msgid "Users Matching \"%s\""
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1017 |
#, fuzzy
|
1018 |
msgid "Users Extended List"
|
1019 |
msgstr "Lista Autori & Utenti Estesa"
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1022 |
msgid "Authors & Users Extended List"
|
1023 |
msgstr "Lista Autori & Utenti Estesa"
|
1024 |
|
1025 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1026 |
#, php-format
|
1027 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1031 |
msgid "Search Users"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1035 |
msgid "« Back to All Users"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1039 |
msgid "Users per page"
|
1040 |
msgstr "Utenti per pagina"
|
1041 |
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1043 |
msgid "Apply"
|
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 "Username"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1052 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1053 |
msgid "E-mail"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1057 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1058 |
#, fuzzy
|
1059 |
msgid "Role"
|
1060 |
msgstr "Regole"
|
1061 |
|
1062 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1063 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1064 |
msgid "Posts"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1068 |
msgid "View posts by this author"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1072 |
#, php-format
|
1073 |
msgid "e-mail: %s"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1077 |
msgid "Update selected users"
|
1078 |
msgstr "Aggiorna gli utenti selezionati"
|
1079 |
|
1080 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1081 |
#, fuzzy
|
1082 |
msgid "Update"
|
1083 |
msgstr "Aggiorna campo"
|
1084 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1085 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1086 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1087 |
msgstr "<strong>Nota:</strong> questo sito ti permette di personalizzare la tua password; dopo la registrazione riceverai una e-mail con un'altra password, non farci caso!"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-30 14:00+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-01-30 14:05+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:407
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:446
|
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:476
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1218
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERRORE"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
38 |
msgid "does not match."
|
39 |
msgstr "non corrisponde."
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
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:425
|
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:445
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "non è corretto"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
55 |
msgid "YES"
|
56 |
msgstr "SI"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
59 |
msgid "NO"
|
60 |
msgstr "NO"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:456
|
63 |
msgid "should be"
|
64 |
msgstr "deve essere"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
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:476
|
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:482
|
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:494
|
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:500
|
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:512
|
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:518
|
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:531
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
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:830
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
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:836
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:371
|
106 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
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:916
|
111 |
msgid "Strength indicator"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
115 |
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 ! \\\" ? $ % ^ & )."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:954
|
119 |
#, fuzzy
|
120 |
msgid "Change image"
|
121 |
msgstr "Cambia ordine"
|
122 |
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
|
124 |
msgid "Insert the code:"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
128 |
msgid "no fieldset"
|
129 |
msgstr "Nessun raggruppamento"
|
130 |
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:432
|
132 |
+
msgid "All"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:43
|
136 |
msgid "WordPress Fields table emptied"
|
137 |
msgstr "Tabella Campi WordPress svuotata"
|
138 |
|
139 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
140 |
msgid "WordPress Fields table deleted"
|
141 |
msgstr "Tabella Campi WordPress cancellata"
|
142 |
|
143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
144 |
msgid "Extra Fields table emptied"
|
145 |
msgstr "Tabella Campi Extra svuotata"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
148 |
msgid "Extra Fields table deleted"
|
149 |
msgstr "Tabella Campi Extra cancellata"
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
152 |
msgid "Users Data table emptied"
|
153 |
msgstr "Tabella Dati degli Utenti svuotata"
|
154 |
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:76
|
156 |
msgid "Users Data table deleted"
|
157 |
msgstr "Tabella Dati degli Utenti cancellata"
|
158 |
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:87
|
160 |
msgid "Options set to default values"
|
161 |
msgstr "Opzioni settate ai valori di default"
|
162 |
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:93
|
164 |
msgid "Options deleted"
|
165 |
msgstr "Opzioni cancellate"
|
166 |
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
|
168 |
msgid "Options changed"
|
169 |
msgstr "Opzioni cambiate"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
172 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
173 |
msgstr "Questa operazione creerà/aggiornerà tutte le tabelle/opzioni mancanti, vuoi procedere?"
|
174 |
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
176 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
|
177 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:749
|
178 |
msgid "Options"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
182 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:440
|
183 |
msgid "Add a new Field"
|
184 |
msgstr "Aggiungi un campo"
|
185 |
|
186 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:795
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
190 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
191 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
192 |
msgid "Extra Fields"
|
193 |
msgstr "Campi Extra"
|
194 |
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
196 |
msgid "Support the Cimy Project"
|
197 |
msgstr "Supporta il progetto Cimy"
|
198 |
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
200 |
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!"
|
201 |
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!"
|
202 |
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
204 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1236
|
205 |
msgid "SUCCESSFUL"
|
206 |
msgstr "SUCCESSO"
|
207 |
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:830
|
210 |
msgid "Save Changes"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
214 |
msgid "General"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
218 |
msgid "installed is"
|
219 |
msgstr "installata"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
222 |
msgid "OPTIONS DELETED!"
|
223 |
msgstr "OPZIONI CANCELLATE!"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
227 |
msgid "Fix the problem"
|
228 |
msgstr "Aggiusta il problema"
|
229 |
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
231 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
232 |
msgstr "VERSIONI NON CORRISPONDENTI! Avviene quando non hai disattivato e riattivato il plug-in dopo l'aggiornamento! Questo può dare dei problemi..."
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
235 |
msgid "Picture/Avatar upload"
|
236 |
msgstr "Picture/Avatar upload"
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
239 |
msgid "is created and writable"
|
240 |
msgstr "è creata e scrivibile"
|
241 |
|
242 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
243 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
244 |
msgstr "NON è stata creata o il webserver NON ha il permesso di scrittura su di essa"
|
245 |
|
246 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
247 |
msgid "Show all fields in the welcome email"
|
248 |
msgstr "Mostra tutti i campi nella email di benvenuto"
|
249 |
|
250 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
251 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
252 |
msgstr "l'email spedita all'amministratore e all'utente al momento della registrazione avrà tutti i campi"
|
253 |
|
254 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:576
|
255 |
msgid "Enable email confirmation"
|
256 |
msgstr "Abilita la conferma dell'email"
|
257 |
|
258 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
259 |
msgid "user that registers should confirm its email address via a link click"
|
260 |
msgstr "gli utenti che si registrano devono confermare il loro indirizzo email cliccando su un link"
|
261 |
|
262 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
263 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
264 |
msgstr "<strong>nota:</strong> abilitando questa opzione verranno disabilitati (solo durante la registrazione) tutti i campi di upload: file, picture, avatar"
|
265 |
|
266 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
267 |
msgid "Redirect to the source"
|
268 |
msgstr "Ridireziona alla fonte"
|
269 |
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
271 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
272 |
msgstr "dopo la registrazione o la conferma l'utente verrà redirezionato all'indirizzo dov'era esattamente prima di cliccare sul link della registrazione"
|
273 |
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:601
|
275 |
msgid "No captcha"
|
276 |
msgstr "Nessun captcha"
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
279 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
280 |
msgstr "Abilita <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
283 |
msgid "Public KEY"
|
284 |
msgstr "Chiave pubblica"
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
287 |
msgid "Private KEY"
|
288 |
msgstr "Chiave privata"
|
289 |
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
291 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
292 |
msgstr "Abilita <a href=\"http://www.phpcaptcha.org\" target=\"_blank\">Securimage Captcha</a>"
|
293 |
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:628
|
295 |
msgid "This captcha is probably weaker, but is easier for users"
|
296 |
msgstr "Questo captcha è probabilmente più debole, ma più facile da usare per gli utenti"
|
297 |
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:632
|
299 |
#, php-format
|
300 |
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>"
|
301 |
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>"
|
302 |
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
304 |
msgid "Change login/registration page logo"
|
305 |
msgstr "Cambia il logo nella pagina di login/registrazione"
|
306 |
|
307 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
308 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:435
|
309 |
msgid "Delete the picture"
|
310 |
msgstr "Cancella l'immagine"
|
311 |
|
312 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
|
313 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
314 |
msgstr "La larghezza massima raccomandata del logo è 328 pixel, qualsiasi altezza dovrebbe funzionare."
|
315 |
|
316 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
317 |
msgid "Database"
|
318 |
msgstr "Database"
|
319 |
|
320 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
|
324 |
msgid "select action"
|
325 |
msgstr "seleziona una azione"
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
328 |
msgid "Default values"
|
329 |
msgstr "Valori di default"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:718
|
335 |
msgid "Delete"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:687
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
341 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
|
342 |
msgid "NOT PRESENT"
|
343 |
msgstr "NON PRESENTE"
|
344 |
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
346 |
msgid "WordPress Fields table"
|
347 |
msgstr "Tabella Campi WordPress"
|
348 |
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:700
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
352 |
msgid "Empty"
|
353 |
msgstr "Svuota"
|
354 |
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
356 |
msgid "Extra Fields table"
|
357 |
msgstr "Tabella Campi Extra"
|
358 |
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
|
360 |
msgid "Users Data table"
|
361 |
msgstr "Tabella Dati degli Utenti"
|
362 |
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
364 |
msgid "all data inserted by users in all and only extra fields"
|
365 |
msgstr "tutti i dati inseriti dagli utenti in tutti e soli i campi extra"
|
366 |
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
368 |
msgid "Force tables creation"
|
369 |
msgstr "Forza la creazione delle tabelle"
|
370 |
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
372 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
373 |
msgstr "equivalente a disattivare e attivare il plug-in; nessun'altra operazione sarà effettuata"
|
374 |
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
376 |
msgid "User Profile"
|
377 |
msgstr "Profilo utente"
|
378 |
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
|
380 |
msgid "Extra Fields section title"
|
381 |
msgstr "Titolo della sezione Campi Extra"
|
382 |
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
384 |
msgid "Fieldset's titles, separates with comma"
|
385 |
msgstr "Titoli dei raggruppamenti, separati dalla virgola"
|
386 |
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
388 |
msgid "example: title1,title2,title3"
|
389 |
msgstr "esempio: titolo1, titolo2, titolo3"
|
390 |
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
|
392 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
393 |
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"
|
394 |
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
398 |
msgid "Authors & Users Extended"
|
399 |
msgstr "Autori & Utenti Estesa"
|
400 |
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
402 |
msgid "Hide username field"
|
403 |
msgstr "Nascondi il campo nome utente"
|
404 |
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:760
|
406 |
msgid "Hide name field"
|
407 |
msgstr "Nascondi il campo nome"
|
408 |
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
|
410 |
msgid "Hide email field"
|
411 |
msgstr "Nascondi il campo email"
|
412 |
|
413 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:769
|
414 |
msgid "Hide role field"
|
415 |
msgstr "Nascondi il campo ruolo"
|
416 |
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:773
|
418 |
msgid "Hide website field"
|
419 |
msgstr "Nascondi il campo sito web"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:777
|
422 |
msgid "Hide n. posts field"
|
423 |
msgstr "Nascondi il campo n. di post"
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
426 |
msgid "WordPress hidden fields"
|
427 |
msgstr "Campi nascosti di WordPress"
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:785
|
430 |
msgid "Show password"
|
431 |
msgstr "Mostra password"
|
432 |
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:789
|
434 |
msgid "Show confirmation password"
|
435 |
msgstr "Mostra conferma della password"
|
436 |
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
|
438 |
msgid "Show password strength meter"
|
439 |
msgstr "Mostra indicatore di forza della password"
|
440 |
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:797
|
442 |
msgid "Show first name"
|
443 |
msgstr "Mostra nome"
|
444 |
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:801
|
446 |
msgid "Show last name"
|
447 |
msgstr "Mostra cognome"
|
448 |
|
449 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:805
|
450 |
msgid "Show nickname"
|
451 |
msgstr "Mostra nickname"
|
452 |
|
453 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:809
|
454 |
msgid "Show website"
|
455 |
msgstr "Mostra sito web"
|
456 |
|
457 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:813
|
458 |
msgid "Show AIM"
|
459 |
msgstr "Mostra AIM"
|
460 |
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:817
|
462 |
msgid "Show Yahoo IM"
|
463 |
msgstr "Mostra Yahoo IM"
|
464 |
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:821
|
466 |
msgid "Show Jabber / Google Talk"
|
467 |
msgstr "Mostra Jabber / Google Talk"
|
468 |
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:825
|
470 |
msgid "Show Biographical Info"
|
471 |
msgstr "Mostra informazioni biografiche"
|
472 |
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
|
474 |
#, fuzzy
|
475 |
msgid "Password"
|
476 |
msgstr "Mostra password"
|
477 |
|
478 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
479 |
msgid "Password confirmation"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
483 |
#, fuzzy
|
484 |
msgid "First name"
|
485 |
msgstr "Mostra nome"
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
488 |
#, fuzzy
|
489 |
msgid "Last name"
|
490 |
msgstr "Mostra cognome"
|
491 |
|
492 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
493 |
#, fuzzy
|
494 |
msgid "Nickname"
|
495 |
msgstr "Mostra nickname"
|
496 |
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1541
|
500 |
msgid "Website"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
|
504 |
msgid "AIM"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
|
508 |
#, fuzzy
|
509 |
msgid "Yahoo IM"
|
510 |
msgstr "Mostra Yahoo IM"
|
511 |
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
|
513 |
#, fuzzy
|
514 |
msgid "Jabber / Google Talk"
|
515 |
msgstr "Mostra Jabber / Google Talk"
|
516 |
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:400
|
518 |
msgid "Biographical Info"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:750
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
523 |
msgid "Fields"
|
524 |
msgstr "Campi"
|
525 |
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
528 |
msgid "A&U Extended"
|
529 |
msgstr "A&U Estesa"
|
530 |
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
532 |
msgid "Users Extended"
|
533 |
msgstr "Lista Utenti Estesa"
|
534 |
|
546 |
msgid "File '%s' is not an image."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:431
|
550 |
msgid "Delete the file"
|
551 |
msgstr "Cancella il file"
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:432
|
554 |
msgid "Update the file"
|
555 |
msgstr "Aggiorna il file"
|
556 |
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:436
|
558 |
msgid "Update the picture"
|
559 |
msgstr "Aggiorna l'immagine"
|
560 |
|
561 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:456
|
562 |
msgid "Picture URL:"
|
563 |
msgstr "URL dell'immagine:"
|
564 |
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:684
|
566 |
+
#, php-format
|
567 |
+
msgid "%s previous value: %s new value: %s"
|
568 |
+
msgstr "%s precedente valore: %s nuovo valore: %s"
|
569 |
+
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:699
|
571 |
+
#, php-format
|
572 |
+
msgid "%s (%s) has changed one or more fields"
|
573 |
+
msgstr "%s (%s) ha cambiato uno o più campi"
|
574 |
+
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
576 |
#, php-format
|
577 |
msgid "New user registration on your site %s:"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
583 |
#, php-format
|
584 |
msgid "Username: %s"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
|
588 |
#, php-format
|
589 |
msgid "E-mail: %s"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
|
593 |
#, php-format
|
594 |
msgid "[%s] New User Registration"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
599 |
#, fuzzy, php-format
|
600 |
msgid "Password: %s"
|
601 |
msgstr "Mostra password"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
604 |
#, php-format
|
605 |
msgid "[%s] Your username and password"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:100
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:124
|
612 |
#, php-format
|
613 |
msgid "%s: %s"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:198
|
617 |
#, php-format
|
618 |
msgid ""
|
619 |
"To activate your user, please click the following link:\n"
|
630 |
"Dopo l’attivazione, si riceverà *un’altra email* con i dati di login.\n"
|
631 |
"\n"
|
632 |
|
|
|
633 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
634 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
635 |
msgid "Your account is now active!"
|
636 |
msgstr "Il tuo account è ora attivo!"
|
637 |
|
638 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
639 |
#, php-format
|
640 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
641 |
msgstr "Il sito su <a href=\"%1$s\">%2$s</a> è attivo. Ora è possibile effettuare la login al sito utilizzando il nome utente scelto che è \"%3$s\". Per favore controllare la propria casella postale su %4$s per la password e le istruzioni per il login. Se non si ricevesse alcuna email, controllare la cartella junk o spam. Se si continua a non ricevere alcuna email nella prossima ora è possibile <a href=\"%5$s\">azzerare la propria password</a>.</p>"
|
642 |
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:217
|
644 |
msgid "An error occurred during the activation"
|
645 |
msgstr "Si è verificato un errore durante l'attivazione"
|
646 |
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
648 |
msgid "Invalid activation key."
|
649 |
msgstr "Chiave di attivazione non valida."
|
650 |
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:239
|
652 |
msgid "The site is already active."
|
653 |
msgstr "Il sito è già attivo."
|
654 |
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:258
|
656 |
msgid "Could not create user"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:270
|
660 |
msgid "That username is already activated."
|
661 |
msgstr "Il nome utente è già stato attivato."
|
662 |
|
663 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:290
|
664 |
msgid "That username is currently reserved but may be available in a couple of days."
|
665 |
msgstr "Il nome utente è attualmente riservato ma potrebbe rendersi disponibile in un paio di giorni."
|
666 |
|
667 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:293
|
668 |
msgid "username and email used"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:303
|
672 |
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."
|
673 |
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."
|
674 |
|
693 |
msgstr "Cambia ordine"
|
694 |
|
695 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
697 |
msgid "Min length"
|
698 |
msgstr "Lunghezza Min"
|
699 |
|
700 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1045
|
702 |
msgid "Exact length"
|
703 |
msgstr "Lunghezza Esatta"
|
704 |
|
705 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
706 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
|
707 |
msgid "Max length"
|
708 |
msgstr "Lunghezza Max"
|
709 |
|
711 |
msgid "Exact or Max length"
|
712 |
msgstr "Lunghezza Max o Esatta"
|
713 |
|
714 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
715 |
msgid "changed to"
|
716 |
msgstr "cambiati a"
|
717 |
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
719 |
msgid "You cannot give an order that misses some numbers"
|
720 |
msgstr "Non puoi dare un ordine dove mancano alcuni numeri"
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
724 |
msgid "Nothing selected"
|
725 |
msgstr "Nessun campo selezionato"
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
728 |
msgid "Field(s)"
|
729 |
msgstr "Campo(i)"
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
732 |
msgid "deleted correctly"
|
733 |
msgstr "cancellato(i) correttamente"
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:236
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1036
|
737 |
msgid "Min size"
|
738 |
msgstr "Dimensione Min"
|
739 |
|
740 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:237
|
741 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1037
|
742 |
msgid "Exact size"
|
743 |
msgstr "Dimensione Esatta"
|
744 |
|
745 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
|
746 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
|
747 |
msgid "Max size"
|
748 |
msgstr "Dimensione Max"
|
749 |
|
750 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
751 |
msgid "Exact or Max size"
|
752 |
msgstr "Dimensione Esatta o Max"
|
753 |
|
754 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
755 |
msgid "Name not specified"
|
756 |
msgstr "Nome non specificato"
|
757 |
|
758 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
759 |
msgid "Name cannot contains spaces"
|
760 |
msgstr "Il Nome non può contenere spazi"
|
761 |
|
762 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:300
|
763 |
msgid "Label not specified"
|
764 |
msgstr "Etichetta non specificata"
|
765 |
|
766 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:305
|
767 |
msgid "not selected (with this type is necessary)"
|
768 |
msgstr "non selezionata (con questo tipo è necessario)"
|
769 |
|
770 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
771 |
msgid "If you select"
|
772 |
msgstr "Se selezioni"
|
773 |
|
774 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
775 |
msgid "you cannot select Min or Max"
|
776 |
msgstr "non puoi selezionare Min o Max"
|
777 |
|
778 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:321
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
781 |
msgid "should be in the range of"
|
782 |
msgstr "deve essere compreso tra"
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:336
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
786 |
msgid "Equal TO not specified"
|
787 |
msgstr "Uguale A non specificato"
|
788 |
|
789 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:341
|
790 |
msgid "With checkbox type Equal TO can only be"
|
791 |
msgstr "Con il tipo checkbox Uguale A può essere solo"
|
792 |
|
793 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:344
|
794 |
msgid "With radio type Equal TO can only be"
|
795 |
msgstr "Con il tipo radio Uguale A può essere solo"
|
796 |
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:360
|
798 |
msgid "With checkbox type Value can only be"
|
799 |
msgstr "Con il tipo checkbox Valore può essere solo"
|
800 |
|
801 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:363
|
802 |
msgid "With radio type Value can only be"
|
803 |
msgstr "Con il tipo radio Valore può essere solo"
|
804 |
|
805 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:420
|
806 |
msgid "Field inserted correctly"
|
807 |
msgstr "Campo inserito correttamente"
|
808 |
|
809 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
810 |
msgid "Field #"
|
811 |
msgstr "Campo #"
|
812 |
|
813 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
814 |
msgid "updated correctly"
|
815 |
msgstr "aggiornato correttamente"
|
816 |
|
817 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:425
|
818 |
msgid "Name inserted is just in the database, change to another one"
|
819 |
msgstr "Il Nome inserito è già nel database, cambialo con un altro"
|
820 |
|
821 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
|
822 |
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."
|
823 |
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."
|
824 |
|
825 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
826 |
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'"
|
827 |
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'"
|
828 |
|
829 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
830 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
831 |
msgstr "Con <strong>drop-down</strong>: devi aggiungere tutte le opzioni nell'etichetta per esempio: etichetta/oggetto1,oggetto2,oggetto3"
|
832 |
|
833 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
834 |
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"
|
835 |
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"
|
836 |
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
838 |
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)"
|
839 |
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)"
|
840 |
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
|
842 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
843 |
msgstr "Con <strong>registration-date</strong>: <em>uguale A</em> significa il formato della data e dell'ora"
|
844 |
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
846 |
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"
|
847 |
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"
|
848 |
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
850 |
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"
|
851 |
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"
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1069
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1525
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1526
|
859 |
msgid "Name"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1072
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
868 |
msgid "Value"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1075
|
875 |
msgid "Type"
|
876 |
msgstr "Tipo"
|
877 |
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
879 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
880 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
882 |
msgid "Label"
|
883 |
msgstr "Etichetta"
|
884 |
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:661
|
887 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
888 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1100
|
889 |
msgid "Description"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
894 |
msgid "Rules"
|
895 |
msgstr "Regole"
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
899 |
msgid "Actions"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
903 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
904 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
|
905 |
msgid "Fieldset"
|
906 |
msgstr "Raggruppamento"
|
907 |
|
908 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:673
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
910 |
msgid "Can be empty"
|
911 |
msgstr "Può essere vuoto"
|
912 |
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
915 |
msgid "Check for E-mail syntax"
|
916 |
msgstr "Controlla la sintassi dell'E-mail"
|
917 |
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
920 |
msgid "Can be modified"
|
921 |
msgstr "Può essere modificato"
|
922 |
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
925 |
msgid "Can be modified only if empty"
|
926 |
msgstr "Può essere modificato solo se vuoto"
|
927 |
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
930 |
msgid "Can be modified only by admin"
|
931 |
msgstr "Può essere modificato solo dall'admin"
|
932 |
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:680
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1121
|
935 |
msgid "Can be modified only by admin or if empty"
|
936 |
msgstr "Può essere modificato solo dall'admin o se vuoto"
|
937 |
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
940 |
msgid "Cannot be modified"
|
941 |
msgstr "Non può essere modificato"
|
942 |
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
945 |
msgid "Should be equal TO"
|
946 |
msgstr "Deve essere uguale A"
|
947 |
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1129
|
950 |
msgid "Case sensitive"
|
951 |
msgstr "Distinguere le maiuscole"
|
952 |
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
955 |
msgid "Regular Expression"
|
956 |
msgstr "Espressione Regolare"
|
957 |
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:697
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
960 |
msgid "Show the field in the registration"
|
961 |
msgstr "Mostra il campo nella registrazione"
|
962 |
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
965 |
msgid "Show the field in User's profile"
|
966 |
msgstr "Mostra il campo nel profilo dell'utente"
|
967 |
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:703
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
970 |
msgid "Show the field in A&U Extended menu"
|
971 |
msgstr "Mostra il campo nel menù A&U esteso"
|
972 |
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:706
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1150
|
975 |
msgid "Show the field in the search engine"
|
976 |
msgstr "Mostra il campo nel motore di ricerca"
|
977 |
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
980 |
msgid "Show the field in the blog"
|
981 |
msgstr "Mostra il campo nel blog"
|
982 |
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:712
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1156
|
985 |
msgid "Show the field if the role is at least:"
|
986 |
msgstr "Mostra il campo se il ruolo è almeno:"
|
987 |
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
990 |
msgid "Anonymous"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:724
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1171
|
995 |
+
msgid "Send an email to the admin if the user changes its value"
|
996 |
+
msgstr "Invia una email all'amministratore quando l'utente cambia il contenuto"
|
997 |
+
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
999 |
msgid "Clear"
|
1000 |
msgstr "Pulisci"
|
1001 |
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:786
|
1003 |
msgid "Invert selection"
|
1004 |
msgstr "Inverti selezione"
|
1005 |
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
1007 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1008 |
msgstr "Sei sicuro di volere cancellare il(i) campo(i) e tutti i relativi dati inseriti dagli utenti?"
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:793
|
1011 |
msgid "WordPress Fields"
|
1012 |
msgstr "Campi WordPress"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:806
|
1015 |
msgid "None!"
|
1016 |
msgstr "Nessuno!"
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:821
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
1020 |
msgid "Order"
|
1021 |
msgstr "Ordine"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1024 |
msgid "Reset"
|
1025 |
msgstr "Reset"
|
1026 |
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1265
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1029 |
msgid "select"
|
1030 |
msgstr "seleziona"
|
1031 |
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1033 |
#, php-format
|
1034 |
msgid "Users Matching \"%s\""
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1402
|
1038 |
#, fuzzy
|
1039 |
msgid "Users Extended List"
|
1040 |
msgstr "Lista Autori & Utenti Estesa"
|
1041 |
|
1042 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1404
|
1043 |
msgid "Authors & Users Extended List"
|
1044 |
msgstr "Lista Autori & Utenti Estesa"
|
1045 |
|
1046 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
1047 |
#, php-format
|
1048 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
|
1052 |
msgid "Search Users"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
1056 |
msgid "« Back to All Users"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
1060 |
msgid "Users per page"
|
1061 |
msgstr "Utenti per pagina"
|
1062 |
|
1063 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
|
1064 |
msgid "Apply"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1069 |
msgid "Username"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1530
|
1073 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1531
|
1074 |
msgid "E-mail"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1536
|
1079 |
#, fuzzy
|
1080 |
msgid "Role"
|
1081 |
msgstr "Regole"
|
1082 |
|
1083 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
1084 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1546
|
1085 |
msgid "Posts"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1682
|
1089 |
msgid "View posts by this author"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1713
|
1093 |
#, php-format
|
1094 |
msgid "e-mail: %s"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1834
|
1098 |
+
#, fuzzy
|
1099 |
+
msgid "Change"
|
1100 |
+
msgstr "Cambia ordine"
|
1101 |
+
|
1102 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1859
|
1103 |
msgid "Update selected users"
|
1104 |
msgstr "Aggiorna gli utenti selezionati"
|
1105 |
|
1106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1880
|
1107 |
#, fuzzy
|
1108 |
msgid "Update"
|
1109 |
msgstr "Aggiorna campo"
|
1110 |
|
1111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1898
|
1112 |
+
msgid "OK"
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1899
|
1116 |
+
msgid "Cancel"
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1120 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1121 |
msgstr "<strong>Nota:</strong> questo sito ti permette di personalizzare la tua password; dopo la registrazione riceverai una e-mail con un'altra password, non farci caso!"
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <pik256@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,512 +16,516 @@ 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:403
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
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:
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
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/cimy_uef_profile.php:299
|
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:305
|
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 |
msgid "Strength indicator"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
115 |
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 ! \\\" ? $ % ^ & )."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
119 |
#, fuzzy
|
120 |
msgid "Change image"
|
121 |
msgstr "Zmień kolejność"
|
122 |
|
123 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
124 |
msgid "Insert the code:"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:
|
128 |
msgid "no fieldset"
|
129 |
msgstr "brak grup pól"
|
130 |
|
131 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
132 |
msgid "WordPress Fields table emptied"
|
133 |
msgstr "Pola wordpressa zostały wyczyszczone"
|
134 |
|
135 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
136 |
msgid "WordPress Fields table deleted"
|
137 |
msgstr "Tabele wordpressa zostały usunięte"
|
138 |
|
139 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
140 |
msgid "Extra Fields table emptied"
|
141 |
msgstr "Pola dodatkowe zostały wyczyszczone"
|
142 |
|
143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
144 |
msgid "Extra Fields table deleted"
|
145 |
msgstr "Dodatkowe tabele zostały usunięte"
|
146 |
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
148 |
msgid "Users Data table emptied"
|
149 |
msgstr "Dane użytkowników zostały wyczyszczone"
|
150 |
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
152 |
msgid "Users Data table deleted"
|
153 |
msgstr "Tabela użytkowników została usunięta"
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
156 |
msgid "Options set to default values"
|
157 |
msgstr "Opcje zostały zmienione na domyślne"
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
160 |
msgid "Options deleted"
|
161 |
msgstr "Opcje zostały wykasowane"
|
162 |
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
164 |
msgid "Options changed"
|
165 |
msgstr "Opcje zostały zmienione"
|
166 |
|
167 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
168 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
169 |
msgstr "Ta operacja stworzy/zaktualizuje wszystkie brakujące tabele/opcje, kontynuować?"
|
170 |
|
171 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
174 |
msgid "Options"
|
175 |
msgstr "Opcje"
|
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_admin.php:
|
179 |
msgid "Add a new Field"
|
180 |
msgstr "Dodaj nowe pole"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
185 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
186 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
187 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
188 |
msgid "Extra Fields"
|
189 |
msgstr "Pola dodatkowe"
|
190 |
|
191 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
192 |
msgid "Support the Cimy Project"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
196 |
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!"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
200 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
201 |
msgid "SUCCESSFUL"
|
202 |
msgstr "PRAWIDŁOWO"
|
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_options.php:
|
206 |
msgid "Save Changes"
|
207 |
msgstr "Zapisz zmiany"
|
208 |
|
209 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
210 |
msgid "General"
|
211 |
msgstr "Ogólne"
|
212 |
|
213 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
214 |
msgid "installed is"
|
215 |
msgstr "jest zainstalowany"
|
216 |
|
217 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
218 |
msgid "OPTIONS DELETED!"
|
219 |
msgstr "OPCJE USUNIĘTE!"
|
220 |
|
221 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
222 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
223 |
msgid "Fix the problem"
|
224 |
msgstr "Usuń problem"
|
225 |
|
226 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
227 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
228 |
msgstr "Wersja niekompatybilna! Nie deaktywowałeś a następnie nie reaktywowałeś wtyczki po aktualizacji wordpressa! To może spowodować problemy..."
|
229 |
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
231 |
msgid "Picture/Avatar upload"
|
232 |
msgstr "Wgrywanie obrazka/avatara"
|
233 |
|
234 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
235 |
msgid "is created and writable"
|
236 |
msgstr "jest utworzony i zapisywalny"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
239 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
240 |
msgstr "NIE był wgrywany lub serwer nie ma możliwości zapisywania do niego"
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
243 |
#, fuzzy
|
244 |
msgid "Show all fields in the welcome email"
|
245 |
msgstr "Pokaż pole na blogu"
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
248 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
252 |
msgid "Enable email confirmation"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
256 |
msgid "user that registers should confirm its email address via a link click"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
260 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
264 |
msgid "Redirect to the source"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
268 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
272 |
msgid "No captcha"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
276 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
280 |
msgid "Public KEY"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
284 |
msgid "Private KEY"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
288 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
292 |
msgid "This captcha is probably weaker, but is easier for users"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
296 |
#, php-format
|
297 |
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>"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
301 |
msgid "Change login/registration page logo"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
306 |
msgid "Delete the picture"
|
307 |
msgstr "Usuń obrazek"
|
308 |
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
310 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
314 |
msgid "Database"
|
315 |
msgstr "Baza danych"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
319 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
320 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
321 |
msgid "select action"
|
322 |
msgstr "wybór czynności"
|
323 |
|
324 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
325 |
msgid "Default values"
|
326 |
msgstr "Wartości domyślne"
|
327 |
|
328 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
331 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
332 |
msgid "Delete"
|
333 |
msgstr "Usuń"
|
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 "NOT PRESENT"
|
340 |
msgstr "NIE OBECNA"
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
343 |
msgid "WordPress Fields table"
|
344 |
msgstr "Tabela pól Wordpressa"
|
345 |
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
347 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
348 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
349 |
msgid "Empty"
|
350 |
msgstr "Opróżnij"
|
351 |
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
353 |
msgid "Extra Fields table"
|
354 |
msgstr "Tabela pól dodatkowych"
|
355 |
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
357 |
msgid "Users Data table"
|
358 |
msgstr "Tabela danych użytkowników"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
361 |
msgid "all data inserted by users in all and only extra fields"
|
362 |
msgstr "wszystkie dane wstawione przez użytkowników do pól dodatkowych"
|
363 |
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
365 |
msgid "Force tables creation"
|
366 |
msgstr "Wymuś utworzenie tabel"
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
369 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
370 |
msgstr "równoważne deaktywacji i ponownej reaktywacji wtyczki; żadne inne operacje nie zostaną wykonane"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
373 |
msgid "User Profile"
|
374 |
msgstr "Profil użytkownika"
|
375 |
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
377 |
msgid "Extra Fields section title"
|
378 |
msgstr "Tytuł sekcji pól dodatkowych"
|
379 |
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
381 |
msgid "Fieldset's titles, separates with comma"
|
382 |
msgstr "Tytuły grup pól, rozdziel przecinkami"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
385 |
msgid "example: title1,title2,title3"
|
386 |
msgstr "Przykład: tytuł1, tytuł2, tytuł3"
|
387 |
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
389 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
390 |
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"
|
391 |
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
395 |
msgid "Authors & Users Extended"
|
396 |
msgstr "Rozszerzenia kont"
|
397 |
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
399 |
msgid "Hide username field"
|
400 |
msgstr "Ukryj pole z nazwą użytkownika"
|
401 |
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
403 |
msgid "Hide name field"
|
404 |
msgstr "Ukryj nazwę"
|
405 |
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
407 |
msgid "Hide email field"
|
408 |
msgstr "Ukryj adres email"
|
409 |
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
411 |
msgid "Hide role field"
|
412 |
msgstr "Ukryj rolę"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
415 |
msgid "Hide website field"
|
416 |
msgstr "Ukryj pole witryna"
|
417 |
|
418 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
419 |
msgid "Hide n. posts field"
|
420 |
msgstr "Ukryj liczbę wpisów"
|
421 |
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
423 |
msgid "WordPress hidden fields"
|
424 |
msgstr "Ukryte pola Worpdressa"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
427 |
msgid "Show password"
|
428 |
msgstr "Pokaż hasło"
|
429 |
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
431 |
#, fuzzy
|
432 |
msgid "Show confirmation password"
|
433 |
msgstr "Pokaż hasło"
|
434 |
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
436 |
#, fuzzy
|
437 |
msgid "Show password strength meter"
|
438 |
msgstr "Pokaż hasło"
|
439 |
|
440 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
441 |
msgid "Show first name"
|
442 |
msgstr "Pokaż imię"
|
443 |
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
445 |
msgid "Show last name"
|
446 |
msgstr "Pokaż nazwisko"
|
447 |
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
449 |
msgid "Show nickname"
|
450 |
msgstr "Pokaż pseudonim"
|
451 |
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
453 |
msgid "Show website"
|
454 |
msgstr "pokaż witrynę"
|
455 |
|
456 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
457 |
msgid "Show AIM"
|
458 |
msgstr "Pokaż \"AIM\""
|
459 |
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
461 |
msgid "Show Yahoo IM"
|
462 |
msgstr "Pokaż \"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 "Pokaż \"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 "Pokaż informacje dodatkowe"
|
471 |
|
472 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
473 |
msgid "Password"
|
474 |
msgstr "Hasło"
|
475 |
|
476 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
477 |
msgid "Password confirmation"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
481 |
msgid "First name"
|
482 |
msgstr "Imię"
|
483 |
|
484 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
485 |
msgid "Last name"
|
486 |
msgstr "Nazwisko"
|
487 |
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
489 |
msgid "Nickname"
|
490 |
msgstr "Pseudonim"
|
491 |
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
494 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
495 |
msgid "Website"
|
496 |
msgstr "Strona internetowa"
|
497 |
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
499 |
msgid "AIM"
|
500 |
msgstr "AIM"
|
501 |
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
503 |
msgid "Yahoo IM"
|
504 |
msgstr "Yahoo IM"
|
505 |
|
506 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
507 |
msgid "Jabber / Google Talk"
|
508 |
msgstr "Jabber / Google Talk"
|
509 |
|
510 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
511 |
msgid "Biographical Info"
|
512 |
msgstr "Biografia"
|
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 |
msgid "Fields"
|
517 |
msgstr "Pola"
|
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_user_extra_fields.php:
|
521 |
msgid "A&U Extended"
|
522 |
msgstr "Rozszerzenia"
|
523 |
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
525 |
msgid "Users Extended"
|
526 |
msgstr "Lista rozszerzona"
|
527 |
|
@@ -539,64 +543,74 @@ msgstr "Biblioteka GD nie jest zainstalowana."
|
|
539 |
msgid "File '%s' is not an image."
|
540 |
msgstr "Plik '%s' musi być obrazkiem"
|
541 |
|
542 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
543 |
msgid "Delete the file"
|
544 |
msgstr "Usuń plik"
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
547 |
msgid "Update the file"
|
548 |
msgstr "Zaktualizuj plik"
|
549 |
|
550 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
551 |
msgid "Update the picture"
|
552 |
msgstr "Wgraj obrazek"
|
553 |
|
554 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
555 |
msgid "Picture URL:"
|
556 |
msgstr "URL obrazka:"
|
557 |
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
559 |
#, php-format
|
560 |
msgid "New user registration on your site %s:"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
566 |
#, fuzzy, php-format
|
567 |
msgid "Username: %s"
|
568 |
msgstr "Nazwa użytkownika"
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
571 |
#, fuzzy, php-format
|
572 |
msgid "E-mail: %s"
|
573 |
msgstr "e-mail: %s"
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
576 |
#, php-format
|
577 |
msgid "[%s] New User Registration"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
581 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
582 |
#, fuzzy, php-format
|
583 |
msgid "Password: %s"
|
584 |
msgstr "Hasło"
|
585 |
|
586 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
587 |
#, php-format
|
588 |
msgid "[%s] Your username and password"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
595 |
#, php-format
|
596 |
msgid "%s: %s"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
600 |
#, php-format
|
601 |
msgid ""
|
602 |
"To activate your user, please click the following link:\n"
|
@@ -607,45 +621,45 @@ msgid ""
|
|
607 |
"\n"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
611 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
|
|
612 |
msgid "Your account is now active!"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
616 |
#, php-format
|
617 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
621 |
msgid "An error occurred during the activation"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
625 |
msgid "Invalid activation key."
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
629 |
msgid "The site is already active."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
633 |
msgid "Could not create user"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
637 |
msgid "That username is already activated."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
641 |
msgid "That username is currently reserved but may be available in a couple of days."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
645 |
msgid "username and email used"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
649 |
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."
|
650 |
msgstr ""
|
651 |
|
@@ -670,17 +684,17 @@ msgid "Change order"
|
|
670 |
msgstr "Zmień kolejność"
|
671 |
|
672 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
673 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
674 |
msgid "Min length"
|
675 |
msgstr "Długość min"
|
676 |
|
677 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
678 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
679 |
msgid "Exact length"
|
680 |
msgstr "Długość dokładna"
|
681 |
|
682 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
683 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
684 |
msgid "Max length"
|
685 |
msgstr "Długość max"
|
686 |
|
@@ -688,390 +702,410 @@ msgstr "Długość max"
|
|
688 |
msgid "Exact or Max length"
|
689 |
msgstr "Dokładna lub maksymalna długość"
|
690 |
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
692 |
msgid "changed to"
|
693 |
msgstr "zmieniona na"
|
694 |
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
696 |
msgid "You cannot give an order that misses some numbers"
|
697 |
msgstr "Nie możesz podać kolejności która pomija część liczb"
|
698 |
|
699 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
701 |
msgid "Nothing selected"
|
702 |
msgstr "Nie wybrano niczego"
|
703 |
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
705 |
msgid "Field(s)"
|
706 |
msgstr "Pole(a)"
|
707 |
|
708 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
709 |
msgid "deleted correctly"
|
710 |
msgstr "wykasowano prawidłowo"
|
711 |
|
712 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
713 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
714 |
msgid "Min size"
|
715 |
msgstr "Rozmiar min"
|
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 "Exact size"
|
720 |
msgstr "Rozmiar dokładny"
|
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 "Max size"
|
725 |
msgstr "Rozmiar max"
|
726 |
|
727 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
728 |
msgid "Exact or Max size"
|
729 |
msgstr "Rozmiar dokładny lub max"
|
730 |
|
731 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
732 |
msgid "Name not specified"
|
733 |
msgstr "Nazwa nie określona"
|
734 |
|
735 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
736 |
msgid "Name cannot contains spaces"
|
737 |
msgstr "Nazwa nie może zawierać spacji"
|
738 |
|
739 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
740 |
msgid "Label not specified"
|
741 |
msgstr "Etykieta nie określona"
|
742 |
|
743 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
744 |
msgid "not selected (with this type is necessary)"
|
745 |
msgstr "nie wybrano (niezbędne dla tego typu)"
|
746 |
|
747 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
748 |
msgid "If you select"
|
749 |
msgstr "Jeżeli wybierzesz"
|
750 |
|
751 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
752 |
msgid "you cannot select Min or Max"
|
753 |
msgstr "Nie możesz wybrać Min lub Max"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
758 |
msgid "should be in the range of"
|
759 |
msgstr "powinien się mieścić w zakresie"
|
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 "Equal TO not specified"
|
764 |
msgstr "równość (=) nie określona"
|
765 |
|
766 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
767 |
msgid "With checkbox type Equal TO can only be"
|
768 |
msgstr "Dla <strong>checkbox</strong> może być tylko równość"
|
769 |
|
770 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
771 |
msgid "With radio type Equal TO can only be"
|
772 |
msgstr "Dla <strong>radio</strong> może być tylko równość"
|
773 |
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
775 |
msgid "With checkbox type Value can only be"
|
776 |
msgstr "Dla <strong>checkbox</strong> wartość może być tylko"
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
779 |
msgid "With radio type Value can only be"
|
780 |
msgstr "Dla <strong>radio</strong> wartość może być tylko"
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
783 |
msgid "Field inserted correctly"
|
784 |
msgstr "Pole wstawione poprawnie"
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
787 |
msgid "Field #"
|
788 |
msgstr "Pole #"
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
791 |
msgid "updated correctly"
|
792 |
msgstr "zaktualizowane prawidłowo"
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
msgid "Name inserted is just in the database, change to another one"
|
796 |
msgstr "Podana nazwa już jest w bazie danych, zmień na inną"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
799 |
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."
|
800 |
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."
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
803 |
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'"
|
804 |
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."
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
808 |
msgstr "Dla <strong>listy (drop-down)</strong>: musisz podać wszystkie opcje w etykiecie. Np.: etykieta/wartość1,wartość2,wartość3. "
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
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"
|
812 |
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."
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
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)"
|
816 |
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)."
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
819 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
820 |
msgstr "Dla <strong>daty rejestracji</strong>: <em>równe</em> oznacza datę i czas rejestracji."
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
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"
|
824 |
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."
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
827 |
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"
|
828 |
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"
|
829 |
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
833 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
msgid "Name"
|
837 |
msgstr "Nazwa"
|
838 |
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
845 |
msgid "Value"
|
846 |
msgstr "Wartość"
|
847 |
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
850 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
852 |
msgid "Type"
|
853 |
msgstr "Typ"
|
854 |
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
msgid "Label"
|
860 |
msgstr "Etykieta"
|
861 |
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
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 |
msgid "Description"
|
867 |
msgstr "Opis"
|
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 |
msgid "Rules"
|
872 |
msgstr "Reguły"
|
873 |
|
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 |
msgid "Actions"
|
877 |
msgstr "Działania"
|
878 |
|
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 "Fieldset"
|
882 |
msgstr "Grupa pól"
|
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 |
msgid "Can be empty"
|
887 |
msgstr "Może być puste"
|
888 |
|
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 "Check for E-mail syntax"
|
892 |
msgstr "Sprawdzaj poprawność adresu email"
|
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 |
msgid "Can be modified"
|
897 |
msgstr "Może być zmieniane"
|
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 |
msgid "Can be modified only if empty"
|
902 |
msgstr "Może być zmienione tylko jeśli jest puste"
|
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 "Can be modified only by admin"
|
907 |
msgstr "Może być modyfikowane tylko przez administratora"
|
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 "Can be modified only by admin or if empty"
|
912 |
msgstr "Może być modyfikowane tylko przez administratora jeśli jest puste"
|
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 |
msgid "Cannot be modified"
|
917 |
msgstr "Nie może być zmieniane"
|
918 |
|
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 |
msgid "Should be equal TO"
|
922 |
msgstr "Powinno być równe"
|
923 |
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
926 |
msgid "Case sensitive"
|
927 |
msgstr "Rozróżnia wielkość liter"
|
928 |
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
931 |
msgid "Regular Expression"
|
932 |
msgstr "Wyrażenie regularne"
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
msgid "Show the field in the registration"
|
937 |
msgstr "Pokaż pole podczas rejestracji"
|
938 |
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
941 |
msgid "Show the field in User's profile"
|
942 |
msgstr "Pokaż pole w profilu użytkownika"
|
943 |
|
944 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
946 |
msgid "Show the field in A&U Extended menu"
|
947 |
msgstr "Pokaż pole na rozszerzonej liście użytkowników"
|
948 |
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
950 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
951 |
msgid "Show the field in the search engine"
|
952 |
msgstr "Pokaż pole w profilu użytkownika"
|
953 |
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
msgid "Show the field in the blog"
|
957 |
msgstr "Pokaż pole na blogu"
|
958 |
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
961 |
msgid "Show the field if the role is at least:"
|
962 |
msgstr "Pokaż pole jeżeli rolą użytkownika jest przynajmniej:"
|
963 |
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
966 |
msgid "Anonymous"
|
967 |
msgstr "Anonim"
|
968 |
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
970 |
msgid "Clear"
|
971 |
msgstr "Wyczyść"
|
972 |
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
974 |
msgid "Invert selection"
|
975 |
msgstr "Odwróć wybór"
|
976 |
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
978 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
979 |
msgstr "Czy na pewno chcesz wykasować pola i wszystkie dane wprowadzone w nie przez użytkowników"
|
980 |
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
982 |
msgid "WordPress Fields"
|
983 |
msgstr "Pola Wordpressa"
|
984 |
|
985 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
986 |
msgid "None!"
|
987 |
msgstr "Brak!"
|
988 |
|
989 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
991 |
msgid "Order"
|
992 |
msgstr "Kolejność"
|
993 |
|
994 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
995 |
msgid "Reset"
|
996 |
msgstr "Wyczyść"
|
997 |
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
999 |
msgid "select"
|
1000 |
msgstr "- Wybierz -"
|
1001 |
|
1002 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1003 |
#, php-format
|
1004 |
msgid "Users Matching \"%s\""
|
1005 |
msgstr "Użytkownicy pasujący do wzorca \"%s\""
|
1006 |
|
1007 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1008 |
msgid "Users Extended List"
|
1009 |
msgstr "Rozszerzona lista użytkowników"
|
1010 |
|
1011 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1012 |
msgid "Authors & Users Extended List"
|
1013 |
msgstr "Rozszerzona lista użytkowników i autorów"
|
1014 |
|
1015 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1016 |
#, php-format
|
1017 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1021 |
msgid "Search Users"
|
1022 |
msgstr "Szukaj użytkowników"
|
1023 |
|
1024 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1025 |
msgid "« Back to All Users"
|
1026 |
msgstr "« Powrót do wszystkich"
|
1027 |
|
1028 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1029 |
msgid "Users per page"
|
1030 |
msgstr "Użytkowników na stronie"
|
1031 |
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1033 |
msgid "Apply"
|
1034 |
msgstr "Zastosuj"
|
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 "Username"
|
1039 |
msgstr "Nazwa użytkownika"
|
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 |
msgid "E-mail"
|
1044 |
msgstr "E-mail"
|
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 "Role"
|
1049 |
msgstr "Rola"
|
1050 |
|
1051 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1052 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1053 |
msgid "Posts"
|
1054 |
msgstr "Wpisy"
|
1055 |
|
1056 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1057 |
msgid "View posts by this author"
|
1058 |
msgstr "Zobacz wpisy tego autora"
|
1059 |
|
1060 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1061 |
#, php-format
|
1062 |
msgid "e-mail: %s"
|
1063 |
msgstr "e-mail: %s"
|
1064 |
|
1065 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1066 |
#, fuzzy
|
1067 |
msgid "Update selected users"
|
1068 |
msgstr "Usuń wybrane pola"
|
1069 |
|
1070 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1071 |
#, fuzzy
|
1072 |
msgid "Update"
|
1073 |
msgstr "Zaktualizuj pole"
|
1074 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1075 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1076 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1077 |
msgstr "<strong>Uwaga:</strong> ta witryna umożliwi ci ustawienie własnego hasła. Po rejestracji otrzymasz email z innym hasłem, zignoruj to pole."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-30 14:08+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-01-30 14:08+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:407
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:446
|
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:476
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1218
|
34 |
msgid "ERROR"
|
35 |
msgstr "BŁĄD"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
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:425
|
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:445
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
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:451
|
55 |
msgid "YES"
|
56 |
msgstr "TAK"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
59 |
msgid "NO"
|
60 |
msgstr "NIE"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:456
|
63 |
msgid "should be"
|
64 |
msgstr "powinien być"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
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:476
|
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:482
|
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:494
|
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:500
|
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:512
|
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:518
|
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:531
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
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:836
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:371
|
106 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
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:916
|
111 |
msgid "Strength indicator"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
115 |
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 ! \\\" ? $ % ^ & )."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:954
|
119 |
#, fuzzy
|
120 |
msgid "Change image"
|
121 |
msgstr "Zmień kolejność"
|
122 |
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
|
124 |
msgid "Insert the code:"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
128 |
msgid "no fieldset"
|
129 |
msgstr "brak grup pól"
|
130 |
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:432
|
132 |
+
msgid "All"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:43
|
136 |
msgid "WordPress Fields table emptied"
|
137 |
msgstr "Pola wordpressa zostały wyczyszczone"
|
138 |
|
139 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
140 |
msgid "WordPress Fields table deleted"
|
141 |
msgstr "Tabele wordpressa zostały usunięte"
|
142 |
|
143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
144 |
msgid "Extra Fields table emptied"
|
145 |
msgstr "Pola dodatkowe zostały wyczyszczone"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
148 |
msgid "Extra Fields table deleted"
|
149 |
msgstr "Dodatkowe tabele zostały usunięte"
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
152 |
msgid "Users Data table emptied"
|
153 |
msgstr "Dane użytkowników zostały wyczyszczone"
|
154 |
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:76
|
156 |
msgid "Users Data table deleted"
|
157 |
msgstr "Tabela użytkowników została usunięta"
|
158 |
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:87
|
160 |
msgid "Options set to default values"
|
161 |
msgstr "Opcje zostały zmienione na domyślne"
|
162 |
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:93
|
164 |
msgid "Options deleted"
|
165 |
msgstr "Opcje zostały wykasowane"
|
166 |
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
|
168 |
msgid "Options changed"
|
169 |
msgstr "Opcje zostały zmienione"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
172 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
173 |
msgstr "Ta operacja stworzy/zaktualizuje wszystkie brakujące tabele/opcje, kontynuować?"
|
174 |
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
176 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
|
177 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:749
|
178 |
msgid "Options"
|
179 |
msgstr "Opcje"
|
180 |
|
181 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
182 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:440
|
183 |
msgid "Add a new Field"
|
184 |
msgstr "Dodaj nowe pole"
|
185 |
|
186 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:795
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
190 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
191 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
192 |
msgid "Extra Fields"
|
193 |
msgstr "Pola dodatkowe"
|
194 |
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
196 |
msgid "Support the Cimy Project"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
200 |
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!"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
204 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1236
|
205 |
msgid "SUCCESSFUL"
|
206 |
msgstr "PRAWIDŁOWO"
|
207 |
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:830
|
210 |
msgid "Save Changes"
|
211 |
msgstr "Zapisz zmiany"
|
212 |
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
214 |
msgid "General"
|
215 |
msgstr "Ogólne"
|
216 |
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
218 |
msgid "installed is"
|
219 |
msgstr "jest zainstalowany"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
222 |
msgid "OPTIONS DELETED!"
|
223 |
msgstr "OPCJE USUNIĘTE!"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
227 |
msgid "Fix the problem"
|
228 |
msgstr "Usuń problem"
|
229 |
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
231 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
232 |
msgstr "Wersja niekompatybilna! Nie deaktywowałeś a następnie nie reaktywowałeś wtyczki po aktualizacji wordpressa! To może spowodować problemy..."
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
235 |
msgid "Picture/Avatar upload"
|
236 |
msgstr "Wgrywanie obrazka/avatara"
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
239 |
msgid "is created and writable"
|
240 |
msgstr "jest utworzony i zapisywalny"
|
241 |
|
242 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
243 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
244 |
msgstr "NIE był wgrywany lub serwer nie ma możliwości zapisywania do niego"
|
245 |
|
246 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
247 |
#, fuzzy
|
248 |
msgid "Show all fields in the welcome email"
|
249 |
msgstr "Pokaż pole na blogu"
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
252 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:576
|
256 |
msgid "Enable email confirmation"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
260 |
msgid "user that registers should confirm its email address via a link click"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
264 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
268 |
msgid "Redirect to the source"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
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 ""
|
274 |
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:601
|
276 |
msgid "No captcha"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
280 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
284 |
msgid "Public KEY"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
288 |
msgid "Private KEY"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
292 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:628
|
296 |
msgid "This captcha is probably weaker, but is easier for users"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:632
|
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 ""
|
303 |
|
304 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
305 |
msgid "Change login/registration page logo"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
309 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:435
|
310 |
msgid "Delete the picture"
|
311 |
msgstr "Usuń obrazek"
|
312 |
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
|
314 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
318 |
msgid "Database"
|
319 |
msgstr "Baza danych"
|
320 |
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
|
325 |
msgid "select action"
|
326 |
msgstr "wybór czynności"
|
327 |
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
329 |
msgid "Default values"
|
330 |
msgstr "Wartości domyślne"
|
331 |
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:718
|
336 |
msgid "Delete"
|
337 |
msgstr "Usuń"
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:687
|
341 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
|
343 |
msgid "NOT PRESENT"
|
344 |
msgstr "NIE OBECNA"
|
345 |
|
346 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
347 |
msgid "WordPress Fields table"
|
348 |
msgstr "Tabela pól Wordpressa"
|
349 |
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:700
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
353 |
msgid "Empty"
|
354 |
msgstr "Opróżnij"
|
355 |
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
357 |
msgid "Extra Fields table"
|
358 |
msgstr "Tabela pól dodatkowych"
|
359 |
|
360 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
|
361 |
msgid "Users Data table"
|
362 |
msgstr "Tabela danych użytkowników"
|
363 |
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
365 |
msgid "all data inserted by users in all and only extra fields"
|
366 |
msgstr "wszystkie dane wstawione przez użytkowników do pól dodatkowych"
|
367 |
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
369 |
msgid "Force tables creation"
|
370 |
msgstr "Wymuś utworzenie tabel"
|
371 |
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
373 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
374 |
msgstr "równoważne deaktywacji i ponownej reaktywacji wtyczki; żadne inne operacje nie zostaną wykonane"
|
375 |
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
377 |
msgid "User Profile"
|
378 |
msgstr "Profil użytkownika"
|
379 |
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
|
381 |
msgid "Extra Fields section title"
|
382 |
msgstr "Tytuł sekcji pól dodatkowych"
|
383 |
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
385 |
msgid "Fieldset's titles, separates with comma"
|
386 |
msgstr "Tytuły grup pól, rozdziel przecinkami"
|
387 |
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
389 |
msgid "example: title1,title2,title3"
|
390 |
msgstr "Przykład: tytuł1, tytuł2, tytuł3"
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
|
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>uwaga:</strong> jeśli zmienisz kolejność lub usuniesz grupy pól powinieneś ustawić przypisanie wszystkich pól dodatkowych do grup pól ponownie"
|
395 |
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
399 |
msgid "Authors & Users Extended"
|
400 |
msgstr "Rozszerzenia kont"
|
401 |
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
403 |
msgid "Hide username field"
|
404 |
msgstr "Ukryj pole z nazwą użytkownika"
|
405 |
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:760
|
407 |
msgid "Hide name field"
|
408 |
msgstr "Ukryj nazwę"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
|
411 |
msgid "Hide email field"
|
412 |
msgstr "Ukryj adres email"
|
413 |
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:769
|
415 |
msgid "Hide role field"
|
416 |
msgstr "Ukryj rolę"
|
417 |
|
418 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:773
|
419 |
msgid "Hide website field"
|
420 |
msgstr "Ukryj pole witryna"
|
421 |
|
422 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:777
|
423 |
msgid "Hide n. posts field"
|
424 |
msgstr "Ukryj liczbę wpisów"
|
425 |
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
427 |
msgid "WordPress hidden fields"
|
428 |
msgstr "Ukryte pola Worpdressa"
|
429 |
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:785
|
431 |
msgid "Show password"
|
432 |
msgstr "Pokaż hasło"
|
433 |
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:789
|
435 |
#, fuzzy
|
436 |
msgid "Show confirmation password"
|
437 |
msgstr "Pokaż hasło"
|
438 |
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
|
440 |
#, fuzzy
|
441 |
msgid "Show password strength meter"
|
442 |
msgstr "Pokaż hasło"
|
443 |
|
444 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:797
|
445 |
msgid "Show first name"
|
446 |
msgstr "Pokaż imię"
|
447 |
|
448 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:801
|
449 |
msgid "Show last name"
|
450 |
msgstr "Pokaż nazwisko"
|
451 |
|
452 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:805
|
453 |
msgid "Show nickname"
|
454 |
msgstr "Pokaż pseudonim"
|
455 |
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:809
|
457 |
msgid "Show website"
|
458 |
msgstr "pokaż witrynę"
|
459 |
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:813
|
461 |
msgid "Show AIM"
|
462 |
msgstr "Pokaż \"AIM\""
|
463 |
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:817
|
465 |
msgid "Show Yahoo IM"
|
466 |
msgstr "Pokaż \"Yahoo IM\""
|
467 |
|
468 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:821
|
469 |
msgid "Show Jabber / Google Talk"
|
470 |
msgstr "Pokaż \"Jabber / Google Talk\""
|
471 |
|
472 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:825
|
473 |
msgid "Show Biographical Info"
|
474 |
msgstr "Pokaż informacje dodatkowe"
|
475 |
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
|
477 |
msgid "Password"
|
478 |
msgstr "Hasło"
|
479 |
|
480 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
481 |
msgid "Password confirmation"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
485 |
msgid "First name"
|
486 |
msgstr "Imię"
|
487 |
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
489 |
msgid "Last name"
|
490 |
msgstr "Nazwisko"
|
491 |
|
492 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
493 |
msgid "Nickname"
|
494 |
msgstr "Pseudonim"
|
495 |
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1541
|
499 |
msgid "Website"
|
500 |
msgstr "Strona internetowa"
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
|
503 |
msgid "AIM"
|
504 |
msgstr "AIM"
|
505 |
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
|
507 |
msgid "Yahoo IM"
|
508 |
msgstr "Yahoo IM"
|
509 |
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
|
511 |
msgid "Jabber / Google Talk"
|
512 |
msgstr "Jabber / Google Talk"
|
513 |
|
514 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:400
|
515 |
msgid "Biographical Info"
|
516 |
msgstr "Biografia"
|
517 |
|
518 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:750
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
520 |
msgid "Fields"
|
521 |
msgstr "Pola"
|
522 |
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
525 |
msgid "A&U Extended"
|
526 |
msgstr "Rozszerzenia"
|
527 |
|
528 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
529 |
msgid "Users Extended"
|
530 |
msgstr "Lista rozszerzona"
|
531 |
|
543 |
msgid "File '%s' is not an image."
|
544 |
msgstr "Plik '%s' musi być obrazkiem"
|
545 |
|
546 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:431
|
547 |
msgid "Delete the file"
|
548 |
msgstr "Usuń plik"
|
549 |
|
550 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:432
|
551 |
msgid "Update the file"
|
552 |
msgstr "Zaktualizuj plik"
|
553 |
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:436
|
555 |
msgid "Update the picture"
|
556 |
msgstr "Wgraj obrazek"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:456
|
559 |
msgid "Picture URL:"
|
560 |
msgstr "URL obrazka:"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:684
|
563 |
+
#, php-format
|
564 |
+
msgid "%s previous value: %s new value: %s"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:699
|
568 |
+
#, php-format
|
569 |
+
msgid "%s (%s) has changed one or more fields"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
573 |
#, php-format
|
574 |
msgid "New user registration on your site %s:"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
580 |
#, fuzzy, php-format
|
581 |
msgid "Username: %s"
|
582 |
msgstr "Nazwa użytkownika"
|
583 |
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
|
585 |
#, fuzzy, php-format
|
586 |
msgid "E-mail: %s"
|
587 |
msgstr "e-mail: %s"
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
|
590 |
#, php-format
|
591 |
msgid "[%s] New User Registration"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
596 |
#, fuzzy, php-format
|
597 |
msgid "Password: %s"
|
598 |
msgstr "Hasło"
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
601 |
#, php-format
|
602 |
msgid "[%s] Your username and password"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:100
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
608 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:124
|
609 |
#, php-format
|
610 |
msgid "%s: %s"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:198
|
614 |
#, php-format
|
615 |
msgid ""
|
616 |
"To activate your user, please click the following link:\n"
|
621 |
"\n"
|
622 |
msgstr ""
|
623 |
|
|
|
624 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
626 |
msgid "Your account is now active!"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
630 |
#, php-format
|
631 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:217
|
635 |
msgid "An error occurred during the activation"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
639 |
msgid "Invalid activation key."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:239
|
643 |
msgid "The site is already active."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:258
|
647 |
msgid "Could not create user"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:270
|
651 |
msgid "That username is already activated."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:290
|
655 |
msgid "That username is currently reserved but may be available in a couple of days."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:293
|
659 |
msgid "username and email used"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:303
|
663 |
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."
|
664 |
msgstr ""
|
665 |
|
684 |
msgstr "Zmień kolejność"
|
685 |
|
686 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
687 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
688 |
msgid "Min length"
|
689 |
msgstr "Długość min"
|
690 |
|
691 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
692 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1045
|
693 |
msgid "Exact length"
|
694 |
msgstr "Długość dokładna"
|
695 |
|
696 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
|
698 |
msgid "Max length"
|
699 |
msgstr "Długość max"
|
700 |
|
702 |
msgid "Exact or Max length"
|
703 |
msgstr "Dokładna lub maksymalna długość"
|
704 |
|
705 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
706 |
msgid "changed to"
|
707 |
msgstr "zmieniona na"
|
708 |
|
709 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
710 |
msgid "You cannot give an order that misses some numbers"
|
711 |
msgstr "Nie możesz podać kolejności która pomija część liczb"
|
712 |
|
713 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
714 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
715 |
msgid "Nothing selected"
|
716 |
msgstr "Nie wybrano niczego"
|
717 |
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
719 |
msgid "Field(s)"
|
720 |
msgstr "Pole(a)"
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
723 |
msgid "deleted correctly"
|
724 |
msgstr "wykasowano prawidłowo"
|
725 |
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:236
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1036
|
728 |
msgid "Min size"
|
729 |
msgstr "Rozmiar min"
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:237
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1037
|
733 |
msgid "Exact size"
|
734 |
msgstr "Rozmiar dokładny"
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
|
737 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
|
738 |
msgid "Max size"
|
739 |
msgstr "Rozmiar max"
|
740 |
|
741 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
742 |
msgid "Exact or Max size"
|
743 |
msgstr "Rozmiar dokładny lub max"
|
744 |
|
745 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
746 |
msgid "Name not specified"
|
747 |
msgstr "Nazwa nie określona"
|
748 |
|
749 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
750 |
msgid "Name cannot contains spaces"
|
751 |
msgstr "Nazwa nie może zawierać spacji"
|
752 |
|
753 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:300
|
754 |
msgid "Label not specified"
|
755 |
msgstr "Etykieta nie określona"
|
756 |
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:305
|
758 |
msgid "not selected (with this type is necessary)"
|
759 |
msgstr "nie wybrano (niezbędne dla tego typu)"
|
760 |
|
761 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
762 |
msgid "If you select"
|
763 |
msgstr "Jeżeli wybierzesz"
|
764 |
|
765 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
766 |
msgid "you cannot select Min or Max"
|
767 |
msgstr "Nie możesz wybrać Min lub Max"
|
768 |
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
770 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:321
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
772 |
msgid "should be in the range of"
|
773 |
msgstr "powinien się mieścić w zakresie"
|
774 |
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:336
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
777 |
msgid "Equal TO not specified"
|
778 |
msgstr "równość (=) nie określona"
|
779 |
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:341
|
781 |
msgid "With checkbox type Equal TO can only be"
|
782 |
msgstr "Dla <strong>checkbox</strong> może być tylko równość"
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:344
|
785 |
msgid "With radio type Equal TO can only be"
|
786 |
msgstr "Dla <strong>radio</strong> może być tylko równość"
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:360
|
789 |
msgid "With checkbox type Value can only be"
|
790 |
msgstr "Dla <strong>checkbox</strong> wartość może być tylko"
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:363
|
793 |
msgid "With radio type Value can only be"
|
794 |
msgstr "Dla <strong>radio</strong> wartość może być tylko"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:420
|
797 |
msgid "Field inserted correctly"
|
798 |
msgstr "Pole wstawione poprawnie"
|
799 |
|
800 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
801 |
msgid "Field #"
|
802 |
msgstr "Pole #"
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
805 |
msgid "updated correctly"
|
806 |
msgstr "zaktualizowane prawidłowo"
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:425
|
809 |
msgid "Name inserted is just in the database, change to another one"
|
810 |
msgstr "Podana nazwa już jest w bazie danych, zmień na inną"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
|
813 |
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."
|
814 |
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."
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
817 |
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'"
|
818 |
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."
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
821 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
822 |
msgstr "Dla <strong>listy (drop-down)</strong>: musisz podać wszystkie opcje w etykiecie. Np.: etykieta/wartość1,wartość2,wartość3. "
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
825 |
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"
|
826 |
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."
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
829 |
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)"
|
830 |
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)."
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
|
833 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
834 |
msgstr "Dla <strong>daty rejestracji</strong>: <em>równe</em> oznacza datę i czas rejestracji."
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
837 |
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"
|
838 |
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."
|
839 |
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
841 |
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"
|
842 |
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"
|
843 |
|
844 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1069
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1525
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1526
|
850 |
msgid "Name"
|
851 |
msgstr "Nazwa"
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1072
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
859 |
msgid "Value"
|
860 |
msgstr "Wartość"
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1075
|
866 |
msgid "Type"
|
867 |
msgstr "Typ"
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
873 |
msgid "Label"
|
874 |
msgstr "Etykieta"
|
875 |
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:661
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
879 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1100
|
880 |
msgid "Description"
|
881 |
msgstr "Opis"
|
882 |
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
884 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
885 |
msgid "Rules"
|
886 |
msgstr "Reguły"
|
887 |
|
888 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
890 |
msgid "Actions"
|
891 |
msgstr "Działania"
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
|
896 |
msgid "Fieldset"
|
897 |
msgstr "Grupa pól"
|
898 |
|
899 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:673
|
900 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
901 |
msgid "Can be empty"
|
902 |
msgstr "Może być puste"
|
903 |
|
904 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
906 |
msgid "Check for E-mail syntax"
|
907 |
msgstr "Sprawdzaj poprawność adresu email"
|
908 |
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
911 |
msgid "Can be modified"
|
912 |
msgstr "Może być zmieniane"
|
913 |
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
916 |
msgid "Can be modified only if empty"
|
917 |
msgstr "Może być zmienione tylko jeśli jest puste"
|
918 |
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
920 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
921 |
msgid "Can be modified only by admin"
|
922 |
msgstr "Może być modyfikowane tylko przez administratora"
|
923 |
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:680
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1121
|
926 |
msgid "Can be modified only by admin or if empty"
|
927 |
msgstr "Może być modyfikowane tylko przez administratora jeśli jest puste"
|
928 |
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
931 |
msgid "Cannot be modified"
|
932 |
msgstr "Nie może być zmieniane"
|
933 |
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
936 |
msgid "Should be equal TO"
|
937 |
msgstr "Powinno być równe"
|
938 |
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1129
|
941 |
msgid "Case sensitive"
|
942 |
msgstr "Rozróżnia wielkość liter"
|
943 |
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
945 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
946 |
msgid "Regular Expression"
|
947 |
msgstr "Wyrażenie regularne"
|
948 |
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:697
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
951 |
msgid "Show the field in the registration"
|
952 |
msgstr "Pokaż pole podczas rejestracji"
|
953 |
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
956 |
msgid "Show the field in User's profile"
|
957 |
msgstr "Pokaż pole w profilu użytkownika"
|
958 |
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:703
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
961 |
msgid "Show the field in A&U Extended menu"
|
962 |
msgstr "Pokaż pole na rozszerzonej liście użytkowników"
|
963 |
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:706
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1150
|
966 |
msgid "Show the field in the search engine"
|
967 |
msgstr "Pokaż pole w profilu użytkownika"
|
968 |
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
971 |
msgid "Show the field in the blog"
|
972 |
msgstr "Pokaż pole na blogu"
|
973 |
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:712
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1156
|
976 |
msgid "Show the field if the role is at least:"
|
977 |
msgstr "Pokaż pole jeżeli rolą użytkownika jest przynajmniej:"
|
978 |
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
981 |
msgid "Anonymous"
|
982 |
msgstr "Anonim"
|
983 |
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:724
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1171
|
986 |
+
msgid "Send an email to the admin if the user changes its value"
|
987 |
+
msgstr ""
|
988 |
+
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
990 |
msgid "Clear"
|
991 |
msgstr "Wyczyść"
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:786
|
994 |
msgid "Invert selection"
|
995 |
msgstr "Odwróć wybór"
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
998 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
999 |
msgstr "Czy na pewno chcesz wykasować pola i wszystkie dane wprowadzone w nie przez użytkowników"
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:793
|
1002 |
msgid "WordPress Fields"
|
1003 |
msgstr "Pola Wordpressa"
|
1004 |
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:806
|
1006 |
msgid "None!"
|
1007 |
msgstr "Brak!"
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:821
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
1011 |
msgid "Order"
|
1012 |
msgstr "Kolejność"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1015 |
msgid "Reset"
|
1016 |
msgstr "Wyczyść"
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1265
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1020 |
msgid "select"
|
1021 |
msgstr "- Wybierz -"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1024 |
#, php-format
|
1025 |
msgid "Users Matching \"%s\""
|
1026 |
msgstr "Użytkownicy pasujący do wzorca \"%s\""
|
1027 |
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1402
|
1029 |
msgid "Users Extended List"
|
1030 |
msgstr "Rozszerzona lista użytkowników"
|
1031 |
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1404
|
1033 |
msgid "Authors & Users Extended List"
|
1034 |
msgstr "Rozszerzona lista użytkowników i autorów"
|
1035 |
|
1036 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
1037 |
#, php-format
|
1038 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
|
1042 |
msgid "Search Users"
|
1043 |
msgstr "Szukaj użytkowników"
|
1044 |
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
1046 |
msgid "« Back to All Users"
|
1047 |
msgstr "« Powrót do wszystkich"
|
1048 |
|
1049 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
1050 |
msgid "Users per page"
|
1051 |
msgstr "Użytkowników na stronie"
|
1052 |
|
1053 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
|
1054 |
msgid "Apply"
|
1055 |
msgstr "Zastosuj"
|
1056 |
|
1057 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1058 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1059 |
msgid "Username"
|
1060 |
msgstr "Nazwa użytkownika"
|
1061 |
|
1062 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1530
|
1063 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1531
|
1064 |
msgid "E-mail"
|
1065 |
msgstr "E-mail"
|
1066 |
|
1067 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1536
|
1069 |
msgid "Role"
|
1070 |
msgstr "Rola"
|
1071 |
|
1072 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
1073 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1546
|
1074 |
msgid "Posts"
|
1075 |
msgstr "Wpisy"
|
1076 |
|
1077 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1682
|
1078 |
msgid "View posts by this author"
|
1079 |
msgstr "Zobacz wpisy tego autora"
|
1080 |
|
1081 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1713
|
1082 |
#, php-format
|
1083 |
msgid "e-mail: %s"
|
1084 |
msgstr "e-mail: %s"
|
1085 |
|
1086 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1834
|
1087 |
+
#, fuzzy
|
1088 |
+
msgid "Change"
|
1089 |
+
msgstr "Zmień kolejność"
|
1090 |
+
|
1091 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1859
|
1092 |
#, fuzzy
|
1093 |
msgid "Update selected users"
|
1094 |
msgstr "Usuń wybrane pola"
|
1095 |
|
1096 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1880
|
1097 |
#, fuzzy
|
1098 |
msgid "Update"
|
1099 |
msgstr "Zaktualizuj pole"
|
1100 |
|
1101 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1898
|
1102 |
+
msgid "OK"
|
1103 |
+
msgstr ""
|
1104 |
+
|
1105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1899
|
1106 |
+
msgid "Cancel"
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1110 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1111 |
msgstr "<strong>Uwaga:</strong> ta witryna umożliwi ci ustawienie własnego hasła. Po rejestracji otrzymasz email z innym hasłem, zignoruj to pole."
|
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:
|
6 |
-
"PO-Revision-Date:
|
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,524 +16,528 @@ 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:403
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
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:
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
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 ""
|
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 há uma sintaxe de e-mail correta"
|
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 menor que"
|
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 pode ter comprimento menor que"
|
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 diferente 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 ""
|
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/cimy_uef_profile.php:299
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Por favor, insira uma imagem com uma das seguintes extensões"
|
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:305
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Por favor, insira uma imagem com uma das seguintes extensões"
|
110 |
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
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 "Mudar ordem"
|
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:
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
131 |
msgstr "Itens por reagrupamento"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
134 |
#, fuzzy
|
135 |
msgid "WordPress Fields table emptied"
|
136 |
msgstr "Tabela de Campos Adicionais apagada"
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
139 |
#, fuzzy
|
140 |
msgid "WordPress Fields table deleted"
|
141 |
msgstr "Tabela de Campos Adicionais excluída"
|
142 |
|
143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
144 |
msgid "Extra Fields table emptied"
|
145 |
msgstr "Tabela de Campos Adicionais apagada"
|
146 |
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
148 |
msgid "Extra Fields table deleted"
|
149 |
msgstr "Tabela de Campos Adicionais excluída"
|
150 |
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
152 |
msgid "Users Data table emptied"
|
153 |
msgstr "Tabela de Dados de Usuários apagada"
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
156 |
msgid "Users Data table deleted"
|
157 |
msgstr "Tabela de Dados de Usuários excluída"
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
160 |
msgid "Options set to default values"
|
161 |
msgstr "Opções marcadas com valores padrão"
|
162 |
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
164 |
msgid "Options deleted"
|
165 |
msgstr "Opções excluídas"
|
166 |
|
167 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
168 |
msgid "Options changed"
|
169 |
msgstr "Opções alteradas"
|
170 |
|
171 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
172 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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_user_extra_fields.php:
|
178 |
msgid "Options"
|
179 |
msgstr "Opções"
|
180 |
|
181 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
182 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
183 |
msgid "Add a new Field"
|
184 |
msgstr "Adicionar um novo campo"
|
185 |
|
186 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.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_db.php:114
|
191 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
192 |
msgid "Extra Fields"
|
193 |
msgstr "Campos Adicionais"
|
194 |
|
195 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
196 |
msgid "Support the Cimy Project"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
200 |
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!"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
204 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
205 |
msgid "SUCCESSFUL"
|
206 |
msgstr "SUCESSO"
|
207 |
|
208 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
209 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
210 |
msgid "Save Changes"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
214 |
msgid "General"
|
215 |
msgstr "Geral"
|
216 |
|
217 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
218 |
msgid "installed is"
|
219 |
msgstr "instalado"
|
220 |
|
221 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
222 |
msgid "OPTIONS DELETED!"
|
223 |
msgstr "OPÇÕES EXCLUÍDAS!"
|
224 |
|
225 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
226 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
227 |
msgid "Fix the problem"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
231 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
232 |
msgstr "VERSÃO NÃO CORRESPONDENTE! Acontece quando você não desativa e re-ativa o plug-in depois de atualizá-lo! Isso pode causar problemas..."
|
233 |
|
234 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
235 |
msgid "Picture/Avatar upload"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
239 |
msgid "is created and writable"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
243 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
247 |
#, fuzzy
|
248 |
msgid "Show all fields in the welcome email"
|
249 |
msgstr "Mostrar campo no formulário de registro"
|
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 ""
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
256 |
msgid "Enable email confirmation"
|
257 |
msgstr ""
|
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 ""
|
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 ""
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
268 |
msgid "Redirect to the source"
|
269 |
msgstr ""
|
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 ""
|
274 |
|
275 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
276 |
msgid "No captcha"
|
277 |
msgstr ""
|
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 ""
|
282 |
|
283 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
284 |
msgid "Public KEY"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
288 |
msgid "Private KEY"
|
289 |
msgstr ""
|
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 ""
|
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 ""
|
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 ""
|
303 |
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
305 |
msgid "Change login/registration page logo"
|
306 |
msgstr ""
|
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 |
#, fuzzy
|
311 |
msgid "Delete the picture"
|
312 |
msgstr "Excluir campo"
|
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 "Banco de dados"
|
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 "selecione uma ação"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
330 |
msgid "Default values"
|
331 |
msgstr "Valores padrão"
|
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 "Excluir"
|
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 "NÃO PRESENTE"
|
346 |
|
347 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
348 |
#, fuzzy
|
349 |
msgid "WordPress Fields table"
|
350 |
msgstr "Tabela de Campos Adicionais"
|
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 "Vazio"
|
357 |
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
359 |
msgid "Extra Fields table"
|
360 |
msgstr "Tabela de Campos Adicionais"
|
361 |
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
363 |
msgid "Users Data table"
|
364 |
msgstr "Tabela de Dados de Usuários"
|
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 os dados inseridos por usuários em todos e somente campos adicionais"
|
369 |
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
371 |
msgid "Force tables creation"
|
372 |
msgstr "Forçar criação de tabelas"
|
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 "Perfil do usuário"
|
381 |
|
382 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
383 |
#, fuzzy
|
384 |
msgid "Extra Fields section title"
|
385 |
msgstr "Tabela de Campos Adicionais"
|
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 "Títulos de reagrupamento, separados por vírgula"
|
390 |
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
392 |
msgid "example: title1,title2,title3"
|
393 |
msgstr "exemplo: título1,título2,título3"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
402 |
msgid "Authors & Users Extended"
|
403 |
msgstr "Autores & Usuários Avançados"
|
404 |
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
406 |
msgid "Hide username field"
|
407 |
msgstr "Ocultar campo nome de usuário"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
410 |
msgid "Hide name field"
|
411 |
msgstr "Ocultar campo nome"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
414 |
msgid "Hide email field"
|
415 |
msgstr "Ocultar campo 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 "Ocultar campo nome"
|
421 |
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
423 |
msgid "Hide website field"
|
424 |
msgstr "Ocultar campo website"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
427 |
msgid "Hide n. posts field"
|
428 |
msgstr "Ocultar campo n. do artigo"
|
429 |
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
431 |
msgid "WordPress hidden fields"
|
432 |
msgstr "Campos ocultos do 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 "Mostrar primeiro nome"
|
449 |
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
451 |
msgid "Show last name"
|
452 |
msgstr "Mostrar último nome"
|
453 |
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
455 |
msgid "Show nickname"
|
456 |
msgstr "Mostrar apelido"
|
457 |
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
459 |
#, fuzzy
|
460 |
msgid "Show website"
|
461 |
msgstr "Website"
|
462 |
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
464 |
msgid "Show AIM"
|
465 |
msgstr "Mostrar AIM"
|
466 |
|
467 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
468 |
msgid "Show Yahoo IM"
|
469 |
msgstr "Mostrar Yahoo IM"
|
470 |
|
471 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
472 |
msgid "Show Jabber / Google Talk"
|
473 |
msgstr "Mostrar Jabber / Google Talk"
|
474 |
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
476 |
msgid "Show Biographical Info"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
480 |
msgid "Password"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
484 |
msgid "Password confirmation"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
488 |
#, fuzzy
|
489 |
msgid "First name"
|
490 |
msgstr "Mostrar primeiro nome"
|
491 |
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
493 |
#, fuzzy
|
494 |
msgid "Last name"
|
495 |
msgstr "Mostrar último nome"
|
496 |
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
498 |
#, fuzzy
|
499 |
msgid "Nickname"
|
500 |
msgstr "Nome"
|
501 |
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
504 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
505 |
msgid "Website"
|
506 |
msgstr "Website"
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
509 |
msgid "AIM"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
513 |
#, fuzzy
|
514 |
msgid "Yahoo IM"
|
515 |
msgstr "Mostrar Yahoo IM"
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
518 |
#, fuzzy
|
519 |
msgid "Jabber / Google Talk"
|
520 |
msgstr "Mostrar Jabber / Google Talk"
|
521 |
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
523 |
msgid "Biographical Info"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
528 |
msgid "Fields"
|
529 |
msgstr "Campos"
|
530 |
|
531 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
533 |
msgid "A&U Extended"
|
534 |
msgstr "A&U Avançado"
|
535 |
|
536 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
537 |
#, fuzzy
|
538 |
msgid "Users Extended"
|
539 |
msgstr "Lista de Autores & Usuários avançados"
|
@@ -552,67 +556,77 @@ msgstr ""
|
|
552 |
msgid "File '%s' is not an image."
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
556 |
#, fuzzy
|
557 |
msgid "Delete the file"
|
558 |
msgstr "Excluir campo"
|
559 |
|
560 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
561 |
#, fuzzy
|
562 |
msgid "Update the file"
|
563 |
msgstr "Atualizar campo"
|
564 |
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
566 |
#, fuzzy
|
567 |
msgid "Update the picture"
|
568 |
msgstr "Atualizar campo"
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
571 |
msgid "Picture URL:"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
#, php-format
|
576 |
msgid "New user registration on your site %s:"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
581 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
582 |
#, fuzzy, php-format
|
583 |
msgid "Username: %s"
|
584 |
msgstr "Nome de usuário"
|
585 |
|
586 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
587 |
#, fuzzy, php-format
|
588 |
msgid "E-mail: %s"
|
589 |
msgstr "e-mail: %s"
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
592 |
#, php-format
|
593 |
msgid "[%s] New User Registration"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
598 |
#, php-format
|
599 |
msgid "Password: %s"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
603 |
#, php-format
|
604 |
msgid "[%s] Your username and password"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
611 |
#, php-format
|
612 |
msgid "%s: %s"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
616 |
#, php-format
|
617 |
msgid ""
|
618 |
"To activate your user, please click the following link:\n"
|
@@ -623,45 +637,45 @@ msgid ""
|
|
623 |
"\n"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
627 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
|
|
628 |
msgid "Your account is now active!"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
632 |
#, php-format
|
633 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
637 |
msgid "An error occurred during the activation"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
641 |
msgid "Invalid activation key."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
645 |
msgid "The site is already active."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
649 |
msgid "Could not create user"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
653 |
msgid "That username is already activated."
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
657 |
msgid "That username is currently reserved but may be available in a couple of days."
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
661 |
msgid "username and email used"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
665 |
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."
|
666 |
msgstr ""
|
667 |
|
@@ -686,17 +700,17 @@ msgid "Change order"
|
|
686 |
msgstr "Mudar ordem"
|
687 |
|
688 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
689 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
690 |
msgid "Min length"
|
691 |
msgstr "Comprimento mín"
|
692 |
|
693 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
694 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
695 |
msgid "Exact length"
|
696 |
msgstr "Comprimento exato"
|
697 |
|
698 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
699 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
700 |
msgid "Max length"
|
701 |
msgstr "Comprimento máx"
|
702 |
|
@@ -704,402 +718,422 @@ msgstr "Comprimento máx"
|
|
704 |
msgid "Exact or Max length"
|
705 |
msgstr "Comprimento Máx ou Exato"
|
706 |
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
708 |
msgid "changed to"
|
709 |
msgstr "alterado para"
|
710 |
|
711 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
712 |
msgid "You cannot give an order that misses some numbers"
|
713 |
msgstr "Você não pode ordenar se faltar alguns números"
|
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 "Nothing selected"
|
718 |
msgstr "Nada selecionado"
|
719 |
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
721 |
msgid "Field(s)"
|
722 |
msgstr "Campo(s)"
|
723 |
|
724 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
725 |
msgid "deleted correctly"
|
726 |
msgstr "excluído corretamente"
|
727 |
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
730 |
msgid "Min size"
|
731 |
msgstr "Tamanho mínimo"
|
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 "Exact size"
|
736 |
msgstr "Tamanho exato"
|
737 |
|
738 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
739 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
740 |
msgid "Max size"
|
741 |
msgstr "Tamanho máximo"
|
742 |
|
743 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
744 |
msgid "Exact or Max size"
|
745 |
msgstr "Tamanho Exato ou Máximo"
|
746 |
|
747 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
748 |
msgid "Name not specified"
|
749 |
msgstr "Nome não especificado"
|
750 |
|
751 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
752 |
msgid "Name cannot contains spaces"
|
753 |
msgstr "Nome não pode conter espaços"
|
754 |
|
755 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
756 |
msgid "Label not specified"
|
757 |
msgstr "Etiqueta não especificada"
|
758 |
|
759 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
760 |
msgid "not selected (with this type is necessary)"
|
761 |
msgstr "não selecionado (neste caso é necessário)"
|
762 |
|
763 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
764 |
msgid "If you select"
|
765 |
msgstr "Se selecionar"
|
766 |
|
767 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
768 |
msgid "you cannot select Min or Max"
|
769 |
msgstr "você não pode selecionar Mín ou Máx"
|
770 |
|
771 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
772 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
773 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
774 |
msgid "should be in the range of"
|
775 |
msgstr "deve ter um alcance de"
|
776 |
|
777 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
779 |
msgid "Equal TO not specified"
|
780 |
msgstr "Igual A não especificado"
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
783 |
msgid "With checkbox type Equal TO can only be"
|
784 |
msgstr "Com tipo checkbox Igual A pode ser somente"
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
787 |
msgid "With radio type Equal TO can only be"
|
788 |
msgstr "Com tipo radio Igual A pode ser somente"
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
791 |
msgid "With checkbox type Value can only be"
|
792 |
msgstr "Com tipo checkbox Valor pode ser somente"
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
msgid "With radio type Value can only be"
|
796 |
msgstr "Com tipo radio Valor pode ser somente"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
799 |
msgid "Field inserted correctly"
|
800 |
msgstr "Campo inserido corretamente"
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
803 |
msgid "Field #"
|
804 |
msgstr "Campo #"
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
msgid "updated correctly"
|
808 |
msgstr "atualizado corretamente"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
msgid "Name inserted is just in the database, change to another one"
|
812 |
msgstr "Nome inserido somente no banco de dados, mude para um outro"
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
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."
|
816 |
msgstr "Para adicionar um novo campo você tem que escolher um nome, tipo e etiqueta; Valores e descrição são opcionais. Regras são aplicadas durante o registro do usuário."
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
819 |
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'"
|
820 |
msgstr "Com <strong>radio</strong> e <strong>checkbox</strong>: <em>Valor</em> e <em>igual A</em> pode ser somente 'Yes' ou 'No' que corresponde a 'selecionado' ou 'não selecionado'"
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
824 |
msgstr "Com <strong>drop-down</strong>: você tem que adicionar todas as opções dentro da etiqueta, por exemplo: etiqueta/item1,item2,item3"
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
827 |
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"
|
828 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
829 |
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
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)"
|
832 |
msgstr "Com <strong>picture-url</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; <em>igual A</em> corresponde ao tamanho máximo da largura (a altura será proporcional)"
|
833 |
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
836 |
msgstr "Com <strong>registration-date</strong>: <em>igual A</em> corresponde ao formato de data e hora"
|
837 |
|
838 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
839 |
#, fuzzy
|
840 |
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"
|
841 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
842 |
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
844 |
#, fuzzy
|
845 |
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"
|
846 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
847 |
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
850 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
msgid "Name"
|
855 |
msgstr "Nome"
|
856 |
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
861 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
863 |
msgid "Value"
|
864 |
msgstr "Valor"
|
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 |
msgid "Type"
|
871 |
msgstr "Tipo"
|
872 |
|
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 |
msgid "Label"
|
878 |
msgstr "Etiqueta"
|
879 |
|
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 "Description"
|
885 |
msgstr "Descrição"
|
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 |
msgid "Rules"
|
890 |
msgstr "Regras"
|
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 |
msgid "Actions"
|
895 |
msgstr "Ações"
|
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 |
#, fuzzy
|
900 |
msgid "Fieldset"
|
901 |
msgstr "Campos"
|
902 |
|
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 "Can be empty"
|
906 |
msgstr "Pode estar vazio"
|
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 "Check for E-mail syntax"
|
911 |
msgstr "Controla a sintaxe do E-mail"
|
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 "Can be modified"
|
916 |
msgstr "Pode ser modificado"
|
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 modified only if empty"
|
921 |
msgstr "Pode ser modificado somente se estiver vazio"
|
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 modified only by admin"
|
926 |
msgstr "Pode ser modificado somente pelo administrador"
|
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 |
#, fuzzy
|
931 |
msgid "Can be modified only by admin or if empty"
|
932 |
msgstr "Pode ser modificado somente se estiver vazio"
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
msgid "Cannot be modified"
|
937 |
msgstr "Não pode ser modificado"
|
938 |
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
941 |
msgid "Should be equal TO"
|
942 |
msgstr "Dever ser igual A"
|
943 |
|
944 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
946 |
msgid "Case sensitive"
|
947 |
msgstr "Caso sensitivo"
|
948 |
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
950 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
951 |
msgid "Regular Expression"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
msgid "Show the field in the registration"
|
957 |
msgstr "Mostrar campo no formulário de registro"
|
958 |
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
961 |
msgid "Show the field in User's profile"
|
962 |
msgstr "Mostrar campo em Perfil do usuário"
|
963 |
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
966 |
msgid "Show the field in A&U Extended menu"
|
967 |
msgstr "Mostra campo em A&U Menu avançado"
|
968 |
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
970 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
971 |
#, fuzzy
|
972 |
msgid "Show the field in the search engine"
|
973 |
msgstr "Mostrar campo no formulário de registro"
|
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 |
#, fuzzy
|
978 |
msgid "Show the field in the blog"
|
979 |
msgstr "Mostrar campo no formulário de registro"
|
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 |
#, fuzzy
|
984 |
msgid "Show the field if the role is at least:"
|
985 |
msgstr "Mostrar campo no formulário de registro"
|
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 "Anonymous"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
993 |
msgid "Clear"
|
994 |
msgstr "Limpar"
|
995 |
|
996 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
997 |
#, fuzzy
|
998 |
msgid "Invert selection"
|
999 |
msgstr "selecione uma ação"
|
1000 |
|
1001 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1002 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1003 |
msgstr "Tem certeza que quer excluir o(s) campo(s) e todos os dados inserido pelos usuários?"
|
1004 |
|
1005 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1006 |
msgid "WordPress Fields"
|
1007 |
msgstr "Campos do Wordpress"
|
1008 |
|
1009 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1010 |
msgid "None!"
|
1011 |
msgstr "Nenhum!"
|
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 "Order"
|
1016 |
msgstr "Ordenar"
|
1017 |
|
1018 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1019 |
msgid "Reset"
|
1020 |
msgstr "Resetar"
|
1021 |
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
1023 |
#, fuzzy
|
1024 |
msgid "select"
|
1025 |
msgstr "Excluir"
|
1026 |
|
1027 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1028 |
#, fuzzy, php-format
|
1029 |
msgid "Users Matching \"%s\""
|
1030 |
msgstr "Tabela de Campos Adicionais apagada"
|
1031 |
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1033 |
#, fuzzy
|
1034 |
msgid "Users Extended List"
|
1035 |
msgstr "Lista de Autores & Usuários avançados"
|
1036 |
|
1037 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1038 |
msgid "Authors & Users Extended List"
|
1039 |
msgstr "Lista de Autores & Usuários avançados"
|
1040 |
|
1041 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1042 |
#, php-format
|
1043 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1047 |
msgid "Search Users"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1051 |
msgid "« Back to All Users"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1055 |
#, fuzzy
|
1056 |
msgid "Users per page"
|
1057 |
msgstr "Tabela de Dados de Usuários"
|
1058 |
|
1059 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1060 |
msgid "Apply"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1064 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1065 |
msgid "Username"
|
1066 |
msgstr "Nome de usuário"
|
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 "E-mail"
|
1071 |
msgstr "E-mail"
|
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 |
#, fuzzy
|
1076 |
msgid "Role"
|
1077 |
msgstr "Regras"
|
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 "Posts"
|
1082 |
msgstr "Artigos"
|
1083 |
|
1084 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1085 |
msgid "View posts by this author"
|
1086 |
msgstr "Ver artigos desse autor"
|
1087 |
|
1088 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1089 |
#, php-format
|
1090 |
msgid "e-mail: %s"
|
1091 |
msgstr "e-mail: %s"
|
1092 |
|
1093 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1094 |
#, fuzzy
|
1095 |
msgid "Update selected users"
|
1096 |
msgstr "Excluir campos selecionados"
|
1097 |
|
1098 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1099 |
#, fuzzy
|
1100 |
msgid "Update"
|
1101 |
msgstr "Atualizar campo"
|
1102 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1103 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1104 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1105 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-30 14:08+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-01-30 14:08+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:407
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:446
|
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:476
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1218
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERRO"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "Não há uma sintaxe de e-mail correta"
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
|
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:445
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
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:451
|
55 |
msgid "YES"
|
56 |
msgstr "SIM"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
59 |
msgid "NO"
|
60 |
msgstr "NÃO"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:456
|
63 |
msgid "should be"
|
64 |
msgstr "deve ser"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
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:476
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "não pode ter tamanho menor que"
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "não pode ter comprimento menor que"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "não pode ter tamanho diferente de"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
|
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:512
|
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:518
|
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:531
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Por favor, insira uma imagem com uma das seguintes extensões"
|
104 |
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:836
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:371
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Por favor, insira uma imagem com uma das seguintes extensões"
|
110 |
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:916
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
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:954
|
120 |
#, fuzzy
|
121 |
msgid "Change image"
|
122 |
msgstr "Mudar ordem"
|
123 |
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
|
125 |
msgid "Insert the code:"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
131 |
msgstr "Itens por reagrupamento"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:432
|
134 |
+
msgid "All"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:43
|
138 |
#, fuzzy
|
139 |
msgid "WordPress Fields table emptied"
|
140 |
msgstr "Tabela de Campos Adicionais apagada"
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
143 |
#, fuzzy
|
144 |
msgid "WordPress Fields table deleted"
|
145 |
msgstr "Tabela de Campos Adicionais excluída"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
148 |
msgid "Extra Fields table emptied"
|
149 |
msgstr "Tabela de Campos Adicionais apagada"
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
152 |
msgid "Extra Fields table deleted"
|
153 |
msgstr "Tabela de Campos Adicionais excluída"
|
154 |
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
156 |
msgid "Users Data table emptied"
|
157 |
msgstr "Tabela de Dados de Usuários apagada"
|
158 |
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:76
|
160 |
msgid "Users Data table deleted"
|
161 |
msgstr "Tabela de Dados de Usuários excluída"
|
162 |
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:87
|
164 |
msgid "Options set to default values"
|
165 |
msgstr "Opções marcadas com valores padrão"
|
166 |
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:93
|
168 |
msgid "Options deleted"
|
169 |
msgstr "Opções excluídas"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
|
172 |
msgid "Options changed"
|
173 |
msgstr "Opções alteradas"
|
174 |
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
176 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
180 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
|
181 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:749
|
182 |
msgid "Options"
|
183 |
msgstr "Opções"
|
184 |
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
186 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:440
|
187 |
msgid "Add a new Field"
|
188 |
msgstr "Adicionar um novo campo"
|
189 |
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:795
|
192 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
193 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
194 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
195 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
196 |
msgid "Extra Fields"
|
197 |
msgstr "Campos Adicionais"
|
198 |
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
200 |
msgid "Support the Cimy Project"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
204 |
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!"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1236
|
209 |
msgid "SUCCESSFUL"
|
210 |
msgstr "SUCESSO"
|
211 |
|
212 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:830
|
214 |
msgid "Save Changes"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
218 |
msgid "General"
|
219 |
msgstr "Geral"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
222 |
msgid "installed is"
|
223 |
msgstr "instalado"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
226 |
msgid "OPTIONS DELETED!"
|
227 |
msgstr "OPÇÕES EXCLUÍDAS!"
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
231 |
msgid "Fix the problem"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
235 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
236 |
msgstr "VERSÃO NÃO CORRESPONDENTE! Acontece quando você não desativa e re-ativa o plug-in depois de atualizá-lo! Isso pode causar problemas..."
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
239 |
msgid "Picture/Avatar upload"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
243 |
msgid "is created and writable"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
247 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
251 |
#, fuzzy
|
252 |
msgid "Show all fields in the welcome email"
|
253 |
msgstr "Mostrar campo no formulário de registro"
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
256 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:576
|
260 |
msgid "Enable email confirmation"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
264 |
msgid "user that registers should confirm its email address via a link click"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
268 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
272 |
msgid "Redirect to the source"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
276 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:601
|
280 |
msgid "No captcha"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
284 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
288 |
msgid "Public KEY"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
292 |
msgid "Private KEY"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
296 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:628
|
300 |
msgid "This captcha is probably weaker, but is easier for users"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:632
|
304 |
#, php-format
|
305 |
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>"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
309 |
msgid "Change login/registration page logo"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:435
|
314 |
#, fuzzy
|
315 |
msgid "Delete the picture"
|
316 |
msgstr "Excluir campo"
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
|
319 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
323 |
msgid "Database"
|
324 |
msgstr "Banco de dados"
|
325 |
|
326 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
|
330 |
msgid "select action"
|
331 |
msgstr "selecione uma ação"
|
332 |
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
334 |
msgid "Default values"
|
335 |
msgstr "Valores padrão"
|
336 |
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:718
|
341 |
msgid "Delete"
|
342 |
msgstr "Excluir"
|
343 |
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:687
|
346 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
|
348 |
msgid "NOT PRESENT"
|
349 |
msgstr "NÃO PRESENTE"
|
350 |
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
352 |
#, fuzzy
|
353 |
msgid "WordPress Fields table"
|
354 |
msgstr "Tabela de Campos Adicionais"
|
355 |
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:700
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
359 |
msgid "Empty"
|
360 |
msgstr "Vazio"
|
361 |
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
363 |
msgid "Extra Fields table"
|
364 |
msgstr "Tabela de Campos Adicionais"
|
365 |
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
|
367 |
msgid "Users Data table"
|
368 |
msgstr "Tabela de Dados de Usuários"
|
369 |
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
371 |
msgid "all data inserted by users in all and only extra fields"
|
372 |
msgstr "todos os dados inseridos por usuários em todos e somente campos adicionais"
|
373 |
|
374 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
375 |
msgid "Force tables creation"
|
376 |
msgstr "Forçar criação de tabelas"
|
377 |
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
379 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
383 |
msgid "User Profile"
|
384 |
msgstr "Perfil do usuário"
|
385 |
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
|
387 |
#, fuzzy
|
388 |
msgid "Extra Fields section title"
|
389 |
msgstr "Tabela de Campos Adicionais"
|
390 |
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
392 |
msgid "Fieldset's titles, separates with comma"
|
393 |
msgstr "Títulos de reagrupamento, separados por vírgula"
|
394 |
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
396 |
msgid "example: title1,title2,title3"
|
397 |
msgstr "exemplo: título1,título2,título3"
|
398 |
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
|
400 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
406 |
msgid "Authors & Users Extended"
|
407 |
msgstr "Autores & Usuários Avançados"
|
408 |
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
410 |
msgid "Hide username field"
|
411 |
msgstr "Ocultar campo nome de usuário"
|
412 |
|
413 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:760
|
414 |
msgid "Hide name field"
|
415 |
msgstr "Ocultar campo nome"
|
416 |
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
|
418 |
msgid "Hide email field"
|
419 |
msgstr "Ocultar campo email"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:769
|
422 |
#, fuzzy
|
423 |
msgid "Hide role field"
|
424 |
msgstr "Ocultar campo nome"
|
425 |
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:773
|
427 |
msgid "Hide website field"
|
428 |
msgstr "Ocultar campo website"
|
429 |
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:777
|
431 |
msgid "Hide n. posts field"
|
432 |
msgstr "Ocultar campo n. do artigo"
|
433 |
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
435 |
msgid "WordPress hidden fields"
|
436 |
msgstr "Campos ocultos do WordPress"
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:785
|
439 |
msgid "Show password"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:789
|
443 |
msgid "Show confirmation password"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
|
447 |
msgid "Show password strength meter"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:797
|
451 |
msgid "Show first name"
|
452 |
msgstr "Mostrar primeiro nome"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:801
|
455 |
msgid "Show last name"
|
456 |
msgstr "Mostrar último nome"
|
457 |
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:805
|
459 |
msgid "Show nickname"
|
460 |
msgstr "Mostrar apelido"
|
461 |
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:809
|
463 |
#, fuzzy
|
464 |
msgid "Show website"
|
465 |
msgstr "Website"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:813
|
468 |
msgid "Show AIM"
|
469 |
msgstr "Mostrar AIM"
|
470 |
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:817
|
472 |
msgid "Show Yahoo IM"
|
473 |
msgstr "Mostrar Yahoo IM"
|
474 |
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:821
|
476 |
msgid "Show Jabber / Google Talk"
|
477 |
msgstr "Mostrar Jabber / Google Talk"
|
478 |
|
479 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:825
|
480 |
msgid "Show Biographical Info"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
|
484 |
msgid "Password"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
488 |
msgid "Password confirmation"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
492 |
#, fuzzy
|
493 |
msgid "First name"
|
494 |
msgstr "Mostrar primeiro nome"
|
495 |
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
497 |
#, fuzzy
|
498 |
msgid "Last name"
|
499 |
msgstr "Mostrar último nome"
|
500 |
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
502 |
#, fuzzy
|
503 |
msgid "Nickname"
|
504 |
msgstr "Nome"
|
505 |
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
|
507 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1541
|
509 |
msgid "Website"
|
510 |
msgstr "Website"
|
511 |
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
|
513 |
msgid "AIM"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
|
517 |
#, fuzzy
|
518 |
msgid "Yahoo IM"
|
519 |
msgstr "Mostrar Yahoo IM"
|
520 |
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
|
522 |
#, fuzzy
|
523 |
msgid "Jabber / Google Talk"
|
524 |
msgstr "Mostrar Jabber / Google Talk"
|
525 |
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:400
|
527 |
msgid "Biographical Info"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:750
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
532 |
msgid "Fields"
|
533 |
msgstr "Campos"
|
534 |
|
535 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
536 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
537 |
msgid "A&U Extended"
|
538 |
msgstr "A&U Avançado"
|
539 |
|
540 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
541 |
#, fuzzy
|
542 |
msgid "Users Extended"
|
543 |
msgstr "Lista de Autores & Usuários avançados"
|
556 |
msgid "File '%s' is not an image."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:431
|
560 |
#, fuzzy
|
561 |
msgid "Delete the file"
|
562 |
msgstr "Excluir campo"
|
563 |
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:432
|
565 |
#, fuzzy
|
566 |
msgid "Update the file"
|
567 |
msgstr "Atualizar campo"
|
568 |
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:436
|
570 |
#, fuzzy
|
571 |
msgid "Update the picture"
|
572 |
msgstr "Atualizar campo"
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:456
|
575 |
msgid "Picture URL:"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:684
|
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:699
|
584 |
+
#, php-format
|
585 |
+
msgid "%s (%s) has changed one or more fields"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
589 |
#, php-format
|
590 |
msgid "New user registration on your site %s:"
|
591 |
msgstr ""
|
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 |
#, fuzzy, php-format
|
597 |
msgid "Username: %s"
|
598 |
msgstr "Nome de usuário"
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
|
601 |
#, fuzzy, php-format
|
602 |
msgid "E-mail: %s"
|
603 |
msgstr "e-mail: %s"
|
604 |
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
|
606 |
#, php-format
|
607 |
msgid "[%s] New User Registration"
|
608 |
msgstr ""
|
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 ""
|
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"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:100
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
623 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:124
|
625 |
#, php-format
|
626 |
msgid "%s: %s"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:198
|
630 |
#, php-format
|
631 |
msgid ""
|
632 |
"To activate your user, please click the following link:\n"
|
637 |
"\n"
|
638 |
msgstr ""
|
639 |
|
|
|
640 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
642 |
msgid "Your account is now active!"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
646 |
#, php-format
|
647 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:217
|
651 |
msgid "An error occurred during the activation"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
655 |
msgid "Invalid activation key."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:239
|
659 |
msgid "The site is already active."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:258
|
663 |
msgid "Could not create user"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:270
|
667 |
msgid "That username is already activated."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:290
|
671 |
msgid "That username is currently reserved but may be available in a couple of days."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:293
|
675 |
msgid "username and email used"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:303
|
679 |
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."
|
680 |
msgstr ""
|
681 |
|
700 |
msgstr "Mudar ordem"
|
701 |
|
702 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
704 |
msgid "Min length"
|
705 |
msgstr "Comprimento mín"
|
706 |
|
707 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
708 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1045
|
709 |
msgid "Exact length"
|
710 |
msgstr "Comprimento exato"
|
711 |
|
712 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
713 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
|
714 |
msgid "Max length"
|
715 |
msgstr "Comprimento máx"
|
716 |
|
718 |
msgid "Exact or Max length"
|
719 |
msgstr "Comprimento Máx ou Exato"
|
720 |
|
721 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
722 |
msgid "changed to"
|
723 |
msgstr "alterado para"
|
724 |
|
725 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
726 |
msgid "You cannot give an order that misses some numbers"
|
727 |
msgstr "Você não pode ordenar se faltar alguns números"
|
728 |
|
729 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
731 |
msgid "Nothing selected"
|
732 |
msgstr "Nada selecionado"
|
733 |
|
734 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
735 |
msgid "Field(s)"
|
736 |
msgstr "Campo(s)"
|
737 |
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
739 |
msgid "deleted correctly"
|
740 |
msgstr "excluído corretamente"
|
741 |
|
742 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:236
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1036
|
744 |
msgid "Min size"
|
745 |
msgstr "Tamanho mínimo"
|
746 |
|
747 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:237
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1037
|
749 |
msgid "Exact size"
|
750 |
msgstr "Tamanho exato"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
|
753 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
|
754 |
msgid "Max size"
|
755 |
msgstr "Tamanho máximo"
|
756 |
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
758 |
msgid "Exact or Max size"
|
759 |
msgstr "Tamanho Exato ou Máximo"
|
760 |
|
761 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
762 |
msgid "Name not specified"
|
763 |
msgstr "Nome não especificado"
|
764 |
|
765 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
766 |
msgid "Name cannot contains spaces"
|
767 |
msgstr "Nome não pode conter espaços"
|
768 |
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:300
|
770 |
msgid "Label not specified"
|
771 |
msgstr "Etiqueta não especificada"
|
772 |
|
773 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:305
|
774 |
msgid "not selected (with this type is necessary)"
|
775 |
msgstr "não selecionado (neste caso é necessário)"
|
776 |
|
777 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
778 |
msgid "If you select"
|
779 |
msgstr "Se selecionar"
|
780 |
|
781 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
782 |
msgid "you cannot select Min or Max"
|
783 |
msgstr "você não pode selecionar Mín ou Máx"
|
784 |
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
786 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:321
|
787 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
788 |
msgid "should be in the range of"
|
789 |
msgstr "deve ter um alcance de"
|
790 |
|
791 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:336
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
793 |
msgid "Equal TO not specified"
|
794 |
msgstr "Igual A não especificado"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:341
|
797 |
msgid "With checkbox type Equal TO can only be"
|
798 |
msgstr "Com tipo checkbox Igual A pode ser somente"
|
799 |
|
800 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:344
|
801 |
msgid "With radio type Equal TO can only be"
|
802 |
msgstr "Com tipo radio Igual A pode ser somente"
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:360
|
805 |
msgid "With checkbox type Value can only be"
|
806 |
msgstr "Com tipo checkbox Valor pode ser somente"
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:363
|
809 |
msgid "With radio type Value can only be"
|
810 |
msgstr "Com tipo radio Valor pode ser somente"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:420
|
813 |
msgid "Field inserted correctly"
|
814 |
msgstr "Campo inserido corretamente"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
817 |
msgid "Field #"
|
818 |
msgstr "Campo #"
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
821 |
msgid "updated correctly"
|
822 |
msgstr "atualizado corretamente"
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:425
|
825 |
msgid "Name inserted is just in the database, change to another one"
|
826 |
msgstr "Nome inserido somente no banco de dados, mude para um outro"
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
|
829 |
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."
|
830 |
msgstr "Para adicionar um novo campo você tem que escolher um nome, tipo e etiqueta; Valores e descrição são opcionais. Regras são aplicadas durante o registro do usuário."
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
833 |
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'"
|
834 |
msgstr "Com <strong>radio</strong> e <strong>checkbox</strong>: <em>Valor</em> e <em>igual A</em> pode ser somente 'Yes' ou 'No' que corresponde a 'selecionado' ou 'não selecionado'"
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
837 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
838 |
msgstr "Com <strong>drop-down</strong>: você tem que adicionar todas as opções dentro da etiqueta, por exemplo: etiqueta/item1,item2,item3"
|
839 |
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
841 |
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"
|
842 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
843 |
|
844 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
845 |
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)"
|
846 |
msgstr "Com <strong>picture-url</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; <em>igual A</em> corresponde ao tamanho máximo da largura (a altura será proporcional)"
|
847 |
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
|
849 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
850 |
msgstr "Com <strong>registration-date</strong>: <em>igual A</em> corresponde ao formato de data e hora"
|
851 |
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
853 |
#, fuzzy
|
854 |
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"
|
855 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
858 |
#, fuzzy
|
859 |
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"
|
860 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1069
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1525
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1526
|
868 |
msgid "Name"
|
869 |
msgstr "Nome"
|
870 |
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1072
|
875 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
877 |
msgid "Value"
|
878 |
msgstr "Valor"
|
879 |
|
880 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1075
|
884 |
msgid "Type"
|
885 |
msgstr "Tipo"
|
886 |
|
887 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
888 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
891 |
msgid "Label"
|
892 |
msgstr "Etiqueta"
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:661
|
896 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1100
|
898 |
msgid "Description"
|
899 |
msgstr "Descrição"
|
900 |
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
903 |
msgid "Rules"
|
904 |
msgstr "Regras"
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
908 |
msgid "Actions"
|
909 |
msgstr "Ações"
|
910 |
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
912 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
|
914 |
#, fuzzy
|
915 |
msgid "Fieldset"
|
916 |
msgstr "Campos"
|
917 |
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:673
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
920 |
msgid "Can be empty"
|
921 |
msgstr "Pode estar vazio"
|
922 |
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
925 |
msgid "Check for E-mail syntax"
|
926 |
msgstr "Controla a sintaxe do E-mail"
|
927 |
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
930 |
msgid "Can be modified"
|
931 |
msgstr "Pode ser modificado"
|
932 |
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
935 |
msgid "Can be modified only if empty"
|
936 |
msgstr "Pode ser modificado somente se estiver vazio"
|
937 |
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
940 |
msgid "Can be modified only by admin"
|
941 |
msgstr "Pode ser modificado somente pelo administrador"
|
942 |
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:680
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1121
|
945 |
#, fuzzy
|
946 |
msgid "Can be modified only by admin or if empty"
|
947 |
msgstr "Pode ser modificado somente se estiver vazio"
|
948 |
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
951 |
msgid "Cannot be modified"
|
952 |
msgstr "Não pode ser modificado"
|
953 |
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
956 |
msgid "Should be equal TO"
|
957 |
msgstr "Dever ser igual A"
|
958 |
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1129
|
961 |
msgid "Case sensitive"
|
962 |
msgstr "Caso sensitivo"
|
963 |
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
966 |
msgid "Regular Expression"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:697
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
971 |
msgid "Show the field in the registration"
|
972 |
msgstr "Mostrar campo no formulário de registro"
|
973 |
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
976 |
msgid "Show the field in User's profile"
|
977 |
msgstr "Mostrar campo em Perfil do usuário"
|
978 |
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:703
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
981 |
msgid "Show the field in A&U Extended menu"
|
982 |
msgstr "Mostra campo em A&U Menu avançado"
|
983 |
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:706
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1150
|
986 |
#, fuzzy
|
987 |
msgid "Show the field in the search engine"
|
988 |
msgstr "Mostrar campo no formulário de registro"
|
989 |
|
990 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
|
991 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
992 |
#, fuzzy
|
993 |
msgid "Show the field in the blog"
|
994 |
msgstr "Mostrar campo no formulário de registro"
|
995 |
|
996 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:712
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1156
|
998 |
#, fuzzy
|
999 |
msgid "Show the field if the role is at least:"
|
1000 |
msgstr "Mostrar campo no formulário de registro"
|
1001 |
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
1003 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
1004 |
msgid "Anonymous"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:724
|
1008 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1171
|
1009 |
+
msgid "Send an email to the admin if the user changes its value"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
1013 |
msgid "Clear"
|
1014 |
msgstr "Limpar"
|
1015 |
|
1016 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:786
|
1017 |
#, fuzzy
|
1018 |
msgid "Invert selection"
|
1019 |
msgstr "selecione uma ação"
|
1020 |
|
1021 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
1022 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1023 |
msgstr "Tem certeza que quer excluir o(s) campo(s) e todos os dados inserido pelos usuários?"
|
1024 |
|
1025 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:793
|
1026 |
msgid "WordPress Fields"
|
1027 |
msgstr "Campos do Wordpress"
|
1028 |
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:806
|
1030 |
msgid "None!"
|
1031 |
msgstr "Nenhum!"
|
1032 |
|
1033 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:821
|
1034 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
1035 |
msgid "Order"
|
1036 |
msgstr "Ordenar"
|
1037 |
|
1038 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1039 |
msgid "Reset"
|
1040 |
msgstr "Resetar"
|
1041 |
|
1042 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1265
|
1043 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1044 |
#, fuzzy
|
1045 |
msgid "select"
|
1046 |
msgstr "Excluir"
|
1047 |
|
1048 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1049 |
#, fuzzy, php-format
|
1050 |
msgid "Users Matching \"%s\""
|
1051 |
msgstr "Tabela de Campos Adicionais apagada"
|
1052 |
|
1053 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1402
|
1054 |
#, fuzzy
|
1055 |
msgid "Users Extended List"
|
1056 |
msgstr "Lista de Autores & Usuários avançados"
|
1057 |
|
1058 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1404
|
1059 |
msgid "Authors & Users Extended List"
|
1060 |
msgstr "Lista de Autores & Usuários avançados"
|
1061 |
|
1062 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
1063 |
#, php-format
|
1064 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
|
1068 |
msgid "Search Users"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
1072 |
msgid "« Back to All Users"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
1076 |
#, fuzzy
|
1077 |
msgid "Users per page"
|
1078 |
msgstr "Tabela de Dados de Usuários"
|
1079 |
|
1080 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
|
1081 |
msgid "Apply"
|
1082 |
msgstr ""
|
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 "Username"
|
1087 |
msgstr "Nome de usuário"
|
1088 |
|
1089 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1530
|
1090 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1531
|
1091 |
msgid "E-mail"
|
1092 |
msgstr "E-mail"
|
1093 |
|
1094 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1536
|
1096 |
#, fuzzy
|
1097 |
msgid "Role"
|
1098 |
msgstr "Regras"
|
1099 |
|
1100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
1101 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1546
|
1102 |
msgid "Posts"
|
1103 |
msgstr "Artigos"
|
1104 |
|
1105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1682
|
1106 |
msgid "View posts by this author"
|
1107 |
msgstr "Ver artigos desse autor"
|
1108 |
|
1109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1713
|
1110 |
#, php-format
|
1111 |
msgid "e-mail: %s"
|
1112 |
msgstr "e-mail: %s"
|
1113 |
|
1114 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1834
|
1115 |
+
#, fuzzy
|
1116 |
+
msgid "Change"
|
1117 |
+
msgstr "Mudar ordem"
|
1118 |
+
|
1119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1859
|
1120 |
#, fuzzy
|
1121 |
msgid "Update selected users"
|
1122 |
msgstr "Excluir campos selecionados"
|
1123 |
|
1124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1880
|
1125 |
#, fuzzy
|
1126 |
msgid "Update"
|
1127 |
msgstr "Atualizar campo"
|
1128 |
|
1129 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1898
|
1130 |
+
msgid "OK"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1899
|
1134 |
+
msgid "Cancel"
|
1135 |
+
msgstr ""
|
1136 |
+
|
1137 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1138 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1139 |
msgstr ""
|
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:
|
6 |
-
"PO-Revision-Date:
|
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,520 +16,524 @@ 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:403
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
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:
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
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/cimy_uef_profile.php:299
|
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:305
|
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 |
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 "Изменить порядок"
|
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:
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
131 |
msgstr "Пункты полей"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
134 |
msgid "WordPress Fields table emptied"
|
135 |
msgstr "Таблица WordPress Fields очищена"
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
138 |
msgid "WordPress Fields table deleted"
|
139 |
msgstr "Таблица WordPress Fields удалена"
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
142 |
msgid "Extra Fields table emptied"
|
143 |
msgstr "Таблица Extra Fields очищена"
|
144 |
|
145 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
146 |
msgid "Extra Fields table deleted"
|
147 |
msgstr "Таблица Extra Fields удалена"
|
148 |
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
150 |
msgid "Users Data table emptied"
|
151 |
msgstr "Таблица пользовательских данных очищена"
|
152 |
|
153 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
154 |
msgid "Users Data table deleted"
|
155 |
msgstr "Таблица пользовательских данных удалена"
|
156 |
|
157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
158 |
msgid "Options set to default values"
|
159 |
msgstr "Установлены настройки по-умолчанию"
|
160 |
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
162 |
msgid "Options deleted"
|
163 |
msgstr "Настройки удалены"
|
164 |
|
165 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
166 |
msgid "Options changed"
|
167 |
msgstr "Настройки изменены"
|
168 |
|
169 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
170 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
175 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
176 |
msgid "Options"
|
177 |
msgstr "Настройки"
|
178 |
|
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_uef_admin.php:
|
181 |
msgid "Add a new Field"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
189 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
190 |
msgid "Extra Fields"
|
191 |
msgstr "Extra Fields"
|
192 |
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
194 |
msgid "Support the Cimy Project"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
198 |
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!"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
203 |
msgid "SUCCESSFUL"
|
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_options.php:
|
208 |
msgid "Save Changes"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
msgid "General"
|
213 |
msgstr "Главное"
|
214 |
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
216 |
msgid "installed is"
|
217 |
msgstr "установлено"
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
220 |
msgid "OPTIONS DELETED!"
|
221 |
msgstr "НАСТРОЙКИ УДАЛЕНЫ!"
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
225 |
msgid "Fix the problem"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
229 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
230 |
msgstr "ВЕРСИИ НЕ СОВПАДАЮТ! Это из-за того, что Вы не деактивировали, а затем активировали плагин после обновления! Могут возникнуть проблемы..."
|
231 |
|
232 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
233 |
msgid "Picture/Avatar upload"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
237 |
msgid "is created and writable"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
241 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
245 |
#, fuzzy
|
246 |
msgid "Show all fields in the welcome email"
|
247 |
msgstr "Показывать поле при регистрации"
|
248 |
|
249 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
250 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
254 |
msgid "Enable email confirmation"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
258 |
msgid "user that registers should confirm its email address via a link click"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
262 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
266 |
msgid "Redirect to the source"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
270 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
274 |
msgid "No captcha"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
278 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
msgid "Public KEY"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
286 |
msgid "Private KEY"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
294 |
msgid "This captcha is probably weaker, but is easier for users"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
#, php-format
|
299 |
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>"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
303 |
msgid "Change login/registration page logo"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
308 |
#, fuzzy
|
309 |
msgid "Delete the picture"
|
310 |
msgstr "Удалить поле"
|
311 |
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
313 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
317 |
msgid "Database"
|
318 |
msgstr "База данных"
|
319 |
|
320 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "select action"
|
325 |
msgstr "выберите действие"
|
326 |
|
327 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
328 |
msgid "Default values"
|
329 |
msgstr "Значения по-умолчанию"
|
330 |
|
331 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "Delete"
|
336 |
msgstr "Удалить"
|
337 |
|
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 |
-
#: /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 |
msgid "NOT PRESENT"
|
343 |
msgstr "НЕ СУЩЕСТВУЕТ"
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
346 |
msgid "WordPress Fields table"
|
347 |
msgstr "Таблица WordPress Fields"
|
348 |
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
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 |
msgid "Empty"
|
353 |
msgstr "Очистить"
|
354 |
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
356 |
msgid "Extra Fields table"
|
357 |
msgstr "Таблица Extra Fields"
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
360 |
msgid "Users Data table"
|
361 |
msgstr "Таблица данных пользователей"
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
364 |
msgid "all data inserted by users in all and only extra fields"
|
365 |
msgstr "все данные, вставленные пользователями во все и только в дополнительные поля"
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
368 |
msgid "Force tables creation"
|
369 |
msgstr "Force tables creation"
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
372 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
376 |
msgid "User Profile"
|
377 |
msgstr "Профиль пользователя"
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
380 |
#, fuzzy
|
381 |
msgid "Extra Fields section title"
|
382 |
msgstr "Таблица Extra Fields"
|
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 "Названия полей через запятую"
|
387 |
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
389 |
msgid "example: title1,title2,title3"
|
390 |
msgstr "пример: заголовок1,заголовок2, заголовок3"
|
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 ""
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
399 |
msgid "Authors & Users Extended"
|
400 |
msgstr "Авторы и Продвинутые пользователи"
|
401 |
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
403 |
msgid "Hide username field"
|
404 |
msgstr "Скрыть поле с именем пользователя"
|
405 |
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
407 |
msgid "Hide name field"
|
408 |
msgstr "Скрыть поле с именем"
|
409 |
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
411 |
msgid "Hide email field"
|
412 |
msgstr "Скрыть поле с email"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
415 |
#, fuzzy
|
416 |
msgid "Hide role field"
|
417 |
msgstr "Скрыть поле с именем"
|
418 |
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
420 |
msgid "Hide website field"
|
421 |
msgstr "Скрыть поле с адресом сайта"
|
422 |
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
424 |
msgid "Hide n. posts field"
|
425 |
msgstr "Скрыть поле с № постов"
|
426 |
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
428 |
msgid "WordPress hidden fields"
|
429 |
msgstr "Скрытые поля WordPress"
|
430 |
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
432 |
msgid "Show password"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
436 |
msgid "Show confirmation password"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
440 |
msgid "Show password strength meter"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
444 |
msgid "Show first name"
|
445 |
msgstr "Показать имя"
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
448 |
msgid "Show last name"
|
449 |
msgstr "Показать фамилию"
|
450 |
|
451 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
452 |
msgid "Show nickname"
|
453 |
msgstr "Показать ник"
|
454 |
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
456 |
msgid "Show website"
|
457 |
msgstr "Показать адрес сайта"
|
458 |
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
460 |
msgid "Show AIM"
|
461 |
msgstr "Показать AIM"
|
462 |
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
464 |
msgid "Show Yahoo IM"
|
465 |
msgstr "Показать 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 "Показать 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 ""
|
474 |
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
476 |
msgid "Password"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
480 |
msgid "Password confirmation"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
484 |
#, fuzzy
|
485 |
msgid "First name"
|
486 |
msgstr "Показать имя"
|
487 |
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
489 |
#, fuzzy
|
490 |
msgid "Last name"
|
491 |
msgstr "Показать фамилию"
|
492 |
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
494 |
#, fuzzy
|
495 |
msgid "Nickname"
|
496 |
msgstr "Имя"
|
497 |
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
499 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
500 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
501 |
msgid "Website"
|
502 |
msgstr "Адрес сайта"
|
503 |
|
504 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
505 |
msgid "AIM"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
509 |
#, fuzzy
|
510 |
msgid "Yahoo IM"
|
511 |
msgstr "Показать Yahoo IM"
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
514 |
#, fuzzy
|
515 |
msgid "Jabber / Google Talk"
|
516 |
msgstr "Показать Jabber / Google Talk"
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
519 |
msgid "Biographical Info"
|
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 |
msgid "Fields"
|
525 |
msgstr "Поля"
|
526 |
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
529 |
msgid "A&U Extended"
|
530 |
msgstr "A и продвинутые П "
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
533 |
#, fuzzy
|
534 |
msgid "Users Extended"
|
535 |
msgstr "Список Авторов и продвинутых пользователей"
|
@@ -548,67 +552,77 @@ msgstr ""
|
|
548 |
msgid "File '%s' is not an image."
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
552 |
#, fuzzy
|
553 |
msgid "Delete the file"
|
554 |
msgstr "Удалить поле"
|
555 |
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
557 |
#, fuzzy
|
558 |
msgid "Update the file"
|
559 |
msgstr "Обновить поле"
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
562 |
#, fuzzy
|
563 |
msgid "Update the picture"
|
564 |
msgstr "Обновить поле"
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
567 |
msgid "Picture URL:"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
#, php-format
|
572 |
msgid "New user registration on your site %s:"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
576 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
577 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
578 |
#, fuzzy, php-format
|
579 |
msgid "Username: %s"
|
580 |
msgstr "Имя пользователя"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
583 |
#, fuzzy, php-format
|
584 |
msgid "E-mail: %s"
|
585 |
msgstr "e-mail: %s"
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
588 |
#, php-format
|
589 |
msgid "[%s] New User Registration"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
594 |
#, php-format
|
595 |
msgid "Password: %s"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
599 |
#, php-format
|
600 |
msgid "[%s] Your username and password"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
605 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
607 |
#, php-format
|
608 |
msgid "%s: %s"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
612 |
#, php-format
|
613 |
msgid ""
|
614 |
"To activate your user, please click the following link:\n"
|
@@ -619,45 +633,45 @@ msgid ""
|
|
619 |
"\n"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
623 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
|
|
624 |
msgid "Your account is now active!"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
628 |
#, php-format
|
629 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
633 |
msgid "An error occurred during the activation"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
637 |
msgid "Invalid activation key."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
641 |
msgid "The site is already active."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
645 |
msgid "Could not create user"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
649 |
msgid "That username is already activated."
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
653 |
msgid "That username is currently reserved but may be available in a couple of days."
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
657 |
msgid "username and email used"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
661 |
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."
|
662 |
msgstr ""
|
663 |
|
@@ -682,17 +696,17 @@ msgid "Change order"
|
|
682 |
msgstr "Изменить порядок"
|
683 |
|
684 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
686 |
msgid "Min length"
|
687 |
msgstr "Мин длина"
|
688 |
|
689 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
691 |
msgid "Exact length"
|
692 |
msgstr "Точная длина"
|
693 |
|
694 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
696 |
msgid "Max length"
|
697 |
msgstr "Макс длина"
|
698 |
|
@@ -700,400 +714,420 @@ msgstr "Макс длина"
|
|
700 |
msgid "Exact or Max length"
|
701 |
msgstr "Точная или Макс длина"
|
702 |
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
704 |
msgid "changed to"
|
705 |
msgstr "изменена на"
|
706 |
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
708 |
msgid "You cannot give an order that misses some numbers"
|
709 |
msgstr "Вы не можете установить порядок, который пропускает некоторые числа"
|
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 "Nothing selected"
|
714 |
msgstr "Ничего не выбрано"
|
715 |
|
716 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
717 |
msgid "Field(s)"
|
718 |
msgstr "Поле(я)"
|
719 |
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
721 |
msgid "deleted correctly"
|
722 |
msgstr "удалены правильно"
|
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 "Min size"
|
727 |
msgstr "Мин размер"
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
731 |
msgid "Exact size"
|
732 |
msgstr "Точный размер"
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
735 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
736 |
msgid "Max size"
|
737 |
msgstr "Макс размер"
|
738 |
|
739 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
740 |
msgid "Exact or Max size"
|
741 |
msgstr "Точный или Макс размер"
|
742 |
|
743 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
744 |
msgid "Name not specified"
|
745 |
msgstr "Имя не задано"
|
746 |
|
747 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
748 |
msgid "Name cannot contains spaces"
|
749 |
msgstr "Имя не должно содержать пробелов"
|
750 |
|
751 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
752 |
msgid "Label not specified"
|
753 |
msgstr "Метка не выбрана"
|
754 |
|
755 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
756 |
msgid "not selected (with this type is necessary)"
|
757 |
msgstr "не выбрано (с этим типом необходимо)"
|
758 |
|
759 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
760 |
msgid "If you select"
|
761 |
msgstr "Если Вы выбрали"
|
762 |
|
763 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
764 |
msgid "you cannot select Min or Max"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
770 |
msgid "should be in the range of"
|
771 |
msgstr "должно быть в диапозоне"
|
772 |
|
773 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
775 |
msgid "Equal TO not specified"
|
776 |
msgstr "Равная ЧЕМУ не выбрано"
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
779 |
msgid "With checkbox type Equal TO can only be"
|
780 |
msgstr "Может быть только с флажком выбора типа Равная ЧЕМУ"
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
783 |
msgid "With radio type Equal TO can only be"
|
784 |
msgstr "Может быть только с переключателем выбора типа Равная ЧЕМУ"
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
787 |
msgid "With checkbox type Value can only be"
|
788 |
msgstr "Может быть только с флажками выбора типа Значение"
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
791 |
msgid "With radio type Value can only be"
|
792 |
msgstr "Может быть только с переключателем выбора типа Значение"
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
msgid "Field inserted correctly"
|
796 |
msgstr "Поле вставлено корректно"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
799 |
msgid "Field #"
|
800 |
msgstr "Поле #"
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
803 |
msgid "updated correctly"
|
804 |
msgstr "обновлено корректно"
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
msgid "Name inserted is just in the database, change to another one"
|
808 |
msgstr "Вставляемое имя уже есть в БД, выберите другое"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
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."
|
812 |
msgstr "Для добавления нового поля вам необходимо задать имя, тип и метку; значение и описание. Правила применяются в процессе регистрации пользователя."
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
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'"
|
816 |
msgstr "С <strong>переключателем(radio)</strong> и <strong>флажками(checkbox)</strong>: <em>Значение</em> и <em>равно ЧЕМУ</em> может быть либо 'Yes', либо 'No' - это означает 'выбрано' или 'не выбрано'"
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
819 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
820 |
msgstr "С <strong>выпадающим списком(drop-down)</strong>: вы можете добавить все опции в метку, например: метка/элемент1,элемент2,элемент3"
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
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"
|
824 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
827 |
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)"
|
828 |
msgstr "С <strong>picture-url</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; <em>равная ЧЕМУ</em> подразумевает max ширину для превью (высота будет установлена пропорционально)"
|
829 |
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
832 |
msgstr "С <strong>датой регистрации(registration-date)</strong>: <em>равна ЧЕМУ</em> подразумевает формат даты и времени"
|
833 |
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
#, fuzzy
|
836 |
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"
|
837 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
838 |
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
840 |
#, fuzzy
|
841 |
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"
|
842 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
843 |
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
850 |
msgid "Name"
|
851 |
msgstr "Имя"
|
852 |
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
msgid "Value"
|
860 |
msgstr "Значение"
|
861 |
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
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 |
msgid "Type"
|
867 |
msgstr "Тип"
|
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 |
msgid "Label"
|
874 |
msgstr "Метка"
|
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 |
msgid "Description"
|
881 |
msgstr "Описание"
|
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 |
msgid "Rules"
|
886 |
msgstr "Правила"
|
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 |
msgid "Actions"
|
891 |
msgstr "Действия"
|
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 |
#, fuzzy
|
896 |
msgid "Fieldset"
|
897 |
msgstr "Поля"
|
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 |
msgid "Can be empty"
|
902 |
msgstr "Может быть пустым"
|
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 "Check for E-mail syntax"
|
907 |
msgstr "Проверка синтаксиса E-mail"
|
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 "Can be modified"
|
912 |
msgstr "Может быть изменено"
|
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 |
msgid "Can be modified only if empty"
|
917 |
msgstr "Может быть изменено только если пустое"
|
918 |
|
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 |
msgid "Can be modified only by admin"
|
922 |
msgstr "Может быть изменено только админом"
|
923 |
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
926 |
msgid "Can be modified only by admin or if empty"
|
927 |
msgstr "Может быть изменено только админом или если пустое"
|
928 |
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
931 |
msgid "Cannot be modified"
|
932 |
msgstr "Не может быть изменено"
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
msgid "Should be equal TO"
|
937 |
msgstr "Долднадолжно быть равно ЧЕМУ"
|
938 |
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
941 |
msgid "Case sensitive"
|
942 |
msgstr "Чуствительность к регистру"
|
943 |
|
944 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
946 |
msgid "Regular Expression"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
950 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
951 |
msgid "Show the field in the registration"
|
952 |
msgstr "Показывать поле при регистрации"
|
953 |
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
msgid "Show the field in User's profile"
|
957 |
msgstr "Показывать поле в профиле пользователя"
|
958 |
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
961 |
msgid "Show the field in A&U Extended menu"
|
962 |
msgstr "Показывать поле в меню A&продвинутых П"
|
963 |
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
966 |
#, fuzzy
|
967 |
msgid "Show the field in the search engine"
|
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 |
#, fuzzy
|
973 |
msgid "Show the field in the blog"
|
974 |
msgstr "Показывать поле при регистрации"
|
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 |
#, fuzzy
|
979 |
msgid "Show the field if the role is at least:"
|
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 "Anonymous"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
988 |
msgid "Clear"
|
989 |
msgstr "Очистить"
|
990 |
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
992 |
msgid "Invert selection"
|
993 |
msgstr "Инветировать выбор"
|
994 |
|
995 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
996 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
997 |
msgstr "Вы действительно хотите удалить поле(я) и данные вставленные в них пользователями?"
|
998 |
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1000 |
msgid "WordPress Fields"
|
1001 |
msgstr "WordPress Fields"
|
1002 |
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
msgid "None!"
|
1005 |
msgstr "Нет!"
|
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 "Order"
|
1010 |
msgstr "Порядок"
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1013 |
msgid "Reset"
|
1014 |
msgstr "Сброс"
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
1017 |
#, fuzzy
|
1018 |
msgid "select"
|
1019 |
msgstr "Удалить"
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1022 |
#, php-format
|
1023 |
msgid "Users Matching \"%s\""
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1027 |
#, fuzzy
|
1028 |
msgid "Users Extended List"
|
1029 |
msgstr "Список Авторов и продвинутых пользователей"
|
1030 |
|
1031 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1032 |
msgid "Authors & Users Extended List"
|
1033 |
msgstr "Список Авторов и продвинутых пользователей"
|
1034 |
|
1035 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1036 |
#, php-format
|
1037 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1041 |
msgid "Search Users"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1045 |
msgid "« Back to All Users"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1049 |
#, fuzzy
|
1050 |
msgid "Users per page"
|
1051 |
msgstr "Таблица данных пользователей"
|
1052 |
|
1053 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1054 |
msgid "Apply"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1058 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1059 |
msgid "Username"
|
1060 |
msgstr "Имя пользователя"
|
1061 |
|
1062 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1063 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1064 |
msgid "E-mail"
|
1065 |
msgstr "E-mail"
|
1066 |
|
1067 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1068 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1069 |
#, fuzzy
|
1070 |
msgid "Role"
|
1071 |
msgstr "Правила"
|
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 "Posts"
|
1076 |
msgstr "Сообщения"
|
1077 |
|
1078 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1079 |
msgid "View posts by this author"
|
1080 |
msgstr "Просмотреть сообщения этого автора"
|
1081 |
|
1082 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1083 |
#, php-format
|
1084 |
msgid "e-mail: %s"
|
1085 |
msgstr "e-mail: %s"
|
1086 |
|
1087 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1088 |
#, fuzzy
|
1089 |
msgid "Update selected users"
|
1090 |
msgstr "Удалить выбранные поля"
|
1091 |
|
1092 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1093 |
#, fuzzy
|
1094 |
msgid "Update"
|
1095 |
msgstr "Обновить поле"
|
1096 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1097 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1098 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1099 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-30 14:08+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-01-30 14:08+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:407
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:446
|
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:476
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1218
|
34 |
msgid "ERROR"
|
35 |
msgstr "ОШИБКА"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
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:425
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "не может быть пустым."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:445
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "не верно"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
55 |
msgid "YES"
|
56 |
msgstr "ДА"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
59 |
msgid "NO"
|
60 |
msgstr "НЕТ"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:456
|
63 |
msgid "should be"
|
64 |
msgstr "должно быть"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
67 |
msgid "should be an image."
|
68 |
msgstr "должно быть изображение."
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:476
|
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:482
|
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:494
|
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:500
|
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:512
|
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:518
|
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:531
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
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:836
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:371
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
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:916
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
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:954
|
120 |
#, fuzzy
|
121 |
msgid "Change image"
|
122 |
msgstr "Изменить порядок"
|
123 |
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
|
125 |
msgid "Insert the code:"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
131 |
msgstr "Пункты полей"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:432
|
134 |
+
msgid "All"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:43
|
138 |
msgid "WordPress Fields table emptied"
|
139 |
msgstr "Таблица WordPress Fields очищена"
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
142 |
msgid "WordPress Fields table deleted"
|
143 |
msgstr "Таблица WordPress Fields удалена"
|
144 |
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
146 |
msgid "Extra Fields table emptied"
|
147 |
msgstr "Таблица Extra Fields очищена"
|
148 |
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
150 |
msgid "Extra Fields table deleted"
|
151 |
msgstr "Таблица Extra Fields удалена"
|
152 |
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
154 |
msgid "Users Data table emptied"
|
155 |
msgstr "Таблица пользовательских данных очищена"
|
156 |
|
157 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:76
|
158 |
msgid "Users Data table deleted"
|
159 |
msgstr "Таблица пользовательских данных удалена"
|
160 |
|
161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:87
|
162 |
msgid "Options set to default values"
|
163 |
msgstr "Установлены настройки по-умолчанию"
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:93
|
166 |
msgid "Options deleted"
|
167 |
msgstr "Настройки удалены"
|
168 |
|
169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
|
170 |
msgid "Options changed"
|
171 |
msgstr "Настройки изменены"
|
172 |
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
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:483
|
178 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:749
|
180 |
msgid "Options"
|
181 |
msgstr "Настройки"
|
182 |
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:440
|
185 |
msgid "Add a new Field"
|
186 |
msgstr "Добавить новое поле"
|
187 |
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:795
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
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:283
|
194 |
msgid "Extra Fields"
|
195 |
msgstr "Extra Fields"
|
196 |
|
197 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
198 |
msgid "Support the Cimy Project"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
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:510
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1236
|
207 |
msgid "SUCCESSFUL"
|
208 |
msgstr "УСПЕШНО"
|
209 |
|
210 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
|
211 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:830
|
212 |
msgid "Save Changes"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
216 |
msgid "General"
|
217 |
msgstr "Главное"
|
218 |
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
220 |
msgid "installed is"
|
221 |
msgstr "установлено"
|
222 |
|
223 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
224 |
msgid "OPTIONS DELETED!"
|
225 |
msgstr "НАСТРОЙКИ УДАЛЕНЫ!"
|
226 |
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
228 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
229 |
msgid "Fix the problem"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
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 "ВЕРСИИ НЕ СОВПАДАЮТ! Это из-за того, что Вы не деактивировали, а затем активировали плагин после обновления! Могут возникнуть проблемы..."
|
235 |
|
236 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
237 |
msgid "Picture/Avatar upload"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
241 |
msgid "is created and writable"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
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:564
|
249 |
#, fuzzy
|
250 |
msgid "Show all fields in the welcome email"
|
251 |
msgstr "Показывать поле при регистрации"
|
252 |
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
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:576
|
258 |
msgid "Enable email confirmation"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
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:582
|
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:589
|
270 |
msgid "Redirect to the source"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
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:601
|
278 |
msgid "No captcha"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
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:613
|
286 |
msgid "Public KEY"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
290 |
msgid "Private KEY"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
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:628
|
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:632
|
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:639
|
307 |
msgid "Change login/registration page logo"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
311 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:435
|
312 |
#, fuzzy
|
313 |
msgid "Delete the picture"
|
314 |
msgstr "Удалить поле"
|
315 |
|
316 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
|
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:653
|
321 |
msgid "Database"
|
322 |
msgstr "База данных"
|
323 |
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
326 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
|
328 |
msgid "select action"
|
329 |
msgstr "выберите действие"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
332 |
msgid "Default values"
|
333 |
msgstr "Значения по-умолчанию"
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:718
|
339 |
msgid "Delete"
|
340 |
msgstr "Удалить"
|
341 |
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:687
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
|
346 |
msgid "NOT PRESENT"
|
347 |
msgstr "НЕ СУЩЕСТВУЕТ"
|
348 |
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
350 |
msgid "WordPress Fields table"
|
351 |
msgstr "Таблица WordPress Fields"
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:700
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
356 |
msgid "Empty"
|
357 |
msgstr "Очистить"
|
358 |
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
360 |
msgid "Extra Fields table"
|
361 |
msgstr "Таблица Extra Fields"
|
362 |
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
|
364 |
msgid "Users Data table"
|
365 |
msgstr "Таблица данных пользователей"
|
366 |
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
368 |
msgid "all data inserted by users in all and only extra fields"
|
369 |
msgstr "все данные, вставленные пользователями во все и только в дополнительные поля"
|
370 |
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
372 |
msgid "Force tables creation"
|
373 |
msgstr "Force tables creation"
|
374 |
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
376 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
380 |
msgid "User Profile"
|
381 |
msgstr "Профиль пользователя"
|
382 |
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
|
384 |
#, fuzzy
|
385 |
msgid "Extra Fields section title"
|
386 |
msgstr "Таблица Extra Fields"
|
387 |
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
389 |
msgid "Fieldset's titles, separates with comma"
|
390 |
msgstr "Названия полей через запятую"
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
393 |
msgid "example: title1,title2,title3"
|
394 |
msgstr "пример: заголовок1,заголовок2, заголовок3"
|
395 |
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
|
397 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
403 |
msgid "Authors & Users Extended"
|
404 |
msgstr "Авторы и Продвинутые пользователи"
|
405 |
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
407 |
msgid "Hide username field"
|
408 |
msgstr "Скрыть поле с именем пользователя"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:760
|
411 |
msgid "Hide name field"
|
412 |
msgstr "Скрыть поле с именем"
|
413 |
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
|
415 |
msgid "Hide email field"
|
416 |
msgstr "Скрыть поле с email"
|
417 |
|
418 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:769
|
419 |
#, fuzzy
|
420 |
msgid "Hide role field"
|
421 |
msgstr "Скрыть поле с именем"
|
422 |
|
423 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:773
|
424 |
msgid "Hide website field"
|
425 |
msgstr "Скрыть поле с адресом сайта"
|
426 |
|
427 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:777
|
428 |
msgid "Hide n. posts field"
|
429 |
msgstr "Скрыть поле с № постов"
|
430 |
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
432 |
msgid "WordPress hidden fields"
|
433 |
msgstr "Скрытые поля WordPress"
|
434 |
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:785
|
436 |
msgid "Show password"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:789
|
440 |
msgid "Show confirmation password"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
|
444 |
msgid "Show password strength meter"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:797
|
448 |
msgid "Show first name"
|
449 |
msgstr "Показать имя"
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:801
|
452 |
msgid "Show last name"
|
453 |
msgstr "Показать фамилию"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:805
|
456 |
msgid "Show nickname"
|
457 |
msgstr "Показать ник"
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:809
|
460 |
msgid "Show website"
|
461 |
msgstr "Показать адрес сайта"
|
462 |
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:813
|
464 |
msgid "Show AIM"
|
465 |
msgstr "Показать AIM"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:817
|
468 |
msgid "Show Yahoo IM"
|
469 |
msgstr "Показать Yahoo IM"
|
470 |
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:821
|
472 |
msgid "Show Jabber / Google Talk"
|
473 |
msgstr "Показать Jabber / Google Talk"
|
474 |
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:825
|
476 |
msgid "Show Biographical Info"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
|
480 |
msgid "Password"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
484 |
msgid "Password confirmation"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
488 |
#, fuzzy
|
489 |
msgid "First name"
|
490 |
msgstr "Показать имя"
|
491 |
|
492 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
493 |
#, fuzzy
|
494 |
msgid "Last name"
|
495 |
msgstr "Показать фамилию"
|
496 |
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
498 |
#, fuzzy
|
499 |
msgid "Nickname"
|
500 |
msgstr "Имя"
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1541
|
505 |
msgid "Website"
|
506 |
msgstr "Адрес сайта"
|
507 |
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
|
509 |
msgid "AIM"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
|
513 |
#, fuzzy
|
514 |
msgid "Yahoo IM"
|
515 |
msgstr "Показать Yahoo IM"
|
516 |
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
|
518 |
#, fuzzy
|
519 |
msgid "Jabber / Google Talk"
|
520 |
msgstr "Показать Jabber / Google Talk"
|
521 |
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:400
|
523 |
msgid "Biographical Info"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:750
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
528 |
msgid "Fields"
|
529 |
msgstr "Поля"
|
530 |
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
533 |
msgid "A&U Extended"
|
534 |
msgstr "A и продвинутые П "
|
535 |
|
536 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
537 |
#, fuzzy
|
538 |
msgid "Users Extended"
|
539 |
msgstr "Список Авторов и продвинутых пользователей"
|
552 |
msgid "File '%s' is not an image."
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:431
|
556 |
#, fuzzy
|
557 |
msgid "Delete the file"
|
558 |
msgstr "Удалить поле"
|
559 |
|
560 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:432
|
561 |
#, fuzzy
|
562 |
msgid "Update the file"
|
563 |
msgstr "Обновить поле"
|
564 |
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:436
|
566 |
#, fuzzy
|
567 |
msgid "Update the picture"
|
568 |
msgstr "Обновить поле"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:456
|
571 |
msgid "Picture URL:"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:684
|
575 |
+
#, php-format
|
576 |
+
msgid "%s previous value: %s new value: %s"
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:699
|
580 |
+
#, php-format
|
581 |
+
msgid "%s (%s) has changed one or more fields"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
585 |
#, php-format
|
586 |
msgid "New user registration on your site %s:"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
592 |
#, fuzzy, php-format
|
593 |
msgid "Username: %s"
|
594 |
msgstr "Имя пользователя"
|
595 |
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
|
597 |
#, fuzzy, php-format
|
598 |
msgid "E-mail: %s"
|
599 |
msgstr "e-mail: %s"
|
600 |
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
|
602 |
#, php-format
|
603 |
msgid "[%s] New User Registration"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
608 |
#, php-format
|
609 |
msgid "Password: %s"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
613 |
#, php-format
|
614 |
msgid "[%s] Your username and password"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:100
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
619 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:124
|
621 |
#, php-format
|
622 |
msgid "%s: %s"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:198
|
626 |
#, php-format
|
627 |
msgid ""
|
628 |
"To activate your user, please click the following link:\n"
|
633 |
"\n"
|
634 |
msgstr ""
|
635 |
|
|
|
636 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
638 |
msgid "Your account is now active!"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
642 |
#, php-format
|
643 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:217
|
647 |
msgid "An error occurred during the activation"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
651 |
msgid "Invalid activation key."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:239
|
655 |
msgid "The site is already active."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:258
|
659 |
msgid "Could not create user"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:270
|
663 |
msgid "That username is already activated."
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:290
|
667 |
msgid "That username is currently reserved but may be available in a couple of days."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:293
|
671 |
msgid "username and email used"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:303
|
675 |
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."
|
676 |
msgstr ""
|
677 |
|
696 |
msgstr "Изменить порядок"
|
697 |
|
698 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
700 |
msgid "Min length"
|
701 |
msgstr "Мин длина"
|
702 |
|
703 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1045
|
705 |
msgid "Exact length"
|
706 |
msgstr "Точная длина"
|
707 |
|
708 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
709 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
|
710 |
msgid "Max length"
|
711 |
msgstr "Макс длина"
|
712 |
|
714 |
msgid "Exact or Max length"
|
715 |
msgstr "Точная или Макс длина"
|
716 |
|
717 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
718 |
msgid "changed to"
|
719 |
msgstr "изменена на"
|
720 |
|
721 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
722 |
msgid "You cannot give an order that misses some numbers"
|
723 |
msgstr "Вы не можете установить порядок, который пропускает некоторые числа"
|
724 |
|
725 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
727 |
msgid "Nothing selected"
|
728 |
msgstr "Ничего не выбрано"
|
729 |
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
731 |
msgid "Field(s)"
|
732 |
msgstr "Поле(я)"
|
733 |
|
734 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
735 |
msgid "deleted correctly"
|
736 |
msgstr "удалены правильно"
|
737 |
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:236
|
739 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1036
|
740 |
msgid "Min size"
|
741 |
msgstr "Мин размер"
|
742 |
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:237
|
744 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1037
|
745 |
msgid "Exact size"
|
746 |
msgstr "Точный размер"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
|
749 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
|
750 |
msgid "Max size"
|
751 |
msgstr "Макс размер"
|
752 |
|
753 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
754 |
msgid "Exact or Max size"
|
755 |
msgstr "Точный или Макс размер"
|
756 |
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
758 |
msgid "Name not specified"
|
759 |
msgstr "Имя не задано"
|
760 |
|
761 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
762 |
msgid "Name cannot contains spaces"
|
763 |
msgstr "Имя не должно содержать пробелов"
|
764 |
|
765 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:300
|
766 |
msgid "Label not specified"
|
767 |
msgstr "Метка не выбрана"
|
768 |
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:305
|
770 |
msgid "not selected (with this type is necessary)"
|
771 |
msgstr "не выбрано (с этим типом необходимо)"
|
772 |
|
773 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
774 |
msgid "If you select"
|
775 |
msgstr "Если Вы выбрали"
|
776 |
|
777 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
778 |
msgid "you cannot select Min or Max"
|
779 |
msgstr "Вы не можете выбрать Мин или Макс"
|
780 |
|
781 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
782 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:321
|
783 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
784 |
msgid "should be in the range of"
|
785 |
msgstr "должно быть в диапозоне"
|
786 |
|
787 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:336
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
789 |
msgid "Equal TO not specified"
|
790 |
msgstr "Равная ЧЕМУ не выбрано"
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:341
|
793 |
msgid "With checkbox type Equal TO can only be"
|
794 |
msgstr "Может быть только с флажком выбора типа Равная ЧЕМУ"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:344
|
797 |
msgid "With radio type Equal TO can only be"
|
798 |
msgstr "Может быть только с переключателем выбора типа Равная ЧЕМУ"
|
799 |
|
800 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:360
|
801 |
msgid "With checkbox type Value can only be"
|
802 |
msgstr "Может быть только с флажками выбора типа Значение"
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:363
|
805 |
msgid "With radio type Value can only be"
|
806 |
msgstr "Может быть только с переключателем выбора типа Значение"
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:420
|
809 |
msgid "Field inserted correctly"
|
810 |
msgstr "Поле вставлено корректно"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
813 |
msgid "Field #"
|
814 |
msgstr "Поле #"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
817 |
msgid "updated correctly"
|
818 |
msgstr "обновлено корректно"
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:425
|
821 |
msgid "Name inserted is just in the database, change to another one"
|
822 |
msgstr "Вставляемое имя уже есть в БД, выберите другое"
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
|
825 |
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."
|
826 |
msgstr "Для добавления нового поля вам необходимо задать имя, тип и метку; значение и описание. Правила применяются в процессе регистрации пользователя."
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
829 |
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'"
|
830 |
msgstr "С <strong>переключателем(radio)</strong> и <strong>флажками(checkbox)</strong>: <em>Значение</em> и <em>равно ЧЕМУ</em> может быть либо 'Yes', либо 'No' - это означает 'выбрано' или 'не выбрано'"
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
833 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
834 |
msgstr "С <strong>выпадающим списком(drop-down)</strong>: вы можете добавить все опции в метку, например: метка/элемент1,элемент2,элемент3"
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
837 |
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"
|
838 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
839 |
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
841 |
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)"
|
842 |
msgstr "С <strong>picture-url</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; <em>равная ЧЕМУ</em> подразумевает max ширину для превью (высота будет установлена пропорционально)"
|
843 |
|
844 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
|
845 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
846 |
msgstr "С <strong>датой регистрации(registration-date)</strong>: <em>равна ЧЕМУ</em> подразумевает формат даты и времени"
|
847 |
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
849 |
#, fuzzy
|
850 |
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"
|
851 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
854 |
#, fuzzy
|
855 |
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"
|
856 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
857 |
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1069
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1525
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1526
|
864 |
msgid "Name"
|
865 |
msgstr "Имя"
|
866 |
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1072
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
873 |
msgid "Value"
|
874 |
msgstr "Значение"
|
875 |
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
879 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1075
|
880 |
msgid "Type"
|
881 |
msgstr "Тип"
|
882 |
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
884 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
887 |
msgid "Label"
|
888 |
msgstr "Метка"
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
891 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:661
|
892 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1100
|
894 |
msgid "Description"
|
895 |
msgstr "Описание"
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
899 |
msgid "Rules"
|
900 |
msgstr "Правила"
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
903 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
904 |
msgid "Actions"
|
905 |
msgstr "Действия"
|
906 |
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
908 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
|
910 |
#, fuzzy
|
911 |
msgid "Fieldset"
|
912 |
msgstr "Поля"
|
913 |
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:673
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
916 |
msgid "Can be empty"
|
917 |
msgstr "Может быть пустым"
|
918 |
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
|
920 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
921 |
msgid "Check for E-mail syntax"
|
922 |
msgstr "Проверка синтаксиса E-mail"
|
923 |
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
926 |
msgid "Can be modified"
|
927 |
msgstr "Может быть изменено"
|
928 |
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
931 |
msgid "Can be modified only if empty"
|
932 |
msgstr "Может быть изменено только если пустое"
|
933 |
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
936 |
msgid "Can be modified only by admin"
|
937 |
msgstr "Может быть изменено только админом"
|
938 |
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:680
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1121
|
941 |
msgid "Can be modified only by admin or if empty"
|
942 |
msgstr "Может быть изменено только админом или если пустое"
|
943 |
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
945 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
946 |
msgid "Cannot be modified"
|
947 |
msgstr "Не может быть изменено"
|
948 |
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
951 |
msgid "Should be equal TO"
|
952 |
msgstr "Долднадолжно быть равно ЧЕМУ"
|
953 |
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1129
|
956 |
msgid "Case sensitive"
|
957 |
msgstr "Чуствительность к регистру"
|
958 |
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
961 |
msgid "Regular Expression"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:697
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
966 |
msgid "Show the field in the registration"
|
967 |
msgstr "Показывать поле при регистрации"
|
968 |
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
971 |
msgid "Show the field in User's profile"
|
972 |
msgstr "Показывать поле в профиле пользователя"
|
973 |
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:703
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
976 |
msgid "Show the field in A&U Extended menu"
|
977 |
msgstr "Показывать поле в меню A&продвинутых П"
|
978 |
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:706
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1150
|
981 |
#, fuzzy
|
982 |
msgid "Show the field in the search engine"
|
983 |
msgstr "Показывать поле при регистрации"
|
984 |
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
|
986 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
987 |
#, fuzzy
|
988 |
msgid "Show the field in the blog"
|
989 |
msgstr "Показывать поле при регистрации"
|
990 |
|
991 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:712
|
992 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1156
|
993 |
#, fuzzy
|
994 |
msgid "Show the field if the role is at least:"
|
995 |
msgstr "Показывать поле при регистрации"
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
999 |
msgid "Anonymous"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:724
|
1003 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1171
|
1004 |
+
msgid "Send an email to the admin if the user changes its value"
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
1008 |
msgid "Clear"
|
1009 |
msgstr "Очистить"
|
1010 |
|
1011 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:786
|
1012 |
msgid "Invert selection"
|
1013 |
msgstr "Инветировать выбор"
|
1014 |
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
1016 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1017 |
msgstr "Вы действительно хотите удалить поле(я) и данные вставленные в них пользователями?"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:793
|
1020 |
msgid "WordPress Fields"
|
1021 |
msgstr "WordPress Fields"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:806
|
1024 |
msgid "None!"
|
1025 |
msgstr "Нет!"
|
1026 |
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:821
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
1029 |
msgid "Order"
|
1030 |
msgstr "Порядок"
|
1031 |
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1033 |
msgid "Reset"
|
1034 |
msgstr "Сброс"
|
1035 |
|
1036 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1265
|
1037 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1038 |
#, fuzzy
|
1039 |
msgid "select"
|
1040 |
msgstr "Удалить"
|
1041 |
|
1042 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1043 |
#, php-format
|
1044 |
msgid "Users Matching \"%s\""
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1402
|
1048 |
#, fuzzy
|
1049 |
msgid "Users Extended List"
|
1050 |
msgstr "Список Авторов и продвинутых пользователей"
|
1051 |
|
1052 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1404
|
1053 |
msgid "Authors & Users Extended List"
|
1054 |
msgstr "Список Авторов и продвинутых пользователей"
|
1055 |
|
1056 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
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:1456
|
1062 |
msgid "Search Users"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
1066 |
msgid "« Back to All Users"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
1070 |
#, fuzzy
|
1071 |
msgid "Users per page"
|
1072 |
msgstr "Таблица данных пользователей"
|
1073 |
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
|
1075 |
msgid "Apply"
|
1076 |
msgstr ""
|
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 "Username"
|
1081 |
msgstr "Имя пользователя"
|
1082 |
|
1083 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1530
|
1084 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1531
|
1085 |
msgid "E-mail"
|
1086 |
msgstr "E-mail"
|
1087 |
|
1088 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
1089 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1536
|
1090 |
#, fuzzy
|
1091 |
msgid "Role"
|
1092 |
msgstr "Правила"
|
1093 |
|
1094 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1546
|
1096 |
msgid "Posts"
|
1097 |
msgstr "Сообщения"
|
1098 |
|
1099 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1682
|
1100 |
msgid "View posts by this author"
|
1101 |
msgstr "Просмотреть сообщения этого автора"
|
1102 |
|
1103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1713
|
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:1834
|
1109 |
+
#, fuzzy
|
1110 |
+
msgid "Change"
|
1111 |
+
msgstr "Изменить порядок"
|
1112 |
+
|
1113 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1859
|
1114 |
#, fuzzy
|
1115 |
msgid "Update selected users"
|
1116 |
msgstr "Удалить выбранные поля"
|
1117 |
|
1118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1880
|
1119 |
#, fuzzy
|
1120 |
msgid "Update"
|
1121 |
msgstr "Обновить поле"
|
1122 |
|
1123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1898
|
1124 |
+
msgid "OK"
|
1125 |
+
msgstr ""
|
1126 |
+
|
1127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1899
|
1128 |
+
msgid "Cancel"
|
1129 |
+
msgstr ""
|
1130 |
+
|
1131 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1132 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1133 |
msgstr ""
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,511 +16,515 @@ 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:403
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
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:
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
25 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
26 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
27 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
29 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
30 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
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/cimy_uef_profile.php:299
|
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:305
|
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 |
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 "Ändra ordning"
|
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:
|
129 |
msgid "no fieldset"
|
130 |
msgstr "Ingen fältsektion"
|
131 |
|
132 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
133 |
msgid "WordPress Fields table emptied"
|
134 |
msgstr "Wordpress-tabell tömdes"
|
135 |
|
136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
137 |
msgid "WordPress Fields table deleted"
|
138 |
msgstr "WordPress-tabell borttagen"
|
139 |
|
140 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
141 |
msgid "Extra Fields table emptied"
|
142 |
msgstr "Extrafältstabellsfält tömdes"
|
143 |
|
144 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
145 |
msgid "Extra Fields table deleted"
|
146 |
msgstr "Extra tabel fälter bottagen"
|
147 |
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
149 |
msgid "Users Data table emptied"
|
150 |
msgstr "Användardatatabellen tömdes"
|
151 |
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
153 |
msgid "Users Data table deleted"
|
154 |
msgstr "Användardatatabellen borttagen "
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
157 |
msgid "Options set to default values"
|
158 |
msgstr "Inställningar nollställda"
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
161 |
msgid "Options deleted"
|
162 |
msgstr "Inställninger borttagna"
|
163 |
|
164 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
165 |
msgid "Options changed"
|
166 |
msgstr "Inställningar ändrade"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
169 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
175 |
msgid "Options"
|
176 |
msgstr "Inställningar"
|
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_admin.php:
|
180 |
msgid "Add a new Field"
|
181 |
msgstr "Lägg till ett fält"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
186 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
187 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
|
189 |
msgid "Extra Fields"
|
190 |
msgstr "Extrafält"
|
191 |
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
193 |
msgid "Support the Cimy Project"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
197 |
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!"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
201 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
202 |
msgid "SUCCESSFUL"
|
203 |
msgstr "FRAMGÅNGSRIKT"
|
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_options.php:
|
207 |
msgid "Save Changes"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
msgid "General"
|
212 |
msgstr "Allmän"
|
213 |
|
214 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
215 |
msgid "installed is"
|
216 |
msgstr "är installerad"
|
217 |
|
218 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
219 |
msgid "OPTIONS DELETED!"
|
220 |
msgstr "INSTÄLLNINGAR BORTTAGNA"
|
221 |
|
222 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
msgid "Fix the problem"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
228 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
229 |
msgstr "VERSIONSKONFLIKT! deaktivera och aktivera pluginen efter uppdatering!"
|
230 |
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
232 |
msgid "Picture/Avatar upload"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
236 |
msgid "is created and writable"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
240 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
244 |
#, fuzzy
|
245 |
msgid "Show all fields in the welcome email"
|
246 |
msgstr "Visa fält vid registrering"
|
247 |
|
248 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
249 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
253 |
msgid "Enable email confirmation"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
257 |
msgid "user that registers should confirm its email address via a link click"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
261 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
265 |
msgid "Redirect to the source"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
269 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
273 |
msgid "No captcha"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
277 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
281 |
msgid "Public KEY"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
285 |
msgid "Private KEY"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
289 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
293 |
msgid "This captcha is probably weaker, but is easier for users"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
297 |
#, php-format
|
298 |
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>"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
302 |
msgid "Change login/registration page logo"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
307 |
msgid "Delete the picture"
|
308 |
msgstr "Ta bort bild"
|
309 |
|
310 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
311 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
315 |
msgid "Database"
|
316 |
msgstr "Databas"
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
319 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
320 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
322 |
msgid "select action"
|
323 |
msgstr "Välj åtgärd"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
msgid "Default values"
|
327 |
msgstr "Standardvärden"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
331 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
332 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
333 |
msgid "Delete"
|
334 |
msgstr "Ta bort"
|
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 "NOT PRESENT"
|
341 |
msgstr "EXISTERAR EJ"
|
342 |
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
344 |
msgid "WordPress Fields table"
|
345 |
msgstr "WordPress Fälttabell"
|
346 |
|
347 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
348 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
350 |
msgid "Empty"
|
351 |
msgstr "Töm"
|
352 |
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
354 |
msgid "Extra Fields table"
|
355 |
msgstr "Extra Fälttabell"
|
356 |
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
358 |
msgid "Users Data table"
|
359 |
msgstr "Användardatatabell"
|
360 |
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
362 |
msgid "all data inserted by users in all and only extra fields"
|
363 |
msgstr "all data skapad av användare "
|
364 |
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
366 |
msgid "Force tables creation"
|
367 |
msgstr "Forcera skapande av tabeller"
|
368 |
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
370 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
374 |
msgid "User Profile"
|
375 |
msgstr "Användarprofil"
|
376 |
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
378 |
msgid "Extra Fields section title"
|
379 |
msgstr "Titel för fältsektion"
|
380 |
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
382 |
msgid "Fieldset's titles, separates with comma"
|
383 |
msgstr "Fältsektionstitlar, separerade med kommatecken"
|
384 |
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
386 |
msgid "example: title1,title2,title3"
|
387 |
msgstr "tex.: Titel1,Titel2,Titel3"
|
388 |
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
390 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
396 |
msgid "Authors & Users Extended"
|
397 |
msgstr "Utökad författar- och användarhantering"
|
398 |
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
400 |
msgid "Hide username field"
|
401 |
msgstr "Göm fältet användarnamn"
|
402 |
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
404 |
msgid "Hide name field"
|
405 |
msgstr "Göm fältet namn"
|
406 |
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
408 |
msgid "Hide email field"
|
409 |
msgstr "Göm fältet e-post"
|
410 |
|
411 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
412 |
msgid "Hide role field"
|
413 |
msgstr "Göm fältet roll"
|
414 |
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
416 |
msgid "Hide website field"
|
417 |
msgstr "Göm fältet webbsajt"
|
418 |
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
420 |
msgid "Hide n. posts field"
|
421 |
msgstr "Göm n. postfält"
|
422 |
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
424 |
msgid "WordPress hidden fields"
|
425 |
msgstr "Wordpress gömda fält"
|
426 |
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
428 |
msgid "Show password"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
432 |
msgid "Show confirmation password"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
436 |
msgid "Show password strength meter"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
440 |
msgid "Show first name"
|
441 |
msgstr "Visa förnamn"
|
442 |
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
444 |
msgid "Show last name"
|
445 |
msgstr "Visa efternamn"
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
448 |
msgid "Show nickname"
|
449 |
msgstr "Visa smeknamn"
|
450 |
|
451 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
452 |
msgid "Show website"
|
453 |
msgstr "Visa webbsajt"
|
454 |
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
456 |
msgid "Show AIM"
|
457 |
msgstr "Visa AIM"
|
458 |
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
460 |
msgid "Show Yahoo IM"
|
461 |
msgstr "Visa Yahoo IM"
|
462 |
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
464 |
msgid "Show Jabber / Google Talk"
|
465 |
msgstr "Visa Jabber / Google Talk"
|
466 |
|
467 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
468 |
msgid "Show Biographical Info"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
472 |
msgid "Password"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
476 |
msgid "Password confirmation"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
480 |
msgid "First name"
|
481 |
msgstr "Förnamn"
|
482 |
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
484 |
msgid "Last name"
|
485 |
msgstr "Efternamn"
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
488 |
msgid "Nickname"
|
489 |
msgstr "Smeknamn"
|
490 |
|
491 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
494 |
msgid "Website"
|
495 |
msgstr "Webbsajt"
|
496 |
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
498 |
msgid "AIM"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
502 |
msgid "Yahoo IM"
|
503 |
msgstr "Yahoo IM"
|
504 |
|
505 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
506 |
msgid "Jabber / Google Talk"
|
507 |
msgstr "Jabber / Google Talk"
|
508 |
|
509 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
510 |
msgid "Biographical Info"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
514 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
515 |
msgid "Fields"
|
516 |
msgstr "Fält"
|
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_user_extra_fields.php:
|
520 |
msgid "A&U Extended"
|
521 |
msgstr "F&A Utökat"
|
522 |
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
524 |
msgid "Users Extended"
|
525 |
msgstr "Extra fält för användare"
|
526 |
|
@@ -538,66 +542,76 @@ msgstr ""
|
|
538 |
msgid "File '%s' is not an image."
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
542 |
#, fuzzy
|
543 |
msgid "Delete the file"
|
544 |
msgstr "Ta bort bild"
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
547 |
#, fuzzy
|
548 |
msgid "Update the file"
|
549 |
msgstr "Uppdatra bild"
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
552 |
msgid "Update the picture"
|
553 |
msgstr "Uppdatra bild"
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
556 |
msgid "Picture URL:"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
560 |
#, php-format
|
561 |
msgid "New user registration on your site %s:"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
567 |
#, fuzzy, php-format
|
568 |
msgid "Username: %s"
|
569 |
msgstr "Användarnamn"
|
570 |
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
572 |
#, fuzzy, php-format
|
573 |
msgid "E-mail: %s"
|
574 |
msgstr "e-post: %s"
|
575 |
|
576 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
577 |
#, php-format
|
578 |
msgid "[%s] New User Registration"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
583 |
#, php-format
|
584 |
msgid "Password: %s"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
588 |
#, php-format
|
589 |
msgid "[%s] Your username and password"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
596 |
#, php-format
|
597 |
msgid "%s: %s"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
601 |
#, php-format
|
602 |
msgid ""
|
603 |
"To activate your user, please click the following link:\n"
|
@@ -608,45 +622,45 @@ msgid ""
|
|
608 |
"\n"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
612 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
|
|
613 |
msgid "Your account is now active!"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
617 |
#, php-format
|
618 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
622 |
msgid "An error occurred during the activation"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
626 |
msgid "Invalid activation key."
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
630 |
msgid "The site is already active."
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
634 |
msgid "Could not create user"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
638 |
msgid "That username is already activated."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
642 |
msgid "That username is currently reserved but may be available in a couple of days."
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
646 |
msgid "username and email used"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
650 |
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."
|
651 |
msgstr ""
|
652 |
|
@@ -671,17 +685,17 @@ msgid "Change order"
|
|
671 |
msgstr "Ändra ordning"
|
672 |
|
673 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
674 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
675 |
msgid "Min length"
|
676 |
msgstr "Min. längd"
|
677 |
|
678 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
679 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
680 |
msgid "Exact length"
|
681 |
msgstr "Exakt längd"
|
682 |
|
683 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
684 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
685 |
msgid "Max length"
|
686 |
msgstr "Max. längd"
|
687 |
|
@@ -689,395 +703,415 @@ msgstr "Max. längd"
|
|
689 |
msgid "Exact or Max length"
|
690 |
msgstr "Exakt eller max. längd"
|
691 |
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
693 |
msgid "changed to"
|
694 |
msgstr "ändrad till"
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
697 |
msgid "You cannot give an order that misses some numbers"
|
698 |
msgstr "Du kan inte ange en ordningsföljd där vissa nummer saknas"
|
699 |
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
702 |
msgid "Nothing selected"
|
703 |
msgstr "Inget valt"
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
706 |
msgid "Field(s)"
|
707 |
msgstr "Fält"
|
708 |
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
710 |
msgid "deleted correctly"
|
711 |
msgstr "korrekt raderade"
|
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 "Min size"
|
716 |
msgstr "Min. storlek"
|
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 "Exact size"
|
721 |
msgstr "Exakt storlek"
|
722 |
|
723 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
724 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
725 |
msgid "Max size"
|
726 |
msgstr "Max. storlek"
|
727 |
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
729 |
msgid "Exact or Max size"
|
730 |
msgstr "Exakt eller Max. storlek"
|
731 |
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
733 |
msgid "Name not specified"
|
734 |
msgstr "Namn ej angivet"
|
735 |
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
737 |
msgid "Name cannot contains spaces"
|
738 |
msgstr "Namnet får inte ha mellanrum"
|
739 |
|
740 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
741 |
msgid "Label not specified"
|
742 |
msgstr "Etikett ej angiven"
|
743 |
|
744 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
745 |
msgid "not selected (with this type is necessary)"
|
746 |
msgstr "Ej vald (krävs vid denna typ)"
|
747 |
|
748 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
749 |
msgid "If you select"
|
750 |
msgstr "Om du väljer"
|
751 |
|
752 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
753 |
msgid "you cannot select Min or Max"
|
754 |
msgstr "Min eller Max kan ej väljas"
|
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 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
759 |
msgid "should be in the range of"
|
760 |
msgstr "skall vara mellan"
|
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 "Equal TO not specified"
|
765 |
msgstr "Lika MED ej angivet"
|
766 |
|
767 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
768 |
msgid "With checkbox type Equal TO can only be"
|
769 |
msgstr "När typen är checkbox kan LIKA MED endast vara"
|
770 |
|
771 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
772 |
msgid "With radio type Equal TO can only be"
|
773 |
msgstr "När typen är radio kan LIKA MED endast vara"
|
774 |
|
775 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
776 |
msgid "With checkbox type Value can only be"
|
777 |
msgstr "När typen är checkbox kan värde endast vara"
|
778 |
|
779 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
780 |
msgid "With radio type Value can only be"
|
781 |
msgstr "När typen är radio kan värde endast vara"
|
782 |
|
783 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
784 |
msgid "Field inserted correctly"
|
785 |
msgstr "Fält upplagt korrekt"
|
786 |
|
787 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
788 |
msgid "Field #"
|
789 |
msgstr "Fält #"
|
790 |
|
791 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
792 |
msgid "updated correctly"
|
793 |
msgstr "korrekt uppdaterat"
|
794 |
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
796 |
msgid "Name inserted is just in the database, change to another one"
|
797 |
msgstr "Namnet du valt är redan i bruk, välj ett annat"
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
800 |
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."
|
801 |
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."
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
804 |
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'"
|
805 |
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."
|
806 |
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
808 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
809 |
msgstr "<strong>drop-down</strong>: Du måste ange alla alternativ i etikett t.ex: Etikett/värde1,värde2,värde3"
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
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"
|
813 |
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."
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
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)"
|
817 |
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)."
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
820 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
821 |
msgstr "Med <strong>registration-datum</strong>: <em>LIKA MED</em> betyder datum- och tidsformat."
|
822 |
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
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"
|
825 |
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."
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
#, fuzzy
|
829 |
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"
|
830 |
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."
|
831 |
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
833 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
837 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
838 |
msgid "Name"
|
839 |
msgstr "Namn"
|
840 |
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
msgid "Value"
|
848 |
msgstr "Värde"
|
849 |
|
850 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
msgid "Type"
|
855 |
msgstr "Typ"
|
856 |
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
861 |
msgid "Label"
|
862 |
msgstr "Etikett"
|
863 |
|
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 |
msgid "Description"
|
869 |
msgstr "Beskrivning"
|
870 |
|
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 "Rules"
|
874 |
msgstr "Regler"
|
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 |
msgid "Actions"
|
879 |
msgstr "Åtgärder"
|
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 |
msgid "Fieldset"
|
884 |
msgstr "Fältsektion"
|
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 |
msgid "Can be empty"
|
889 |
msgstr "Kan vara töm"
|
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 |
msgid "Check for E-mail syntax"
|
894 |
msgstr "Kontrollera epostadressen"
|
895 |
|
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 "Can be modified"
|
899 |
msgstr "Kan ändras"
|
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 |
msgid "Can be modified only if empty"
|
904 |
msgstr "Kan ändras endast om fältet är tomt"
|
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 "Can be modified only by admin"
|
909 |
msgstr "Kan endast ändras av en administratör"
|
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 "Can be modified only by admin or if empty"
|
914 |
msgstr "Kan ändras endast av en administratör eller om fältet är tomt"
|
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 "Cannot be modified"
|
919 |
msgstr "Kan inte ändras"
|
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 "Should be equal TO"
|
924 |
msgstr "Skall vara LIKA MED"
|
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 "Case sensitive"
|
929 |
msgstr "Skiftlägeskänslig"
|
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 "Regular Expression"
|
934 |
msgstr ""
|
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 "Show the field in the registration"
|
939 |
msgstr "Visa fält vid registrering"
|
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 "Show the field in User's profile"
|
944 |
msgstr "Visa fält i Användarprofil"
|
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 "Show the field in A&U Extended menu"
|
949 |
msgstr "Visa fält i menyn F&A Utökat"
|
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 |
#, fuzzy
|
954 |
msgid "Show the field in the search engine"
|
955 |
msgstr "Visa fält vid registrering"
|
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 |
#, fuzzy
|
960 |
msgid "Show the field in the blog"
|
961 |
msgstr "Visa fält vid registrering"
|
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 |
#, fuzzy
|
966 |
msgid "Show the field if the role is at least:"
|
967 |
msgstr "Visa fält vid registrering"
|
968 |
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
970 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
971 |
msgid "Anonymous"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
975 |
msgid "Clear"
|
976 |
msgstr "Nollställ"
|
977 |
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
979 |
msgid "Invert selection"
|
980 |
msgstr "Omvänd markering"
|
981 |
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
983 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
984 |
msgstr "Är du säker på at du vill ta bort detta fält och all ev data som matats in?"
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
987 |
msgid "WordPress Fields"
|
988 |
msgstr "WordPress-fält"
|
989 |
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
991 |
msgid "None!"
|
992 |
msgstr "Ingen!"
|
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 |
msgid "Order"
|
997 |
msgstr "Ordningsföljd"
|
998 |
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1000 |
msgid "Reset"
|
1001 |
msgstr "Nollställ"
|
1002 |
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
1004 |
#, fuzzy
|
1005 |
msgid "select"
|
1006 |
msgstr "Ta bort"
|
1007 |
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1009 |
#, php-format
|
1010 |
msgid "Users Matching \"%s\""
|
1011 |
msgstr "Användare som Matchar \"%s\""
|
1012 |
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1014 |
msgid "Users Extended List"
|
1015 |
msgstr "Lista med extra fält för användaren"
|
1016 |
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1018 |
msgid "Authors & Users Extended List"
|
1019 |
msgstr "Lista över författare & användare (utökat)"
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1022 |
#, php-format
|
1023 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1027 |
msgid "Search Users"
|
1028 |
msgstr "Sök Användare"
|
1029 |
|
1030 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1031 |
msgid "« Back to All Users"
|
1032 |
msgstr "« Tillbaka till Alla Användare"
|
1033 |
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1035 |
msgid "Users per page"
|
1036 |
msgstr "Användare per sida"
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1039 |
msgid "Apply"
|
1040 |
msgstr ""
|
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 |
msgid "Username"
|
1045 |
msgstr "Användarnamn"
|
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 |
msgid "E-mail"
|
1050 |
msgstr "E-post"
|
1051 |
|
1052 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1053 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1054 |
msgid "Role"
|
1055 |
msgstr "Roll"
|
1056 |
|
1057 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1058 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1059 |
msgid "Posts"
|
1060 |
msgstr "Postningar"
|
1061 |
|
1062 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1063 |
msgid "View posts by this author"
|
1064 |
msgstr "Visa postningar av dessa skribent"
|
1065 |
|
1066 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1067 |
#, php-format
|
1068 |
msgid "e-mail: %s"
|
1069 |
msgstr "e-post: %s"
|
1070 |
|
1071 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
1072 |
#, fuzzy
|
1073 |
msgid "Update selected users"
|
1074 |
msgstr "Ta bort valda fälter"
|
1075 |
|
1076 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1077 |
#, fuzzy
|
1078 |
msgid "Update"
|
1079 |
msgstr "Uppdatera fält"
|
1080 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1081 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1082 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1083 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-30 14:08+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-01-30 14:08+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:407
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:446
|
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:476
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1218
|
34 |
msgid "ERROR"
|
35 |
msgstr "FEL"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
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:425
|
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:445
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
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:451
|
55 |
msgid "YES"
|
56 |
msgstr "JA"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
59 |
msgid "NO"
|
60 |
msgstr "NEJ"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:456
|
63 |
msgid "should be"
|
64 |
msgstr "skall vara"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
|
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:476
|
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:482
|
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:494
|
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:500
|
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:512
|
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:518
|
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:531
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
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:836
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:371
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
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:916
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
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:954
|
120 |
#, fuzzy
|
121 |
msgid "Change image"
|
122 |
msgstr "Ändra ordning"
|
123 |
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
|
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 "Ingen fältsektion"
|
131 |
|
132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:432
|
133 |
+
msgid "All"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:43
|
137 |
msgid "WordPress Fields table emptied"
|
138 |
msgstr "Wordpress-tabell tömdes"
|
139 |
|
140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
141 |
msgid "WordPress Fields table deleted"
|
142 |
msgstr "WordPress-tabell borttagen"
|
143 |
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
145 |
msgid "Extra Fields table emptied"
|
146 |
msgstr "Extrafältstabellsfält tömdes"
|
147 |
|
148 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
149 |
msgid "Extra Fields table deleted"
|
150 |
msgstr "Extra tabel fälter bottagen"
|
151 |
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
153 |
msgid "Users Data table emptied"
|
154 |
msgstr "Användardatatabellen tömdes"
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:76
|
157 |
msgid "Users Data table deleted"
|
158 |
msgstr "Användardatatabellen borttagen "
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:87
|
161 |
msgid "Options set to default values"
|
162 |
msgstr "Inställningar nollställda"
|
163 |
|
164 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:93
|
165 |
msgid "Options deleted"
|
166 |
msgstr "Inställninger borttagna"
|
167 |
|
168 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
|
169 |
msgid "Options changed"
|
170 |
msgstr "Inställningar ändrade"
|
171 |
|
172 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
173 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
177 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
|
178 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:749
|
179 |
msgid "Options"
|
180 |
msgstr "Inställningar"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:440
|
184 |
msgid "Add a new Field"
|
185 |
msgstr "Lägg till ett fält"
|
186 |
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:795
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
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:283
|
193 |
msgid "Extra Fields"
|
194 |
msgstr "Extrafält"
|
195 |
|
196 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
197 |
msgid "Support the Cimy Project"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
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:510
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1236
|
206 |
msgid "SUCCESSFUL"
|
207 |
msgstr "FRAMGÅNGSRIKT"
|
208 |
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
|
210 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:830
|
211 |
msgid "Save Changes"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
215 |
msgid "General"
|
216 |
msgstr "Allmän"
|
217 |
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
219 |
msgid "installed is"
|
220 |
msgstr "är installerad"
|
221 |
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
223 |
msgid "OPTIONS DELETED!"
|
224 |
msgstr "INSTÄLLNINGAR BORTTAGNA"
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
228 |
msgid "Fix the problem"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
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 "VERSIONSKONFLIKT! deaktivera och aktivera pluginen efter uppdatering!"
|
234 |
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
236 |
msgid "Picture/Avatar upload"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
240 |
msgid "is created and writable"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
244 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
248 |
#, fuzzy
|
249 |
msgid "Show all fields in the welcome email"
|
250 |
msgstr "Visa fält vid registrering"
|
251 |
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
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:576
|
257 |
msgid "Enable email confirmation"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
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:582
|
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:589
|
269 |
msgid "Redirect to the source"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
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:601
|
277 |
msgid "No captcha"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
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:613
|
285 |
msgid "Public KEY"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
289 |
msgid "Private KEY"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
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:628
|
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:632
|
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:639
|
306 |
msgid "Change login/registration page logo"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:435
|
311 |
msgid "Delete the picture"
|
312 |
msgstr "Ta bort bild"
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
|
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:653
|
319 |
msgid "Database"
|
320 |
msgstr "Databas"
|
321 |
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
|
326 |
msgid "select action"
|
327 |
msgstr "Välj åtgärd"
|
328 |
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
330 |
msgid "Default values"
|
331 |
msgstr "Standardvärden"
|
332 |
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:718
|
337 |
msgid "Delete"
|
338 |
msgstr "Ta bort"
|
339 |
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
|
341 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:687
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
|
344 |
msgid "NOT PRESENT"
|
345 |
msgstr "EXISTERAR EJ"
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
348 |
msgid "WordPress Fields table"
|
349 |
msgstr "WordPress Fälttabell"
|
350 |
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:700
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
354 |
msgid "Empty"
|
355 |
msgstr "Töm"
|
356 |
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
358 |
msgid "Extra Fields table"
|
359 |
msgstr "Extra Fälttabell"
|
360 |
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
|
362 |
msgid "Users Data table"
|
363 |
msgstr "Användardatatabell"
|
364 |
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
366 |
msgid "all data inserted by users in all and only extra fields"
|
367 |
msgstr "all data skapad av användare "
|
368 |
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
370 |
msgid "Force tables creation"
|
371 |
msgstr "Forcera skapande av tabeller"
|
372 |
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
374 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
378 |
msgid "User Profile"
|
379 |
msgstr "Användarprofil"
|
380 |
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
|
382 |
msgid "Extra Fields section title"
|
383 |
msgstr "Titel för fältsektion"
|
384 |
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
386 |
msgid "Fieldset's titles, separates with comma"
|
387 |
msgstr "Fältsektionstitlar, separerade med kommatecken"
|
388 |
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
390 |
msgid "example: title1,title2,title3"
|
391 |
msgstr "tex.: Titel1,Titel2,Titel3"
|
392 |
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
|
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 ""
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
400 |
msgid "Authors & Users Extended"
|
401 |
msgstr "Utökad författar- och användarhantering"
|
402 |
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
404 |
msgid "Hide username field"
|
405 |
msgstr "Göm fältet användarnamn"
|
406 |
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:760
|
408 |
msgid "Hide name field"
|
409 |
msgstr "Göm fältet namn"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
|
412 |
msgid "Hide email field"
|
413 |
msgstr "Göm fältet e-post"
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:769
|
416 |
msgid "Hide role field"
|
417 |
msgstr "Göm fältet roll"
|
418 |
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:773
|
420 |
msgid "Hide website field"
|
421 |
msgstr "Göm fältet webbsajt"
|
422 |
|
423 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:777
|
424 |
msgid "Hide n. posts field"
|
425 |
msgstr "Göm n. postfält"
|
426 |
|
427 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
428 |
msgid "WordPress hidden fields"
|
429 |
msgstr "Wordpress gömda fält"
|
430 |
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:785
|
432 |
msgid "Show password"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:789
|
436 |
msgid "Show confirmation password"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
|
440 |
msgid "Show password strength meter"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:797
|
444 |
msgid "Show first name"
|
445 |
msgstr "Visa förnamn"
|
446 |
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:801
|
448 |
msgid "Show last name"
|
449 |
msgstr "Visa efternamn"
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:805
|
452 |
msgid "Show nickname"
|
453 |
msgstr "Visa smeknamn"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:809
|
456 |
msgid "Show website"
|
457 |
msgstr "Visa webbsajt"
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:813
|
460 |
msgid "Show AIM"
|
461 |
msgstr "Visa AIM"
|
462 |
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:817
|
464 |
msgid "Show Yahoo IM"
|
465 |
msgstr "Visa Yahoo IM"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:821
|
468 |
msgid "Show Jabber / Google Talk"
|
469 |
msgstr "Visa Jabber / Google Talk"
|
470 |
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:825
|
472 |
msgid "Show Biographical Info"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
|
476 |
msgid "Password"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
480 |
msgid "Password confirmation"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
484 |
msgid "First name"
|
485 |
msgstr "Förnamn"
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
488 |
msgid "Last name"
|
489 |
msgstr "Efternamn"
|
490 |
|
491 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
492 |
msgid "Nickname"
|
493 |
msgstr "Smeknamn"
|
494 |
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1541
|
498 |
msgid "Website"
|
499 |
msgstr "Webbsajt"
|
500 |
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
|
502 |
msgid "AIM"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
|
506 |
msgid "Yahoo IM"
|
507 |
msgstr "Yahoo IM"
|
508 |
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
|
510 |
msgid "Jabber / Google Talk"
|
511 |
msgstr "Jabber / Google Talk"
|
512 |
|
513 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:400
|
514 |
msgid "Biographical Info"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:750
|
518 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
519 |
msgid "Fields"
|
520 |
msgstr "Fält"
|
521 |
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
|
524 |
msgid "A&U Extended"
|
525 |
msgstr "F&A Utökat"
|
526 |
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:755
|
528 |
msgid "Users Extended"
|
529 |
msgstr "Extra fält för användare"
|
530 |
|
542 |
msgid "File '%s' is not an image."
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:431
|
546 |
#, fuzzy
|
547 |
msgid "Delete the file"
|
548 |
msgstr "Ta bort bild"
|
549 |
|
550 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:432
|
551 |
#, fuzzy
|
552 |
msgid "Update the file"
|
553 |
msgstr "Uppdatra bild"
|
554 |
|
555 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:436
|
556 |
msgid "Update the picture"
|
557 |
msgstr "Uppdatra bild"
|
558 |
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:456
|
560 |
msgid "Picture URL:"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:684
|
564 |
+
#, php-format
|
565 |
+
msgid "%s previous value: %s new value: %s"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:699
|
569 |
+
#, php-format
|
570 |
+
msgid "%s (%s) has changed one or more fields"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
574 |
#, php-format
|
575 |
msgid "New user registration on your site %s:"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
581 |
#, fuzzy, php-format
|
582 |
msgid "Username: %s"
|
583 |
msgstr "Användarnamn"
|
584 |
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
|
586 |
#, fuzzy, php-format
|
587 |
msgid "E-mail: %s"
|
588 |
msgstr "e-post: %s"
|
589 |
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
|
591 |
#, php-format
|
592 |
msgid "[%s] New User Registration"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
597 |
#, php-format
|
598 |
msgid "Password: %s"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
602 |
#, php-format
|
603 |
msgid "[%s] Your username and password"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:100
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
608 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:124
|
610 |
#, php-format
|
611 |
msgid "%s: %s"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:198
|
615 |
#, php-format
|
616 |
msgid ""
|
617 |
"To activate your user, please click the following link:\n"
|
622 |
"\n"
|
623 |
msgstr ""
|
624 |
|
|
|
625 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
627 |
msgid "Your account is now active!"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
631 |
#, php-format
|
632 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:217
|
636 |
msgid "An error occurred during the activation"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
640 |
msgid "Invalid activation key."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:239
|
644 |
msgid "The site is already active."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:258
|
648 |
msgid "Could not create user"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:270
|
652 |
msgid "That username is already activated."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:290
|
656 |
msgid "That username is currently reserved but may be available in a couple of days."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:293
|
660 |
msgid "username and email used"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:303
|
664 |
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."
|
665 |
msgstr ""
|
666 |
|
685 |
msgstr "Ändra ordning"
|
686 |
|
687 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
688 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
689 |
msgid "Min length"
|
690 |
msgstr "Min. längd"
|
691 |
|
692 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1045
|
694 |
msgid "Exact length"
|
695 |
msgstr "Exakt längd"
|
696 |
|
697 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
|
699 |
msgid "Max length"
|
700 |
msgstr "Max. längd"
|
701 |
|
703 |
msgid "Exact or Max length"
|
704 |
msgstr "Exakt eller max. längd"
|
705 |
|
706 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
707 |
msgid "changed to"
|
708 |
msgstr "ändrad till"
|
709 |
|
710 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
711 |
msgid "You cannot give an order that misses some numbers"
|
712 |
msgstr "Du kan inte ange en ordningsföljd där vissa nummer saknas"
|
713 |
|
714 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
715 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
716 |
msgid "Nothing selected"
|
717 |
msgstr "Inget valt"
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
720 |
msgid "Field(s)"
|
721 |
msgstr "Fält"
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
724 |
msgid "deleted correctly"
|
725 |
msgstr "korrekt raderade"
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:236
|
728 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1036
|
729 |
msgid "Min size"
|
730 |
msgstr "Min. storlek"
|
731 |
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:237
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1037
|
734 |
msgid "Exact size"
|
735 |
msgstr "Exakt storlek"
|
736 |
|
737 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
|
739 |
msgid "Max size"
|
740 |
msgstr "Max. storlek"
|
741 |
|
742 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
743 |
msgid "Exact or Max size"
|
744 |
msgstr "Exakt eller Max. storlek"
|
745 |
|
746 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
747 |
msgid "Name not specified"
|
748 |
msgstr "Namn ej angivet"
|
749 |
|
750 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
751 |
msgid "Name cannot contains spaces"
|
752 |
msgstr "Namnet får inte ha mellanrum"
|
753 |
|
754 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:300
|
755 |
msgid "Label not specified"
|
756 |
msgstr "Etikett ej angiven"
|
757 |
|
758 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:305
|
759 |
msgid "not selected (with this type is necessary)"
|
760 |
msgstr "Ej vald (krävs vid denna typ)"
|
761 |
|
762 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
763 |
msgid "If you select"
|
764 |
msgstr "Om du väljer"
|
765 |
|
766 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
767 |
msgid "you cannot select Min or Max"
|
768 |
msgstr "Min eller Max kan ej väljas"
|
769 |
|
770 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:321
|
772 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
773 |
msgid "should be in the range of"
|
774 |
msgstr "skall vara mellan"
|
775 |
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:336
|
777 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
778 |
msgid "Equal TO not specified"
|
779 |
msgstr "Lika MED ej angivet"
|
780 |
|
781 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:341
|
782 |
msgid "With checkbox type Equal TO can only be"
|
783 |
msgstr "När typen är checkbox kan LIKA MED endast vara"
|
784 |
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:344
|
786 |
msgid "With radio type Equal TO can only be"
|
787 |
msgstr "När typen är radio kan LIKA MED endast vara"
|
788 |
|
789 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:360
|
790 |
msgid "With checkbox type Value can only be"
|
791 |
msgstr "När typen är checkbox kan värde endast vara"
|
792 |
|
793 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:363
|
794 |
msgid "With radio type Value can only be"
|
795 |
msgstr "När typen är radio kan värde endast vara"
|
796 |
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:420
|
798 |
msgid "Field inserted correctly"
|
799 |
msgstr "Fält upplagt korrekt"
|
800 |
|
801 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
802 |
msgid "Field #"
|
803 |
msgstr "Fält #"
|
804 |
|
805 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
806 |
msgid "updated correctly"
|
807 |
msgstr "korrekt uppdaterat"
|
808 |
|
809 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:425
|
810 |
msgid "Name inserted is just in the database, change to another one"
|
811 |
msgstr "Namnet du valt är redan i bruk, välj ett annat"
|
812 |
|
813 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
|
814 |
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."
|
815 |
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."
|
816 |
|
817 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
818 |
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'"
|
819 |
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."
|
820 |
|
821 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
822 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
823 |
msgstr "<strong>drop-down</strong>: Du måste ange alla alternativ i etikett t.ex: Etikett/värde1,värde2,värde3"
|
824 |
|
825 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
826 |
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"
|
827 |
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."
|
828 |
|
829 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
830 |
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)"
|
831 |
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)."
|
832 |
|
833 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
|
834 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
835 |
msgstr "Med <strong>registration-datum</strong>: <em>LIKA MED</em> betyder datum- och tidsformat."
|
836 |
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
838 |
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"
|
839 |
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."
|
840 |
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
842 |
#, fuzzy
|
843 |
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"
|
844 |
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."
|
845 |
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1069
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1525
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1526
|
852 |
msgid "Name"
|
853 |
msgstr "Namn"
|
854 |
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1072
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
|
861 |
msgid "Value"
|
862 |
msgstr "Värde"
|
863 |
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1075
|
868 |
msgid "Type"
|
869 |
msgstr "Typ"
|
870 |
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
875 |
msgid "Label"
|
876 |
msgstr "Etikett"
|
877 |
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
879 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:661
|
880 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1100
|
882 |
msgid "Description"
|
883 |
msgstr "Beskrivning"
|
884 |
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
887 |
msgid "Rules"
|
888 |
msgstr "Regler"
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
891 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
892 |
msgid "Actions"
|
893 |
msgstr "Åtgärder"
|
894 |
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
896 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
|
898 |
msgid "Fieldset"
|
899 |
msgstr "Fältsektion"
|
900 |
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:673
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
903 |
msgid "Can be empty"
|
904 |
msgstr "Kan vara töm"
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
908 |
msgid "Check for E-mail syntax"
|
909 |
msgstr "Kontrollera epostadressen"
|
910 |
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
912 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
913 |
msgid "Can be modified"
|
914 |
msgstr "Kan ändras"
|
915 |
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
918 |
msgid "Can be modified only if empty"
|
919 |
msgstr "Kan ändras endast om fältet är tomt"
|
920 |
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
923 |
msgid "Can be modified only by admin"
|
924 |
msgstr "Kan endast ändras av en administratör"
|
925 |
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:680
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1121
|
928 |
msgid "Can be modified only by admin or if empty"
|
929 |
msgstr "Kan ändras endast av en administratör eller om fältet är tomt"
|
930 |
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
933 |
msgid "Cannot be modified"
|
934 |
msgstr "Kan inte ändras"
|
935 |
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
938 |
msgid "Should be equal TO"
|
939 |
msgstr "Skall vara LIKA MED"
|
940 |
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1129
|
943 |
msgid "Case sensitive"
|
944 |
msgstr "Skiftlägeskänslig"
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
948 |
msgid "Regular Expression"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:697
|
952 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
953 |
msgid "Show the field in the registration"
|
954 |
msgstr "Visa fält vid registrering"
|
955 |
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
958 |
msgid "Show the field in User's profile"
|
959 |
msgstr "Visa fält i Användarprofil"
|
960 |
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:703
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
963 |
msgid "Show the field in A&U Extended menu"
|
964 |
msgstr "Visa fält i menyn F&A Utökat"
|
965 |
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:706
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1150
|
968 |
#, fuzzy
|
969 |
msgid "Show the field in the search engine"
|
970 |
msgstr "Visa fält vid registrering"
|
971 |
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
974 |
#, fuzzy
|
975 |
msgid "Show the field in the blog"
|
976 |
msgstr "Visa fält vid registrering"
|
977 |
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:712
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1156
|
980 |
#, fuzzy
|
981 |
msgid "Show the field if the role is at least:"
|
982 |
msgstr "Visa fält vid registrering"
|
983 |
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
986 |
msgid "Anonymous"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:724
|
990 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1171
|
991 |
+
msgid "Send an email to the admin if the user changes its value"
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
995 |
msgid "Clear"
|
996 |
msgstr "Nollställ"
|
997 |
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:786
|
999 |
msgid "Invert selection"
|
1000 |
msgstr "Omvänd markering"
|
1001 |
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
1003 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1004 |
msgstr "Är du säker på at du vill ta bort detta fält och all ev data som matats in?"
|
1005 |
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:793
|
1007 |
msgid "WordPress Fields"
|
1008 |
msgstr "WordPress-fält"
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:806
|
1011 |
msgid "None!"
|
1012 |
msgstr "Ingen!"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:821
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
1016 |
msgid "Order"
|
1017 |
msgstr "Ordningsföljd"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1020 |
msgid "Reset"
|
1021 |
msgstr "Nollställ"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1265
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1025 |
#, fuzzy
|
1026 |
msgid "select"
|
1027 |
msgstr "Ta bort"
|
1028 |
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1030 |
#, php-format
|
1031 |
msgid "Users Matching \"%s\""
|
1032 |
msgstr "Användare som Matchar \"%s\""
|
1033 |
|
1034 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1402
|
1035 |
msgid "Users Extended List"
|
1036 |
msgstr "Lista med extra fält för användaren"
|
1037 |
|
1038 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1404
|
1039 |
msgid "Authors & Users Extended List"
|
1040 |
msgstr "Lista över författare & användare (utökat)"
|
1041 |
|
1042 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
1043 |
#, php-format
|
1044 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
|
1048 |
msgid "Search Users"
|
1049 |
msgstr "Sök Användare"
|
1050 |
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
1052 |
msgid "« Back to All Users"
|
1053 |
msgstr "« Tillbaka till Alla Användare"
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
1056 |
msgid "Users per page"
|
1057 |
msgstr "Användare per sida"
|
1058 |
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
|
1060 |
msgid "Apply"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1065 |
msgid "Username"
|
1066 |
msgstr "Användarnamn"
|
1067 |
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1530
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1531
|
1070 |
msgid "E-mail"
|
1071 |
msgstr "E-post"
|
1072 |
|
1073 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1536
|
1075 |
msgid "Role"
|
1076 |
msgstr "Roll"
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
1079 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1546
|
1080 |
msgid "Posts"
|
1081 |
msgstr "Postningar"
|
1082 |
|
1083 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1682
|
1084 |
msgid "View posts by this author"
|
1085 |
msgstr "Visa postningar av dessa skribent"
|
1086 |
|
1087 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1713
|
1088 |
#, php-format
|
1089 |
msgid "e-mail: %s"
|
1090 |
msgstr "e-post: %s"
|
1091 |
|
1092 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1834
|
1093 |
+
#, fuzzy
|
1094 |
+
msgid "Change"
|
1095 |
+
msgstr "Ändra ordning"
|
1096 |
+
|
1097 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1859
|
1098 |
#, fuzzy
|
1099 |
msgid "Update selected users"
|
1100 |
msgstr "Ta bort valda fälter"
|
1101 |
|
1102 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1880
|
1103 |
#, fuzzy
|
1104 |
msgid "Update"
|
1105 |
msgstr "Uppdatera fält"
|
1106 |
|
1107 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1898
|
1108 |
+
msgid "OK"
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1899
|
1112 |
+
msgid "Cancel"
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1116 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1117 |
msgstr ""
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Website link: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra
|
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar, recaptcha, captcha
|
6 |
Requires at least: 3.0
|
7 |
Tested up to: 3.0
|
8 |
-
Stable tag: 2.0.
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar, recaptcha, captcha
|
6 |
Requires at least: 3.0
|
7 |
Tested up to: 3.0
|
8 |
+
Stable tag: 2.0.2
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|