Version Description
Download this release
Release Info
Developer | Cimmo |
Plugin | Cimy User Extra Fields |
Version | 2.5.0 |
Comparing to | |
See all releases |
Code changes from version 2.4.2 to 2.5.0
- README_OFFICIAL.txt +7 -2
- cimy_uef_db.php +5 -1
- cimy_uef_email_handler.php +2 -2
- cimy_uef_init.php +7 -0
- cimy_uef_options.php +7 -1
- cimy_uef_register.php +74 -23
- cimy_user_extra_fields.php +41 -5
- css/cimy_uef_register_nousername.css +7 -0
- langs/cimy_uef-ar.mo +0 -0
- langs/cimy_uef-ar.po +341 -331
- langs/cimy_uef-be_BY.mo +0 -0
- langs/cimy_uef-be_BY.po +340 -330
- langs/cimy_uef-bg_BG.mo +0 -0
- langs/cimy_uef-bg_BG.po +340 -330
- langs/cimy_uef-da_DK.mo +0 -0
- langs/cimy_uef-da_DK.po +340 -330
- langs/cimy_uef-de_DE.mo +0 -0
- langs/cimy_uef-de_DE.po +340 -330
- langs/cimy_uef-es_ES.mo +0 -0
- langs/cimy_uef-es_ES.po +340 -330
- langs/cimy_uef-fr_FR.mo +0 -0
- langs/cimy_uef-fr_FR.po +340 -330
- langs/cimy_uef-it_IT.mo +0 -0
- langs/cimy_uef-it_IT.po +339 -330
- langs/cimy_uef-pl_PL.mo +0 -0
- langs/cimy_uef-pl_PL.po +340 -330
- langs/cimy_uef-pt_BR.mo +0 -0
- langs/cimy_uef-pt_BR.po +340 -330
- langs/cimy_uef-ru_RU.mo +0 -0
- langs/cimy_uef-ru_RU.po +340 -330
- langs/cimy_uef-sv_SE.mo +0 -0
- langs/cimy_uef-sv_SE.po +340 -330
- langs/cimy_uef-uk.mo +0 -0
- langs/cimy_uef-uk.po +340 -330
- readme.txt +4 -3
README_OFFICIAL.txt
CHANGED
@@ -42,6 +42,7 @@ Other features:
|
|
42 |
* custom registration logo (non MS installations)
|
43 |
* email confirmation (non MS installations)
|
44 |
* form confirmation (non MS installations)
|
|
|
45 |
* much more!
|
46 |
|
47 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
@@ -79,10 +80,10 @@ Rules are:
|
|
79 |
|
80 |
Visualization rules
|
81 |
* field can be hidden during registration
|
82 |
-
[all]
|
83 |
|
84 |
* field can be hidden in user's profile
|
85 |
-
[all]
|
86 |
|
87 |
* field can be hidden in Users Extended page
|
88 |
[all]
|
@@ -626,6 +627,10 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
|
|
626 |
|
627 |
|
628 |
CHANGELOG:
|
|
|
|
|
|
|
|
|
629 |
v2.4.2 - 18/02/2013
|
630 |
- Fixed missing 'cimy_update_ExtraFields' PHP warning (introduced in v2.4.1) (thanks to Ashton Clark and vtxyzzy)
|
631 |
- Fixed WordPress MS per-blog installation was not working for non main sites since WordPress MS 3.5 (thanks to Denis Lam)
|
42 |
* custom registration logo (non MS installations)
|
43 |
* email confirmation (non MS installations)
|
44 |
* form confirmation (non MS installations)
|
45 |
+
* username equal to the email address (non MS installations)
|
46 |
* much more!
|
47 |
|
48 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
80 |
|
81 |
Visualization rules
|
82 |
* field can be hidden during registration
|
83 |
+
[all except the email address]
|
84 |
|
85 |
* field can be hidden in user's profile
|
86 |
+
[all except the WordPress fields]
|
87 |
|
88 |
* field can be hidden in Users Extended page
|
89 |
[all]
|
627 |
|
628 |
|
629 |
CHANGELOG:
|
630 |
+
v2.5.0 - 18/03/2013
|
631 |
+
- Added support for hiding the username under standard WP registration, email will substitute it (non-MS only) (thanks to Matt Hoffman)
|
632 |
+
- Added support for WordPress hidden fields rules under profile update
|
633 |
+
|
634 |
v2.4.2 - 18/02/2013
|
635 |
- Fixed missing 'cimy_update_ExtraFields' PHP warning (introduced in v2.4.1) (thanks to Ashton Clark and vtxyzzy)
|
636 |
- Fixed WordPress MS per-blog installation was not working for non main sites since WordPress MS 3.5 (thanks to Denis Lam)
|
cimy_uef_db.php
CHANGED
@@ -289,6 +289,10 @@ function cimy_plugin_install () {
|
|
289 |
}
|
290 |
}
|
291 |
|
|
|
|
|
|
|
|
|
292 |
$options['version'] = $cimy_uef_version;
|
293 |
|
294 |
cimy_set_options($options);
|
@@ -365,7 +369,7 @@ function cimy_manage_db($command) {
|
|
365 |
'extra_fields_title' => __("Extra Fields", $cimy_uef_domain),
|
366 |
'users_per_page' => 50,
|
367 |
'aue_hidden_fields' => array('website', 'posts', 'email'),
|
368 |
-
'wp_hidden_fields' => array(),
|
369 |
'fieldset_title' => '',
|
370 |
'registration-logo' => '',
|
371 |
'captcha' => 'none',
|
289 |
}
|
290 |
}
|
291 |
|
292 |
+
if (version_compare($options['version'], "2.4.2", "<=") === true) {
|
293 |
+
$options["wp_hidden_fields"][] = "username";
|
294 |
+
}
|
295 |
+
|
296 |
$options['version'] = $cimy_uef_version;
|
297 |
|
298 |
cimy_set_options($options);
|
369 |
'extra_fields_title' => __("Extra Fields", $cimy_uef_domain),
|
370 |
'users_per_page' => 50,
|
371 |
'aue_hidden_fields' => array('website', 'posts', 'email'),
|
372 |
+
'wp_hidden_fields' => array('username'),
|
373 |
'fieldset_title' => '',
|
374 |
'registration-logo' => '',
|
375 |
'captcha' => 'none',
|
cimy_uef_email_handler.php
CHANGED
@@ -96,13 +96,13 @@ function cimy_uef_mail_fields($user = false, $activation_data = false) {
|
|
96 |
if (empty($meta)) {
|
97 |
// normal fields
|
98 |
foreach ($wp_hidden_fields as $field) {
|
99 |
-
if ((!empty($user->{$field["
|
100 |
$label = $field["label"];
|
101 |
if ($field["type"] == "dropdown" || $field["type"] == "dropdown-multi") {
|
102 |
$ret = cimy_dropDownOptions($label, "");
|
103 |
$label = $ret['label'];
|
104 |
}
|
105 |
-
$message.= sprintf(__('%s: %s', $cimy_uef_domain), $label, $user->{$field["
|
106 |
}
|
107 |
}
|
108 |
}
|
96 |
if (empty($meta)) {
|
97 |
// normal fields
|
98 |
foreach ($wp_hidden_fields as $field) {
|
99 |
+
if ((!empty($user->{$field["userdata_name"]})) && ($field["type"] != "password")) {
|
100 |
$label = $field["label"];
|
101 |
if ($field["type"] == "dropdown" || $field["type"] == "dropdown-multi") {
|
102 |
$ret = cimy_dropDownOptions($label, "");
|
103 |
$label = $ret['label'];
|
104 |
}
|
105 |
+
$message.= sprintf(__('%s: %s', $cimy_uef_domain), $label, $user->{$field["userdata_name"]}) . "\r\n";
|
106 |
}
|
107 |
}
|
108 |
}
|
cimy_uef_init.php
CHANGED
@@ -77,10 +77,17 @@ function cimy_uef_theme_my_login_fix() {
|
|
77 |
|
78 |
function cimy_uef_register_css() {
|
79 |
global $cuef_css_webpath;
|
|
|
|
|
80 |
wp_register_style("cimy_uef_register", $cuef_css_webpath."/cimy_uef_register.css", false, false);
|
81 |
wp_enqueue_style("cimy_uef_register");
|
|
|
|
|
82 |
if (!is_multisite()) {
|
83 |
$options = cimy_get_options();
|
|
|
|
|
|
|
84 |
if (in_array("password", $options["wp_hidden_fields"])) {
|
85 |
// this CSS will hide the label "A password will be e-mailed to you."
|
86 |
wp_register_style("cimy_uef_register_nopasswordlabel", $cuef_css_webpath."/cimy_uef_register_nopasswordlabel.css", false, false);
|
77 |
|
78 |
function cimy_uef_register_css() {
|
79 |
global $cuef_css_webpath;
|
80 |
+
if (empty($_GET['action']) || $_GET['action'] != 'register')
|
81 |
+
return;
|
82 |
wp_register_style("cimy_uef_register", $cuef_css_webpath."/cimy_uef_register.css", false, false);
|
83 |
wp_enqueue_style("cimy_uef_register");
|
84 |
+
wp_register_style("cimy_uef_register_nousername", $cuef_css_webpath."/cimy_uef_register_nousername.css", false, false);
|
85 |
+
|
86 |
if (!is_multisite()) {
|
87 |
$options = cimy_get_options();
|
88 |
+
if (!in_array("username", $options["wp_hidden_fields"])) {
|
89 |
+
wp_enqueue_style("cimy_uef_register_nousername");
|
90 |
+
}
|
91 |
if (in_array("password", $options["wp_hidden_fields"])) {
|
92 |
// this CSS will hide the label "A password will be e-mailed to you."
|
93 |
wp_register_style("cimy_uef_register_nopasswordlabel", $cuef_css_webpath."/cimy_uef_register_nopasswordlabel.css", false, false);
|
cimy_uef_options.php
CHANGED
@@ -177,7 +177,7 @@ function cimy_save_options() {
|
|
177 |
else
|
178 |
$options['password_meter'] = false;
|
179 |
|
180 |
-
$db_wp_fields_independent = array("firstname", "lastname", "nickname", "website", "aim", "yahoo", "jgt", "bio-info");
|
181 |
foreach ($db_wp_fields_independent as $wp_field_independent) {
|
182 |
if (isset($_POST['show_wp_'.$wp_field_independent])) {
|
183 |
array_push($options['wp_hidden_fields'], $wp_field_independent);
|
@@ -679,6 +679,12 @@ function cimy_show_options($results, $embedded) {
|
|
679 |
<br />
|
680 |
<h3><?php _e("WordPress hidden fields", $cimy_uef_domain); ?></h3>
|
681 |
<table class="form-table">
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
<tr>
|
683 |
<th scope="row" width="40%"><input type="checkbox" name="show_wp_password" value="1"<?php checked(true, in_array('password', $options['wp_hidden_fields']), true); disabled(true, $db_wp_fields < 0, true); ?> /> <?php _e("Show password", $cimy_uef_domain); ?></th>
|
684 |
<td width="60%"></td>
|
177 |
else
|
178 |
$options['password_meter'] = false;
|
179 |
|
180 |
+
$db_wp_fields_independent = array("username", "firstname", "lastname", "nickname", "website", "aim", "yahoo", "jgt", "bio-info");
|
181 |
foreach ($db_wp_fields_independent as $wp_field_independent) {
|
182 |
if (isset($_POST['show_wp_'.$wp_field_independent])) {
|
183 |
array_push($options['wp_hidden_fields'], $wp_field_independent);
|
679 |
<br />
|
680 |
<h3><?php _e("WordPress hidden fields", $cimy_uef_domain); ?></h3>
|
681 |
<table class="form-table">
|
682 |
+
<?php if (!is_multisite()) { ?>
|
683 |
+
<tr>
|
684 |
+
<th scope="row" width="40%"><input type="checkbox" name="show_wp_username" value="1"<?php checked(true, in_array('username', $options['wp_hidden_fields']), true); disabled(true, $db_wp_fields < 0, true); ?> /> <?php _e("Show username", $cimy_uef_domain); ?></th>
|
685 |
+
<td width="60%"><?php _e("when unchecked the email address will be used as username", $cimy_uef_domain); ?></td>
|
686 |
+
</tr>
|
687 |
+
<?php } ?>
|
688 |
<tr>
|
689 |
<th scope="row" width="40%"><input type="checkbox" name="show_wp_password" value="1"<?php checked(true, in_array('password', $options['wp_hidden_fields']), true); disabled(true, $db_wp_fields < 0, true); ?> /> <?php _e("Show password", $cimy_uef_domain); ?></th>
|
690 |
<td width="60%"></td>
|
cimy_uef_register.php
CHANGED
@@ -257,7 +257,7 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
|
|
257 |
|
258 |
$userdata = array();
|
259 |
$userdata['ID'] = $user_id;
|
260 |
-
$userdata[$wp_hidden_fields[$f_name]['
|
261 |
|
262 |
wp_update_user($userdata);
|
263 |
}
|
@@ -315,11 +315,19 @@ function cimy_profile_check_wrapper($errors, $update, $user) {
|
|
315 |
}
|
316 |
|
317 |
function cimy_registration_check($user_login, $user_email, $errors) {
|
318 |
-
global $wpdb, $rule_canbeempty, $rule_email, $rule_maxlen, $fields_name_prefix, $wp_fields_name_prefix, $rule_equalto_case_sensitive, $apply_equalto_rule, $cimy_uef_domain, $cimy_uef_file_types, $rule_equalto_regex, $user_level, $cimy_uef_file_images_types;
|
319 |
|
320 |
if (cimy_is_at_least_wordpress35())
|
321 |
cimy_switch_to_blog();
|
322 |
$options = cimy_get_options();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
|
324 |
// code for confirmation email check
|
325 |
if ((!is_multisite()) && ($options["confirm_email"])) {
|
@@ -340,11 +348,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
340 |
$from_profile = false;
|
341 |
if (!empty($_POST["from"]) && $_POST["from"] == "profile")
|
342 |
$from_profile = true;
|
343 |
-
|
344 |
-
if ($from_profile)
|
345 |
-
$i = 2;
|
346 |
-
else
|
347 |
-
$i = 1;
|
348 |
|
349 |
// do first for the WP fields then for EXTRA fields
|
350 |
while ($i <= 2) {
|
@@ -365,7 +369,15 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
365 |
$label = esc_html($thisField['LABEL']);
|
366 |
$description = $thisField['DESCRIPTION'];
|
367 |
$unique_id = $prefix.$field_id;
|
368 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
369 |
$field_id_data = $input_name."_".$field_id."_data";
|
370 |
|
371 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
@@ -396,10 +408,17 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
396 |
continue;
|
397 |
|
398 |
if ($from_profile) {
|
399 |
-
$
|
400 |
-
|
401 |
-
|
402 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
}
|
404 |
|
405 |
if (isset($_POST[$input_name])) {
|
@@ -636,6 +655,22 @@ function cimy_registration_captcha_check($user_login, $user_email, $errors) {
|
|
636 |
return $errors;
|
637 |
}
|
638 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
639 |
// show_type == 0 - normal form
|
640 |
// show_type == 1 - search form, all fields are text, password fields are skipped
|
641 |
// show_type == 2 - confirmation form, all fields are plain text, images can be cropped
|
@@ -679,6 +714,19 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
679 |
|
680 |
// confirmation page, all fields are plain text + hidden fields to carry over values
|
681 |
if ($show_type == 2) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
$upload_dir = cimy_uef_get_dir_or_filename("");
|
683 |
$dirs = glob($upload_dir.".cimytemp_*.tmp");
|
684 |
if (is_array($dirs)) {
|
@@ -693,16 +741,14 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
693 |
}
|
694 |
}
|
695 |
|
696 |
-
$temp_user_login = ".cimytemp_".sanitize_user($
|
697 |
?>
|
698 |
-
|
699 |
-
|
700 |
-
<
|
701 |
-
|
702 |
-
|
703 |
-
<
|
704 |
-
</p>
|
705 |
-
<br />
|
706 |
<?php
|
707 |
}
|
708 |
|
@@ -740,6 +786,9 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
740 |
$field_id_data = $input_name."_".$field_id."_data";
|
741 |
$advanced_options = cimy_uef_parse_advanced_options($rules["advanced_options"]);
|
742 |
|
|
|
|
|
|
|
743 |
// showing the search then there is no need for upload buttons
|
744 |
if ($show_type == 1) {
|
745 |
if ($type == "password")
|
@@ -1057,8 +1106,10 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
1057 |
else if ($type == "hidden") {
|
1058 |
$form_object.= " />".$obj_value2;
|
1059 |
if (in_array($old_type, $cimy_uef_file_types)) {
|
1060 |
-
|
1061 |
-
|
|
|
|
|
1062 |
}
|
1063 |
if ((in_array($old_type, $cimy_uef_file_images_types)) && (is_file($file_on_server))) {
|
1064 |
echo '<img id="'.esc_attr($field_id_data).'" src="'.esc_attr($value).'" alt="picture" /><br />';
|
257 |
|
258 |
$userdata = array();
|
259 |
$userdata['ID'] = $user_id;
|
260 |
+
$userdata[$wp_hidden_fields[$f_name]['userdata_name']] = $data;
|
261 |
|
262 |
wp_update_user($userdata);
|
263 |
}
|
315 |
}
|
316 |
|
317 |
function cimy_registration_check($user_login, $user_email, $errors) {
|
318 |
+
global $wpdb, $rule_canbeempty, $rule_email, $rule_maxlen, $fields_name_prefix, $wp_fields_name_prefix, $rule_equalto_case_sensitive, $apply_equalto_rule, $cimy_uef_domain, $cimy_uef_file_types, $rule_equalto_regex, $user_level, $cimy_uef_file_images_types, $wp_hidden_fields;
|
319 |
|
320 |
if (cimy_is_at_least_wordpress35())
|
321 |
cimy_switch_to_blog();
|
322 |
$options = cimy_get_options();
|
323 |
+
if (!in_array("username", $options["wp_hidden_fields"])) {
|
324 |
+
// ok username is empty, we are replacing it with the email, don't bother
|
325 |
+
if (isset($errors->errors['empty_username']))
|
326 |
+
unset($errors->errors['empty_username']);
|
327 |
+
// remove username exists error only if email exists error is there covering for us
|
328 |
+
if (isset($errors->errors['username_exists']) && isset($errors->errors['email_exists']))
|
329 |
+
unset($errors->errors['username_exists']);
|
330 |
+
}
|
331 |
|
332 |
// code for confirmation email check
|
333 |
if ((!is_multisite()) && ($options["confirm_email"])) {
|
348 |
$from_profile = false;
|
349 |
if (!empty($_POST["from"]) && $_POST["from"] == "profile")
|
350 |
$from_profile = true;
|
351 |
+
$i = 1;
|
|
|
|
|
|
|
|
|
352 |
|
353 |
// do first for the WP fields then for EXTRA fields
|
354 |
while ($i <= 2) {
|
369 |
$label = esc_html($thisField['LABEL']);
|
370 |
$description = $thisField['DESCRIPTION'];
|
371 |
$unique_id = $prefix.$field_id;
|
372 |
+
// Usernames cannot be changed after the registration
|
373 |
+
if ($i == 1 && $name == "USERNAME" && $from_profile)
|
374 |
+
continue;
|
375 |
+
|
376 |
+
// use WP input name for the username (always) or when updating the profile
|
377 |
+
if ($i == 1 && ($name == "USERNAME" || $from_profile))
|
378 |
+
$input_name = $wp_hidden_fields[strtolower($name)]['post_name'];
|
379 |
+
else
|
380 |
+
$input_name = $prefix.esc_attr($name);
|
381 |
$field_id_data = $input_name."_".$field_id."_data";
|
382 |
|
383 |
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
408 |
continue;
|
409 |
|
410 |
if ($from_profile) {
|
411 |
+
if ($i == 1) {
|
412 |
+
// Do not bother with the rules if encountered an empty password field on profile update
|
413 |
+
if ($type == "password")
|
414 |
+
continue;
|
415 |
+
}
|
416 |
+
else {
|
417 |
+
$old_value = $_POST[$input_name."_".$field_id."_prev_value"];
|
418 |
+
// Hey, no need to check for rules if anyway I can't edit due to low permissions, neeeext!
|
419 |
+
if (cimy_uef_is_field_disabled($type, $rules['edit'], $old_value))
|
420 |
+
continue;
|
421 |
+
}
|
422 |
}
|
423 |
|
424 |
if (isset($_POST[$input_name])) {
|
655 |
return $errors;
|
656 |
}
|
657 |
|
658 |
+
function cimy_uef_sanitize_username($username, $raw_username, $strict) {
|
659 |
+
$options = cimy_get_options();
|
660 |
+
if (!in_array("username", $options["wp_hidden_fields"]) && !empty($_POST['user_email']) && is_email($_POST['user_email']) && !empty($_GET['action']) && $_GET['action'] == 'register') {
|
661 |
+
$username = $_POST['user_email'];
|
662 |
+
}
|
663 |
+
return $username;
|
664 |
+
}
|
665 |
+
|
666 |
+
function cimy_uef_validate_username($valid, $username) {
|
667 |
+
$options = cimy_get_options();
|
668 |
+
if (!in_array("username", $options["wp_hidden_fields"]) && empty($username) && !empty($_GET['action']) && $_GET['action'] == 'register') {
|
669 |
+
return true;
|
670 |
+
}
|
671 |
+
return $valid;
|
672 |
+
}
|
673 |
+
|
674 |
// show_type == 0 - normal form
|
675 |
// show_type == 1 - search form, all fields are text, password fields are skipped
|
676 |
// show_type == 2 - confirmation form, all fields are plain text, images can be cropped
|
714 |
|
715 |
// confirmation page, all fields are plain text + hidden fields to carry over values
|
716 |
if ($show_type == 2) {
|
717 |
+
$user_email = $_POST["user_email"];
|
718 |
+
if (in_array("username", $options["wp_hidden_fields"])) {
|
719 |
+
$username = $_POST["user_login"];
|
720 |
+
?>
|
721 |
+
<p id="user_login_p">
|
722 |
+
<label for="user_login"><?php _e("Username"); ?> </label><?php echo esc_html($username); ?>
|
723 |
+
</p>
|
724 |
+
<?php
|
725 |
+
}
|
726 |
+
else {
|
727 |
+
$username = $user_email;
|
728 |
+
}
|
729 |
+
|
730 |
$upload_dir = cimy_uef_get_dir_or_filename("");
|
731 |
$dirs = glob($upload_dir.".cimytemp_*.tmp");
|
732 |
if (is_array($dirs)) {
|
741 |
}
|
742 |
}
|
743 |
|
744 |
+
$temp_user_login = ".cimytemp_".sanitize_user($username).'_'.rand().'.tmp';
|
745 |
?>
|
746 |
+
<input type="hidden" name="temp_user_login" value="<?php echo esc_attr($temp_user_login); ?>" />
|
747 |
+
<input type="hidden" name="user_login" id="user_login" value="<?php echo esc_attr($username); ?>" />
|
748 |
+
<p id="user_email_p">
|
749 |
+
<label for="user_email"><?php _e("E-mail"); ?> </label><input type="hidden" name="user_email" id="user_email" value="<?php echo esc_attr($user_email); ?>" /><?php echo esc_html($user_email); ?>
|
750 |
+
</p>
|
751 |
+
<br />
|
|
|
|
|
752 |
<?php
|
753 |
}
|
754 |
|
786 |
$field_id_data = $input_name."_".$field_id."_data";
|
787 |
$advanced_options = cimy_uef_parse_advanced_options($rules["advanced_options"]);
|
788 |
|
789 |
+
// do not dupe username
|
790 |
+
if ($i == 1 && $name == "USERNAME")
|
791 |
+
continue;
|
792 |
// showing the search then there is no need for upload buttons
|
793 |
if ($show_type == 1) {
|
794 |
if ($type == "password")
|
1106 |
else if ($type == "hidden") {
|
1107 |
$form_object.= " />".$obj_value2;
|
1108 |
if (in_array($old_type, $cimy_uef_file_types)) {
|
1109 |
+
$f_size = empty($_FILES[$input_name]['size']) ? 0 : $_FILES[$input_name]['size'];
|
1110 |
+
$f_type = empty($_FILES[$input_name]['type']) ? "" : $_FILES[$input_name]['type'];
|
1111 |
+
echo "<input type=\"hidden\" name=\"".esc_attr($field_id_data)."_size\" id=\"".esc_attr($field_id_data)."_size\" value=\"".esc_attr(strval($f_size / 1024))."\" />";
|
1112 |
+
echo "<input type=\"hidden\" name=\"".esc_attr($field_id_data)."_type\" id=\"".esc_attr($field_id_data)."_type\" value=\"".esc_attr(strval($f_type))."\" />";
|
1113 |
}
|
1114 |
if ((in_array($old_type, $cimy_uef_file_images_types)) && (is_file($file_on_server))) {
|
1115 |
echo '<img id="'.esc_attr($field_id_data).'" src="'.esc_attr($value).'" alt="picture" /><br />';
|
cimy_user_extra_fields.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Cimy User Extra Fields
|
4 |
Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Description: Add some useful fields to registration and user's info
|
6 |
-
Version: 2.
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
License: GPL2
|
@@ -160,7 +160,7 @@ require_once($cuef_plugin_dir.'/cimy_uef_profile.php');
|
|
160 |
add_action('admin_init', 'cimy_uef_admin_init');
|
161 |
|
162 |
$cimy_uef_name = "Cimy User Extra Fields";
|
163 |
-
$cimy_uef_version = "2.
|
164 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
165 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
166 |
|
@@ -184,9 +184,32 @@ cimy_uef_i18n_setup();
|
|
184 |
// $wp_password_description = __('<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!', $cimy_uef_domain);
|
185 |
|
186 |
$wp_hidden_fields = array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
'password' => array(
|
188 |
'name' => "PASSWORD",
|
189 |
-
'
|
|
|
190 |
'type' => "password",
|
191 |
'label' => __("Password"),
|
192 |
'desc' => '',
|
@@ -207,7 +230,8 @@ $wp_hidden_fields = array(
|
|
207 |
),
|
208 |
'password2' => array(
|
209 |
'name' => "PASSWORD2",
|
210 |
-
'
|
|
|
211 |
'type' => "password",
|
212 |
'label' => __("Password confirmation", $cimy_uef_domain),
|
213 |
'desc' => '',
|
@@ -228,6 +252,7 @@ $wp_hidden_fields = array(
|
|
228 |
),
|
229 |
'firstname' => array(
|
230 |
'name' => "FIRSTNAME",
|
|
|
231 |
'post_name' => "first_name",
|
232 |
'type' => "text",
|
233 |
'label' => __("First name"),
|
@@ -249,6 +274,7 @@ $wp_hidden_fields = array(
|
|
249 |
),
|
250 |
'lastname' => array(
|
251 |
'name' => "LASTNAME",
|
|
|
252 |
'post_name' => "last_name",
|
253 |
'type' => "text",
|
254 |
'label' => __("Last name"),
|
@@ -270,6 +296,7 @@ $wp_hidden_fields = array(
|
|
270 |
),
|
271 |
'nickname' => array(
|
272 |
'name' => "NICKNAME",
|
|
|
273 |
'post_name' => "nickname",
|
274 |
'type' => "text",
|
275 |
'label' => __("Nickname"),
|
@@ -291,7 +318,8 @@ $wp_hidden_fields = array(
|
|
291 |
),
|
292 |
'website' => array(
|
293 |
'name' => "WEBSITE",
|
294 |
-
'
|
|
|
295 |
'type' => "text",
|
296 |
'label' => __("Website"),
|
297 |
'desc' => '',
|
@@ -312,6 +340,7 @@ $wp_hidden_fields = array(
|
|
312 |
),
|
313 |
'aim' => array(
|
314 |
'name' => "AIM",
|
|
|
315 |
'post_name' => "aim",
|
316 |
'type' => "text",
|
317 |
'label' => __("AIM"),
|
@@ -333,6 +362,7 @@ $wp_hidden_fields = array(
|
|
333 |
),
|
334 |
'yahoo' => array(
|
335 |
'name' => "YAHOO",
|
|
|
336 |
'post_name' => "yim",
|
337 |
'type' => "text",
|
338 |
'label' => __("Yahoo IM"),
|
@@ -354,6 +384,7 @@ $wp_hidden_fields = array(
|
|
354 |
),
|
355 |
'jgt' => array(
|
356 |
'name' => "JGT",
|
|
|
357 |
'post_name' => "jabber",
|
358 |
'type' => "text",
|
359 |
'label' => __("Jabber / Google Talk"),
|
@@ -375,6 +406,7 @@ $wp_hidden_fields = array(
|
|
375 |
),
|
376 |
'bio-info' => array(
|
377 |
'name' => "BIO-INFO",
|
|
|
378 |
'post_name' => "description",
|
379 |
'type' => "textarea",
|
380 |
'label' => __("Biographical Info"),
|
@@ -542,6 +574,10 @@ else {
|
|
542 |
add_filter('registration_redirect', 'cimy_uef_registration_redirect');
|
543 |
// this is needed only in the case where both redirection and email confirmation has been enabled
|
544 |
add_action('login_form_cimy_uef_redirect', 'cimy_uef_redirect');
|
|
|
|
|
|
|
|
|
545 |
}
|
546 |
|
547 |
// with Theme My Login is more complicated, but we know how to workaround it
|
3 |
Plugin Name: Cimy User Extra Fields
|
4 |
Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Description: Add some useful fields to registration and user's info
|
6 |
+
Version: 2.5.0
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
License: GPL2
|
160 |
add_action('admin_init', 'cimy_uef_admin_init');
|
161 |
|
162 |
$cimy_uef_name = "Cimy User Extra Fields";
|
163 |
+
$cimy_uef_version = "2.5.0";
|
164 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
165 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
166 |
|
184 |
// $wp_password_description = __('<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!', $cimy_uef_domain);
|
185 |
|
186 |
$wp_hidden_fields = array(
|
187 |
+
'username' => array(
|
188 |
+
'name' => "USERNAME",
|
189 |
+
'userdata_name' => "user_login",
|
190 |
+
'post_name' => "user_login",
|
191 |
+
'type' => "text",
|
192 |
+
'label' => __("Username"),
|
193 |
+
'desc' => '',
|
194 |
+
'value' => '',
|
195 |
+
'store_rule' => array(
|
196 |
+
'max_length' => 100,
|
197 |
+
'can_be_empty' => false,
|
198 |
+
'edit' => 'ok_edit',
|
199 |
+
'email' => false,
|
200 |
+
'show_in_reg' => true,
|
201 |
+
'show_in_profile' => true,
|
202 |
+
'show_in_aeu' => true,
|
203 |
+
'show_in_search' => true,
|
204 |
+
'show_in_blog' => true,
|
205 |
+
'show_level' => -1,
|
206 |
+
'advanced_options' => '',
|
207 |
+
),
|
208 |
+
),
|
209 |
'password' => array(
|
210 |
'name' => "PASSWORD",
|
211 |
+
'userdata_name' => "user_pass",
|
212 |
+
'post_name' => "pass1",
|
213 |
'type' => "password",
|
214 |
'label' => __("Password"),
|
215 |
'desc' => '',
|
230 |
),
|
231 |
'password2' => array(
|
232 |
'name' => "PASSWORD2",
|
233 |
+
'userdata_name' => "user_pass2",
|
234 |
+
'post_name' => "pass2",
|
235 |
'type' => "password",
|
236 |
'label' => __("Password confirmation", $cimy_uef_domain),
|
237 |
'desc' => '',
|
252 |
),
|
253 |
'firstname' => array(
|
254 |
'name' => "FIRSTNAME",
|
255 |
+
'userdata_name' => "first_name",
|
256 |
'post_name' => "first_name",
|
257 |
'type' => "text",
|
258 |
'label' => __("First name"),
|
274 |
),
|
275 |
'lastname' => array(
|
276 |
'name' => "LASTNAME",
|
277 |
+
'userdata_name' => "last_name",
|
278 |
'post_name' => "last_name",
|
279 |
'type' => "text",
|
280 |
'label' => __("Last name"),
|
296 |
),
|
297 |
'nickname' => array(
|
298 |
'name' => "NICKNAME",
|
299 |
+
'userdata_name' => "nickname",
|
300 |
'post_name' => "nickname",
|
301 |
'type' => "text",
|
302 |
'label' => __("Nickname"),
|
318 |
),
|
319 |
'website' => array(
|
320 |
'name' => "WEBSITE",
|
321 |
+
'userdata_name' => "user_url",
|
322 |
+
'post_name' => "url",
|
323 |
'type' => "text",
|
324 |
'label' => __("Website"),
|
325 |
'desc' => '',
|
340 |
),
|
341 |
'aim' => array(
|
342 |
'name' => "AIM",
|
343 |
+
'userdata_name' => "aim",
|
344 |
'post_name' => "aim",
|
345 |
'type' => "text",
|
346 |
'label' => __("AIM"),
|
362 |
),
|
363 |
'yahoo' => array(
|
364 |
'name' => "YAHOO",
|
365 |
+
'userdata_name' => "yim",
|
366 |
'post_name' => "yim",
|
367 |
'type' => "text",
|
368 |
'label' => __("Yahoo IM"),
|
384 |
),
|
385 |
'jgt' => array(
|
386 |
'name' => "JGT",
|
387 |
+
'userdata_name' => "jabber",
|
388 |
'post_name' => "jabber",
|
389 |
'type' => "text",
|
390 |
'label' => __("Jabber / Google Talk"),
|
406 |
),
|
407 |
'bio-info' => array(
|
408 |
'name' => "BIO-INFO",
|
409 |
+
'userdata_name' => "description",
|
410 |
'post_name' => "description",
|
411 |
'type' => "textarea",
|
412 |
'label' => __("Biographical Info"),
|
574 |
add_filter('registration_redirect', 'cimy_uef_registration_redirect');
|
575 |
// this is needed only in the case where both redirection and email confirmation has been enabled
|
576 |
add_action('login_form_cimy_uef_redirect', 'cimy_uef_redirect');
|
577 |
+
|
578 |
+
// add filter to replace the username with the email
|
579 |
+
add_filter('sanitize_user', 'cimy_uef_sanitize_username', 1, 3);
|
580 |
+
add_filter('validate_username', 'cimy_uef_validate_username', 1, 2);
|
581 |
}
|
582 |
|
583 |
// with Theme My Login is more complicated, but we know how to workaround it
|
css/cimy_uef_register_nousername.css
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#user_login {
|
2 |
+
display: none;
|
3 |
+
}
|
4 |
+
|
5 |
+
p:first-child {
|
6 |
+
display: none;
|
7 |
+
}
|
langs/cimy_uef-ar.mo
CHANGED
Binary file
|
langs/cimy_uef-ar.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: 2013-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Mamoun Elkheir <krikabat@hotmail.com>\n"
|
9 |
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -16,144 +16,145 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
22 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
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/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
35 |
msgid "ERROR"
|
36 |
msgstr "خطأ"
|
37 |
|
38 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
39 |
msgid "does not match."
|
40 |
msgstr "غير متفقة."
|
41 |
|
42 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
43 |
msgid "hasn’t a correct email syntax."
|
44 |
msgstr "صيغة البريد اللإلكتروني غير صحيحة."
|
45 |
|
46 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
47 |
msgid "couldn’t be empty."
|
48 |
msgstr "لا يمكن أن تكون فارغة."
|
49 |
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
msgid "isn’t correct"
|
53 |
msgstr "غير صحيحة"
|
54 |
|
55 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
msgid "YES"
|
59 |
msgstr "نعم"
|
60 |
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
msgid "NO"
|
65 |
msgstr "لا"
|
66 |
|
67 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
68 |
msgid "should be"
|
69 |
msgstr "يجب أن"
|
70 |
|
71 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
72 |
msgid "should be an image."
|
73 |
msgstr "يجب أن تكون صورة."
|
74 |
|
75 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
76 |
msgid "does not accept this file type."
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
80 |
msgid "couldn’t have size less than"
|
81 |
msgstr "لا يمكن أن يكون حجمها أقل من"
|
82 |
|
83 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
84 |
msgid "couldn’t have length less than"
|
85 |
msgstr "لا يمكن أن يكون طولها أقل من"
|
86 |
|
87 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
88 |
msgid "couldn’t have size different than"
|
89 |
msgstr "لا يمكن أن يختلف حجمها عن"
|
90 |
|
91 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
92 |
msgid "couldn’t have length different than"
|
93 |
msgstr "لا يمكن أن يختلف طولها عن"
|
94 |
|
95 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
96 |
msgid "couldn’t have size more than"
|
97 |
msgstr "لا يمكن أن يزيد حجمها عن"
|
98 |
|
99 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
100 |
msgid "couldn’t have length more than"
|
101 |
msgstr "لا يمكن أن يزيد طولها عن"
|
102 |
|
103 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
105 |
msgid "Typed code is not correct."
|
106 |
msgstr "الشفرة المكتوبة غير صحيحة."
|
107 |
|
108 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
111 |
msgid "Username"
|
112 |
msgstr "اسم المستخدم"
|
113 |
|
114 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
msgid "E-mail"
|
118 |
msgstr "البريد الإلكتروني"
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
121 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
122 |
msgid "Please upload a file with one of the following extensions"
|
123 |
msgstr "الرجاء تحميل ملف بأحد الامتدادات الآتية"
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
126 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
128 |
msgid "Please upload an image with one of the following extensions"
|
129 |
msgstr "الرجاء تحميل صورة بأحد الامتدادات الآتية"
|
130 |
|
131 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
132 |
msgid "Strength indicator"
|
133 |
msgstr "مؤشر القوة"
|
134 |
|
135 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
136 |
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 ! \" ? $ % ^ & )."
|
137 |
msgstr "تلميح: كلمة المرور يجب أن يكون طولها على الأقل 7 أحرف. ولجعلها أقوى، استخدم حروفاً متنوعة وأرقاماً ورموزاً مثل ! \" ? $ % ^ & )."
|
138 |
|
139 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
140 |
msgid "Change image"
|
141 |
msgstr "تغيير الصورة"
|
142 |
|
143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
144 |
msgid "Insert the code:"
|
145 |
msgstr "أدخل الشفرة:"
|
146 |
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
149 |
msgid "Confirm your registration"
|
150 |
msgstr "تأكيد تسجيلك"
|
151 |
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
153 |
msgid "A password will be e-mailed to you."
|
154 |
msgstr "سيتم إرسال كلمة المرور على بريدك الإلكتروني."
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
157 |
msgid "← Back"
|
158 |
msgstr "← إلى الخلف"
|
159 |
|
@@ -178,17 +179,17 @@ msgid "Change order"
|
|
178 |
msgstr "تغيير الترتيب"
|
179 |
|
180 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
181 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
182 |
msgid "Min length"
|
183 |
msgstr "أقل طول"
|
184 |
|
185 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
186 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
187 |
msgid "Exact length"
|
188 |
msgstr "الطول بالتحديد"
|
189 |
|
190 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
191 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
192 |
msgid "Max length"
|
193 |
msgstr "أقصى طول"
|
194 |
|
@@ -210,421 +211,421 @@ msgid "You cannot give an order that misses some numbers"
|
|
210 |
msgstr "لا يمكن إعطاء ترتيب يفقد بعد الأعداد"
|
211 |
|
212 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
213 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
214 |
msgid "Nothing selected"
|
215 |
msgstr "لم يتم اختيار شيء"
|
216 |
|
217 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
218 |
msgid "Field(s)"
|
219 |
msgstr "الحقل أو الحقول"
|
220 |
|
221 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
222 |
msgid "deleted correctly"
|
223 |
msgstr "تم حذفها بشكل صحيح"
|
224 |
|
225 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
226 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
227 |
msgid "Min size"
|
228 |
msgstr "أقل حجم"
|
229 |
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
232 |
msgid "Exact size"
|
233 |
msgstr "الحجم بالتحديد"
|
234 |
|
235 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
237 |
msgid "Max size"
|
238 |
msgstr "أقصى حجم"
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
241 |
msgid "Exact or Max size"
|
242 |
msgstr "الحجم بالتحديد أو الأقصى"
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
245 |
msgid "Name not specified"
|
246 |
msgstr "لم يتم تحديد الاسم"
|
247 |
|
248 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
249 |
msgid "Name cannot contains spaces"
|
250 |
msgstr "لا يمكن أن يحتوي الاسم على فراغات"
|
251 |
|
252 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
253 |
msgid "Label not specified"
|
254 |
msgstr "لم يتم تحديد العنوان"
|
255 |
|
256 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
257 |
msgid "not selected (with this type is necessary)"
|
258 |
msgstr "لم يتم تحديده (ضروري لهذا النوع)"
|
259 |
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
261 |
msgid "If you select"
|
262 |
msgstr "إذا اخترت"
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
265 |
msgid "you cannot select Min or Max"
|
266 |
msgstr "لا يمكنك اختيار أقل أو أقصى"
|
267 |
|
268 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
271 |
msgid "should be in the range of"
|
272 |
msgstr "يجب أن يكون في المدى"
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
275 |
msgid "Equal TO not specified"
|
276 |
msgstr "لم يتم تحديد القيمة المساواة"
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
279 |
msgid "With checkbox type Equal TO can only be"
|
280 |
msgstr "لنوع مربعات التأشير المساواة يمكن فقط أن تكون"
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
283 |
msgid "With radio type Equal TO can only be"
|
284 |
msgstr "لنوع اختيار الدوائر المساواة يمكن فقط أن تكون"
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
287 |
msgid "With checkbox type Value can only be"
|
288 |
msgstr "لنوع مربعات التأشير القيمة يمكن فقط أن تكون"
|
289 |
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
291 |
msgid "With radio type Value can only be"
|
292 |
msgstr "لنوع اختيار الدوائر القيمة يمكن فقط أن تكون"
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
295 |
msgid "Field inserted correctly"
|
296 |
msgstr "تم إدخال الحقل بشكل صحيح"
|
297 |
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
299 |
msgid "Field #"
|
300 |
msgstr "رقم الحقل"
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
303 |
msgid "updated correctly"
|
304 |
msgstr "تم تحديثه بشكل صحيح"
|
305 |
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
307 |
msgid "Name inserted is just in the database, change to another one"
|
308 |
msgstr "الاسم المدخل موجود في قاعدة البيانات، اختر اسماً غيره"
|
309 |
|
310 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
312 |
msgid "Add a new Field"
|
313 |
msgstr "إضافة حقل جديد"
|
314 |
|
315 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
316 |
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."
|
317 |
msgstr "لإضافة حقل جديد يجب اختيار اسم ونوع وعنوان له؛ أما النوع والوصف فاختياريان. يتم تطبيق القواعد عند تسجيل المستخدمين."
|
318 |
|
319 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
320 |
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'"
|
321 |
msgstr "بخصوص <strong>دوائر الاختيار</strong> و<strong>مربعات التأشير</strong>: <em>القيمة</em> і <em>والمساواة</em> يمكن فقط أن تكون 'نعم' أو 'لا' بما يعني 'مختار' أو 'غير مختار'"
|
322 |
|
323 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
324 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
325 |
msgstr "بخصوص <strong>القائمة المنسدلة</strong>: يجب أن تكتب كل الخيارات في العنوان، مثلاً: العنوان/الخيار الأول,الخيار الثاني,الخيار الثالث"
|
326 |
|
327 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
328 |
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"
|
329 |
msgstr "بخصوص <strong>الصورة</strong>: يجب تزويد صورة افتراضية بوضع رابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> تعني أقصى حجم بيكسل (طول أو عرض) للصور المصغرة"
|
330 |
|
331 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
332 |
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)"
|
333 |
msgstr "بخصوص <strong>رابط الصورة</strong>: يمكنك تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ <em>المساواة</em> تعني أقصى عرض للحجم بالبيكسل (الطول متناسب)"
|
334 |
|
335 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
336 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
337 |
msgstr "بخصوص <strong>تاريخ التسجيل</strong>: <em>المساواة</em> تعني صيغة التاريخ والوقت"
|
338 |
|
339 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
340 |
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"
|
341 |
msgstr "بخصوص <strong>الأفاتار</strong>: يمكن تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> يتم ضيطها تلقائياً على 512 بيكسل"
|
342 |
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
344 |
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"
|
345 |
msgstr "بخصوص <strong>ملف</strong>: يمكن تزويد ملف افتراضي بوضع الرابط <em>القيمة</em>؛ 'أقل وبالتحديد وأكبر حجم' بوحدة KB؛ في <em>المساواة</em> يمكن تحديد الامتدادات المسموحة مفصولة بفاصلة لاتينية، مثلاً:: zip, pdf, doc"
|
346 |
|
347 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
348 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
msgid "Name"
|
354 |
msgstr "الاسم"
|
355 |
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
msgid "Value"
|
363 |
msgstr "القيمة"
|
364 |
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
369 |
msgid "Type"
|
370 |
msgstr "النوع"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
373 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
374 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
376 |
msgid "Label"
|
377 |
msgstr "العنوان"
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
382 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
383 |
msgid "Description"
|
384 |
msgstr "الوصف"
|
385 |
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
387 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
388 |
msgid "Rules"
|
389 |
msgstr "القواعد"
|
390 |
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
393 |
msgid "Actions"
|
394 |
msgstr "الإجراءات"
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
400 |
msgid "Fieldset"
|
401 |
msgstr "Fieldset"
|
402 |
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
msgid "Can be empty"
|
406 |
msgstr "يمكن أن يكون فارغاً"
|
407 |
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
msgid "Check for E-mail syntax"
|
411 |
msgstr "التأكد من صيغة البريد الإلكتروني"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
msgid "Can be modified"
|
416 |
msgstr "يمكن تعديلها"
|
417 |
|
418 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
420 |
msgid "Can be modified only if empty"
|
421 |
msgstr "يمكن تعديلها فقط في حالة كونها فارغة"
|
422 |
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
425 |
msgid "Can be modified only by admin"
|
426 |
msgstr "يمكن تعديلها فقط بواسطة المدير"
|
427 |
|
428 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
430 |
msgid "Can be modified only by admin or if empty"
|
431 |
msgstr "يمكن تعديلها فقط بواسطة المدير في حالة كونها فارغة"
|
432 |
|
433 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
435 |
msgid "Cannot be modified"
|
436 |
msgstr "لا يمكن تعديلها"
|
437 |
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
440 |
msgid "Should be equal TO"
|
441 |
msgstr "يجب أن تساوي"
|
442 |
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
445 |
msgid "Case sensitive"
|
446 |
msgstr "حساسة لحجم الحروف"
|
447 |
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
449 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
450 |
msgid "Regular Expression"
|
451 |
msgstr "تعبير اعتيادي"
|
452 |
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
455 |
msgid "Show the field in the registration"
|
456 |
msgstr "إظهار الحقل عند التسجيل"
|
457 |
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
460 |
msgid "Show the field in User's profile"
|
461 |
msgstr "إظهار الحقل في الملف الشخصي للمستخدم"
|
462 |
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
464 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
465 |
msgid "Show the field in Users Extended section"
|
466 |
msgstr "إظهار الحقل في قائمة المستخدمين الممتدة (Users Extneded)"
|
467 |
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
470 |
msgid "Show the field in the search engine"
|
471 |
msgstr "إظهار الحقل في محرك البحث"
|
472 |
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
474 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
475 |
msgid "Show the field in the blog"
|
476 |
msgstr "إظهار الحقل في الموقع"
|
477 |
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
479 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
480 |
msgid "Show the field if the role is at least:"
|
481 |
msgstr "إظهار الحقل فقط إذا كانت الوظيفة على الأقل:"
|
482 |
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
484 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
485 |
msgid "Anonymous"
|
486 |
msgstr "مجهول"
|
487 |
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
490 |
msgid "User has 'view_cimy_extra_fields' capability"
|
491 |
msgstr "المستخدم يمتلك صلاحية 'view_cimy_extra_fields'"
|
492 |
|
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 "Send an email to the admin if the user changes its value"
|
496 |
msgstr "إرسال بريد إلكتروني للمدير إذا غير المستخدم قيمتها"
|
497 |
|
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 "Advanced options"
|
501 |
msgstr "خيارات متقدمة"
|
502 |
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
504 |
msgid "Clear"
|
505 |
msgstr "تفريغ"
|
506 |
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
508 |
msgid "Invert selection"
|
509 |
msgstr "عكس التحديد"
|
510 |
|
511 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
512 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
513 |
msgstr "هل أنت متأكد أنك تريد حذف الحقل/الحقول وكل البيانات فيها المدخلة بواسطة المستخدمين؟"
|
514 |
|
515 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
516 |
msgid "WordPress Fields"
|
517 |
msgstr "حقول WordPress"
|
518 |
|
519 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
520 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
523 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
525 |
msgid "Extra Fields"
|
526 |
msgstr "الحقول الإضافية (Extra Fields)"
|
527 |
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
529 |
msgid "None!"
|
530 |
msgstr "لا يوجد!"
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
534 |
msgid "Order"
|
535 |
msgstr "الترتيب"
|
536 |
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
538 |
msgid "Reset"
|
539 |
msgstr "استعادة"
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
542 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
543 |
msgid "SUCCESSFUL"
|
544 |
msgstr "تم بنجاح"
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
547 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
548 |
msgid "select"
|
549 |
msgstr "اختيار"
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
553 |
msgid "Users per page"
|
554 |
msgstr "عدد المستخدمين في الصحفة"
|
555 |
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
msgid "Apply"
|
559 |
msgstr "تنفيذ"
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
562 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
563 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
564 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
565 |
msgid "Users Extended"
|
566 |
msgstr "Users Extneded"
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
569 |
#, php-format
|
570 |
msgid "Search results for “%s”"
|
571 |
msgstr "البحث عن نتائج تخص “%s”"
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
574 |
#, php-format
|
575 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
576 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
579 |
msgid "Search Users"
|
580 |
msgstr "البحث في المستخدمين"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
msgid "Role"
|
585 |
msgstr "الوظيفة"
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
590 |
msgid "Website"
|
591 |
msgstr "الموقع"
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
595 |
msgid "Posts"
|
596 |
msgstr "المقالات"
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
msgid "View posts by this author"
|
600 |
msgstr "مشاهدة المقالات بواسطة هذا الكاتب"
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
603 |
msgid "Super Admin"
|
604 |
msgstr "المدير الشامل"
|
605 |
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
607 |
#, php-format
|
608 |
msgid "e-mail: %s"
|
609 |
msgstr "البريد الإلكتروني: %s"
|
610 |
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
612 |
msgid "Change"
|
613 |
msgstr "تغيير"
|
614 |
|
615 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
616 |
msgid "Update selected users"
|
617 |
msgstr "تحديث المستخدمين المختارين"
|
618 |
|
619 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
620 |
msgid "Update"
|
621 |
msgstr "تحديث"
|
622 |
|
623 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
624 |
msgid "OK"
|
625 |
msgstr "إمضاء"
|
626 |
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
628 |
msgid "Cancel"
|
629 |
msgstr "إلغاء"
|
630 |
|
@@ -634,9 +635,9 @@ msgid "New user registration on your site %s:"
|
|
634 |
msgstr "تسجيل مستخدم جديد في موقعك %s:"
|
635 |
|
636 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
638 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
639 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
640 |
#, php-format
|
641 |
msgid "Username: %s"
|
642 |
msgstr "اسم المستخدم: %s"
|
@@ -656,15 +657,15 @@ msgstr "[%s] تسجيل مستخدم جديد"
|
|
656 |
msgid "[%s] Your username and password"
|
657 |
msgstr "[%s] اسم المستخدم وكلمة المرور خاصتك"
|
658 |
|
659 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
660 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
661 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
662 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
663 |
#, php-format
|
664 |
msgid "%s: %s"
|
665 |
msgstr "%s: %s"
|
666 |
|
667 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
668 |
#, php-format
|
669 |
msgid ""
|
670 |
"To activate your user, please click the following link:\n"
|
@@ -681,52 +682,52 @@ msgstr ""
|
|
681 |
"بعد التفعيل، ستصلك رسالة أخرى فيها بيانات الدخول.\n"
|
682 |
"\n"
|
683 |
|
684 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
686 |
msgid "Your account is now active!"
|
687 |
msgstr "حسابك الآن فعال!"
|
688 |
|
689 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
690 |
#, php-format
|
691 |
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>."
|
692 |
msgstr "موقعك في <a href=\"%1$s\">%2$s</a> الآن مفعل. يمكنك الآن تسجيل الدخول في موقعك باستخدام اسم المستخدم المختار “%3$s”. الرجاء مراجعة بريدك الوارد في %4$s لمعرفة كلمة المرور وتعليمات الدخول. إذا لم تستلم رسالة الرجاء مراجعة مجلد البريد المزعج. إذا لم تستلم أيضاً رسالة فيه خلال ساعة، يمكنك <a href=\"%5$s\">استرجاع كلمة المرور</a></p>."
|
693 |
|
694 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
695 |
msgid "An error occurred during the activation"
|
696 |
msgstr "حدث خطأ خلال التفعيل"
|
697 |
|
698 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
699 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
701 |
#, php-format
|
702 |
msgid "Password: %s"
|
703 |
msgstr "كلمة المرور: %s"
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
706 |
msgid "Invalid activation key."
|
707 |
msgstr "مفتاح التفعيل غير صالح."
|
708 |
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
710 |
msgid "The site is already active."
|
711 |
msgstr "الموقع مفعل سلفاً."
|
712 |
|
713 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
714 |
msgid "Could not create user"
|
715 |
msgstr "لم يمكن إنشاء المستخدم"
|
716 |
|
717 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
718 |
msgid "That username is already activated."
|
719 |
msgstr "اسم المستخدم هذا مفعل سلفاً."
|
720 |
|
721 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
722 |
msgid "That username is currently reserved but may be available in a couple of days."
|
723 |
msgstr "اسم المستخدم هذا حالياً محجوز لكن ربما يصبح متوفراً خلال يومين."
|
724 |
|
725 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
726 |
msgid "username and email used"
|
727 |
msgstr "اسم المستخدم والبريد الإلكتروني مستخدمان"
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
730 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
731 |
msgstr "هذا البريد الإلكتروني مستخدم سلفاً. الرجاء مراجعة بريدك الإلكتروني لرسالة التفعليل. إذا لم تفعل شيئاً ستصبح متوفرة خلال يومين."
|
732 |
|
@@ -743,7 +744,7 @@ msgid "Update the file"
|
|
743 |
msgstr "تحديث الملف"
|
744 |
|
745 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
746 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
747 |
msgid "Delete the picture"
|
748 |
msgstr "حذف الصورة"
|
749 |
|
@@ -766,330 +767,339 @@ msgid "%s (%s) has changed one or more fields"
|
|
766 |
msgstr "%s (%s) قد غير واحداً أو أكثر من الحقول"
|
767 |
|
768 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
769 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
770 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
771 |
msgid "Options"
|
772 |
msgstr "الخيارات"
|
773 |
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
775 |
msgid "WordPress Fields table emptied"
|
776 |
msgstr "جدول حقول WordPress تم تفريغه"
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
779 |
msgid "WordPress Fields table deleted"
|
780 |
msgstr "جدول حقول WordPress Fields تم حذفه"
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
783 |
msgid "Extra Fields table emptied"
|
784 |
msgstr "جدول حقول Extra Fields تم تفريغه"
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
787 |
msgid "Extra Fields table deleted"
|
788 |
msgstr "جدول حقول Extra Fields تم حذفه"
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
791 |
msgid "Users Data table emptied"
|
792 |
msgstr "جدول بيانات المستخدمين تم تفريغه"
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
795 |
msgid "Users Data table deleted"
|
796 |
msgstr "جدول بيانات المستخدمين تم حذفه"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
799 |
msgid "Options set to default values"
|
800 |
msgstr "تم وضع الخيارات في القيم الافتراضية"
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
803 |
msgid "Options deleted"
|
804 |
msgstr "تم حذف الخيارات"
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
807 |
msgid "Options changed"
|
808 |
msgstr "تم تغيير الخيارات"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
811 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
812 |
msgstr "هذه العملية ستعمل على إنشاء/تحديث كل الجداول/الخيارات المفقودة، هل تريد الاستمرار؟"
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
815 |
msgid "Support the Cimy Project"
|
816 |
msgstr "ادعم Cimy Project"
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
819 |
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!"
|
820 |
msgstr "هذه الإضافة نتاج ساعات من التطوير لإضافة مزيد من الخصائص، دعم إصدارات WordPress الجديدة، ومعالجة الشوائب. الرجاء التبرع بالمال إذا ساعدتك في توفير كل هذه الساعات!"
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
824 |
msgid "Save Changes"
|
825 |
msgstr "حفظ التغييرات"
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
828 |
msgid "General"
|
829 |
msgstr "عام"
|
830 |
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
832 |
msgid "installed is"
|
833 |
msgstr "المنصب هو"
|
834 |
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
836 |
msgid "OPTIONS DELETED!"
|
837 |
msgstr "تم حذف الخيارات!"
|
838 |
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
841 |
msgid "Fix the problem"
|
842 |
msgstr "معالجة المشكلة"
|
843 |
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
845 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
846 |
msgstr "الإصدار غير متوافق! وهذا لأنك لم تلغ ثم تجدد تفعيل الإضافة بعد التحديث! هذا قد يسبب مشاكل ..."
|
847 |
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
849 |
msgid "Picture/Avatar upload"
|
850 |
msgstr "تحميل صورة/أفاتار "
|
851 |
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
853 |
msgid "is created and writable"
|
854 |
msgstr "تم إنشاؤه وهو قابل للكتابة"
|
855 |
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
857 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
858 |
msgstr "لم يتم إنشاؤه أو إن الخادم لا يملك صلاحيات الكتابة عليه"
|
859 |
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
861 |
msgid "Show all fields in the welcome email"
|
862 |
msgstr "إظهار كل الحقول في رسالة الترحيب"
|
863 |
|
864 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
865 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
866 |
msgstr "تم إرسال رسالة إلى المدير وستظهر كل الحقول للمستخدم عند التسجيل"
|
867 |
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
869 |
msgid "Enable email confirmation"
|
870 |
msgstr "تمكين تأكيد البريد الإلكتروني"
|
871 |
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
873 |
msgid "user that registers should confirm its email address via a link click"
|
874 |
msgstr "المستخدم الذي يسجل يجب عليه تأكيد عنوان بريده الإلكتروني عن طريق ضغط رابط"
|
875 |
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
877 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
878 |
msgstr "<strong>تنبيه:</strong> عند تفعيل هذا الخيار سيعطل (خلال فترة التسجيل فقط) كل حقول التحميل: للملفات والصور والأفاتار"
|
879 |
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
881 |
msgid "Enable form confirmation"
|
882 |
msgstr "تفعيل تأكيد شاشة الإدخال"
|
883 |
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
885 |
msgid "a summary of the registration form will be presented to the user"
|
886 |
msgstr "سيتم عرض ملخص لشاشة إدخال التسجيل للمستخدم"
|
887 |
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
889 |
msgid "Customize welcome email sent to the new user"
|
890 |
msgstr "تخصيص رسالة الترحيب المرسلة للمستخدمين الجدد"
|
891 |
|
892 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
893 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
894 |
msgstr "إذا غيرت أو حذفت حوامل القيم فإن البريد لن يمتلك المعلومات الصحيحة"
|
895 |
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
897 |
msgid "Redirect to the source"
|
898 |
msgstr "إعادة التوجيه للمصدر"
|
899 |
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
901 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
902 |
msgstr "بعد التسجيل أو التأكيد فإن المستخدم سيتم تحويله إلى العنوان الذي كان عنده مباشرة قبل الضغط على رابط التسجيل"
|
903 |
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
905 |
msgid "No captcha"
|
906 |
msgstr "بدون كابتشا"
|
907 |
|
908 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
909 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
910 |
msgstr "تفعيل <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
911 |
|
912 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
913 |
msgid "Public KEY"
|
914 |
msgstr "المفتاح العام"
|
915 |
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
917 |
msgid "Private KEY"
|
918 |
msgstr "المفتاح الخاص"
|
919 |
|
920 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
921 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
922 |
msgstr "تفعيل <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
923 |
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
925 |
msgid "This captcha is probably weaker, but is easier for users"
|
926 |
msgstr "هذه الكابتشا ربما كانت أضعف، لكنها أسهل على المستخدمين"
|
927 |
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
929 |
#, php-format
|
930 |
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>"
|
931 |
msgstr "<strong>تحذير: لتفعيل هذه الكابتشا قم بتحميل <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">هذه الحزمة</a> ثم فك ضغطها تحت %s</strong>"
|
932 |
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
934 |
msgid "Change login/registration page logo"
|
935 |
msgstr "تغيير شعار صحفة الدخول/ التسجيل"
|
936 |
|
937 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
938 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
939 |
msgstr "أكبر عرض محبذ للشعار هو 328px، لكن أي ارتفاع ممكن."
|
940 |
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
942 |
msgid "Database"
|
943 |
msgstr "قاعدة البيانات"
|
944 |
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
946 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
949 |
msgid "select action"
|
950 |
msgstr "اختيار الإجراء"
|
951 |
|
952 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
953 |
msgid "Default values"
|
954 |
msgstr "القيم الافتراضية"
|
955 |
|
956 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
960 |
msgid "Delete"
|
961 |
msgstr "حذف"
|
962 |
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
966 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
967 |
msgid "NOT PRESENT"
|
968 |
msgstr "غير موجود"
|
969 |
|
970 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
971 |
msgid "WordPress Fields table"
|
972 |
msgstr "جدول حقول WordPress"
|
973 |
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
977 |
msgid "Empty"
|
978 |
msgstr "تفريغ"
|
979 |
|
980 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
981 |
msgid "Extra Fields table"
|
982 |
msgstr "جدول حقول Extra Fields"
|
983 |
|
984 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
985 |
msgid "Users Data table"
|
986 |
msgstr "جدول بيانات المستخدمين"
|
987 |
|
988 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
989 |
msgid "all data inserted by users in all and only extra fields"
|
990 |
msgstr "كل البيانات المدخلة بواسطة المستخدمين في كل الحقول الإضافية وفقط فيها"
|
991 |
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
993 |
msgid "Force tables creation"
|
994 |
msgstr "إجبار إنشاء الجداول"
|
995 |
|
996 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
997 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
998 |
msgstr "مكافئ لإلغاء الإضافة وتفعيلها؛ لن يتم اتخاذ أي إجراء آخر"
|
999 |
|
1000 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1001 |
msgid "User Profile"
|
1002 |
msgstr "الملف الشخصي للمستخدم"
|
1003 |
|
1004 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1005 |
msgid "Extra Fields section title"
|
1006 |
msgstr "عنوان قسم الحقول الإضافية "
|
1007 |
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1009 |
msgid "Fieldset's titles, separates with comma"
|
1010 |
msgstr "عناوين Fieldset، مفصولة بفاصلة لاتينية"
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1013 |
msgid "example: title1,title2,title3"
|
1014 |
msgstr "مثلاً: عنوان1,عنوان2,عنوان3"
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1017 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1018 |
msgstr "<strong>تنبيه:</strong> إذا غيرت ترتيب fieldsets أو حذفتها ربما تحتاج لتعيين كل الـ fieldsets للحقول الإضافية مجدداً"
|
1019 |
|
1020 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1021 |
msgid "Authors & Users Extended"
|
1022 |
msgstr "المستخدمون وقائمة المستخدمين الممتدة (Users Extended)"
|
1023 |
|
1024 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1025 |
msgid "Hide username field"
|
1026 |
msgstr "إخفاء حقل اسم المستخدم"
|
1027 |
|
1028 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1029 |
msgid "Hide name field"
|
1030 |
msgstr "إخفاء حقل الاسم"
|
1031 |
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1033 |
msgid "Hide email field"
|
1034 |
msgstr "إخفاء حقل البريد الإلكتروني"
|
1035 |
|
1036 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1037 |
msgid "Hide role field"
|
1038 |
msgstr "إخفاء حقل الوظيفة"
|
1039 |
|
1040 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1041 |
msgid "Hide website field"
|
1042 |
msgstr "إخفاء حقل الموقع الإلكتروني"
|
1043 |
|
1044 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1045 |
msgid "Hide n. posts field"
|
1046 |
msgstr "إخفاء حقل عدد المقالات"
|
1047 |
|
1048 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1049 |
msgid "WordPress hidden fields"
|
1050 |
msgstr "حقول WordPress المخفاة"
|
1051 |
|
1052 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1053 |
msgid "Show password"
|
1054 |
msgstr "إظهار كلمة المرور"
|
1055 |
|
1056 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1057 |
msgid "Show confirmation password"
|
1058 |
msgstr "إظهار تأكيد كلمة المرور"
|
1059 |
|
1060 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1061 |
msgid "Show password strength meter"
|
1062 |
msgstr "إظهار مؤشر قوة كلمة المرور"
|
1063 |
|
1064 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1065 |
msgid "Show first name"
|
1066 |
msgstr "إظهار الاسم الأول"
|
1067 |
|
1068 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1069 |
msgid "Show last name"
|
1070 |
msgstr "إظهار الاسم الثاني"
|
1071 |
|
1072 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1073 |
msgid "Show nickname"
|
1074 |
msgstr "إظهار الاسم المختصر"
|
1075 |
|
1076 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1077 |
msgid "Show website"
|
1078 |
msgstr "إظهار الموقع الإلكتروني"
|
1079 |
|
1080 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1081 |
msgid "Show AIM"
|
1082 |
msgstr "إظهار AIM"
|
1083 |
|
1084 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1085 |
msgid "Show Yahoo IM"
|
1086 |
msgstr "إظهار Yahoo IM"
|
1087 |
|
1088 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1089 |
msgid "Show Jabber / Google Talk"
|
1090 |
msgstr "إظهار Jabber / Google Talk"
|
1091 |
|
1092 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1093 |
msgid "Show Biographical Info"
|
1094 |
msgstr "إظهار النبذة التعريفية"
|
1095 |
|
@@ -1111,39 +1121,39 @@ msgstr "الملف '%s' ليس بصورة."
|
|
1111 |
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!"
|
1112 |
msgstr "<strong>تنبيه:</strong> هذا الموقع يمكنك من تخصيص كلمة المرور خاصتك؛ بعد التسجيل ستصلك رسالة بريد إلكتروني فيها كلمة مرور أخرى، لا تلق لها بالاً!"
|
1113 |
|
1114 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1115 |
msgid "Password"
|
1116 |
msgstr "كلمة المرور"
|
1117 |
|
1118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1119 |
msgid "Password confirmation"
|
1120 |
msgstr "تأكيد كلمة المرور"
|
1121 |
|
1122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1123 |
msgid "First name"
|
1124 |
msgstr "الاسم الأول"
|
1125 |
|
1126 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1127 |
msgid "Last name"
|
1128 |
msgstr "الاس الأخير"
|
1129 |
|
1130 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1131 |
msgid "Nickname"
|
1132 |
msgstr "الاسم المختصر"
|
1133 |
|
1134 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1135 |
msgid "AIM"
|
1136 |
msgstr "AIM"
|
1137 |
|
1138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1139 |
msgid "Yahoo IM"
|
1140 |
msgstr "Yahoo IM"
|
1141 |
|
1142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1143 |
msgid "Jabber / Google Talk"
|
1144 |
msgstr "Jabber / Google Talk"
|
1145 |
|
1146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1147 |
msgid "Biographical Info"
|
1148 |
msgstr "نبذة تعريفية"
|
1149 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:51-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:51-0800\n"
|
7 |
+
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Mamoun Elkheir <krikabat@hotmail.com>\n"
|
9 |
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
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:478
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
35 |
msgid "ERROR"
|
36 |
msgstr "خطأ"
|
37 |
|
38 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
39 |
msgid "does not match."
|
40 |
msgstr "غير متفقة."
|
41 |
|
42 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
43 |
msgid "hasn’t a correct email syntax."
|
44 |
msgstr "صيغة البريد اللإلكتروني غير صحيحة."
|
45 |
|
46 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
47 |
msgid "couldn’t be empty."
|
48 |
msgstr "لا يمكن أن تكون فارغة."
|
49 |
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
52 |
msgid "isn’t correct"
|
53 |
msgstr "غير صحيحة"
|
54 |
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
58 |
msgid "YES"
|
59 |
msgstr "نعم"
|
60 |
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
64 |
msgid "NO"
|
65 |
msgstr "لا"
|
66 |
|
67 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
68 |
msgid "should be"
|
69 |
msgstr "يجب أن"
|
70 |
|
71 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
72 |
msgid "should be an image."
|
73 |
msgstr "يجب أن تكون صورة."
|
74 |
|
75 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
76 |
msgid "does not accept this file type."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
80 |
msgid "couldn’t have size less than"
|
81 |
msgstr "لا يمكن أن يكون حجمها أقل من"
|
82 |
|
83 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
84 |
msgid "couldn’t have length less than"
|
85 |
msgstr "لا يمكن أن يكون طولها أقل من"
|
86 |
|
87 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
88 |
msgid "couldn’t have size different than"
|
89 |
msgstr "لا يمكن أن يختلف حجمها عن"
|
90 |
|
91 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
92 |
msgid "couldn’t have length different than"
|
93 |
msgstr "لا يمكن أن يختلف طولها عن"
|
94 |
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
96 |
msgid "couldn’t have size more than"
|
97 |
msgstr "لا يمكن أن يزيد حجمها عن"
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
100 |
msgid "couldn’t have length more than"
|
101 |
msgstr "لا يمكن أن يزيد طولها عن"
|
102 |
|
103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
105 |
msgid "Typed code is not correct."
|
106 |
msgstr "الشفرة المكتوبة غير صحيحة."
|
107 |
|
108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
112 |
msgid "Username"
|
113 |
msgstr "اسم المستخدم"
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
118 |
msgid "E-mail"
|
119 |
msgstr "البريد الإلكتروني"
|
120 |
|
121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
msgid "Please upload a file with one of the following extensions"
|
124 |
msgstr "الرجاء تحميل ملف بأحد الامتدادات الآتية"
|
125 |
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1007
|
127 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
129 |
msgid "Please upload an image with one of the following extensions"
|
130 |
msgstr "الرجاء تحميل صورة بأحد الامتدادات الآتية"
|
131 |
|
132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
133 |
msgid "Strength indicator"
|
134 |
msgstr "مؤشر القوة"
|
135 |
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
137 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
138 |
msgstr "تلميح: كلمة المرور يجب أن يكون طولها على الأقل 7 أحرف. ولجعلها أقوى، استخدم حروفاً متنوعة وأرقاماً ورموزاً مثل ! \" ? $ % ^ & )."
|
139 |
|
140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
141 |
msgid "Change image"
|
142 |
msgstr "تغيير الصورة"
|
143 |
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
145 |
msgid "Insert the code:"
|
146 |
msgstr "أدخل الشفرة:"
|
147 |
|
148 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
150 |
msgid "Confirm your registration"
|
151 |
msgstr "تأكيد تسجيلك"
|
152 |
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
154 |
msgid "A password will be e-mailed to you."
|
155 |
msgstr "سيتم إرسال كلمة المرور على بريدك الإلكتروني."
|
156 |
|
157 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1313
|
158 |
msgid "← Back"
|
159 |
msgstr "← إلى الخلف"
|
160 |
|
179 |
msgstr "تغيير الترتيب"
|
180 |
|
181 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
182 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
|
183 |
msgid "Min length"
|
184 |
msgstr "أقل طول"
|
185 |
|
186 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
188 |
msgid "Exact length"
|
189 |
msgstr "الطول بالتحديد"
|
190 |
|
191 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
192 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
193 |
msgid "Max length"
|
194 |
msgstr "أقصى طول"
|
195 |
|
211 |
msgstr "لا يمكن إعطاء ترتيب يفقد بعد الأعداد"
|
212 |
|
213 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
214 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
215 |
msgid "Nothing selected"
|
216 |
msgstr "لم يتم اختيار شيء"
|
217 |
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
219 |
msgid "Field(s)"
|
220 |
msgstr "الحقل أو الحقول"
|
221 |
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
223 |
msgid "deleted correctly"
|
224 |
msgstr "تم حذفها بشكل صحيح"
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
228 |
msgid "Min size"
|
229 |
msgstr "أقل حجم"
|
230 |
|
231 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
232 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
233 |
msgid "Exact size"
|
234 |
msgstr "الحجم بالتحديد"
|
235 |
|
236 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
237 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
238 |
msgid "Max size"
|
239 |
msgstr "أقصى حجم"
|
240 |
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
242 |
msgid "Exact or Max size"
|
243 |
msgstr "الحجم بالتحديد أو الأقصى"
|
244 |
|
245 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
246 |
msgid "Name not specified"
|
247 |
msgstr "لم يتم تحديد الاسم"
|
248 |
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
250 |
msgid "Name cannot contains spaces"
|
251 |
msgstr "لا يمكن أن يحتوي الاسم على فراغات"
|
252 |
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
254 |
msgid "Label not specified"
|
255 |
msgstr "لم يتم تحديد العنوان"
|
256 |
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
258 |
msgid "not selected (with this type is necessary)"
|
259 |
msgstr "لم يتم تحديده (ضروري لهذا النوع)"
|
260 |
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
262 |
msgid "If you select"
|
263 |
msgstr "إذا اخترت"
|
264 |
|
265 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
266 |
msgid "you cannot select Min or Max"
|
267 |
msgstr "لا يمكنك اختيار أقل أو أقصى"
|
268 |
|
269 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
272 |
msgid "should be in the range of"
|
273 |
msgstr "يجب أن يكون في المدى"
|
274 |
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
276 |
msgid "Equal TO not specified"
|
277 |
msgstr "لم يتم تحديد القيمة المساواة"
|
278 |
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
280 |
msgid "With checkbox type Equal TO can only be"
|
281 |
msgstr "لنوع مربعات التأشير المساواة يمكن فقط أن تكون"
|
282 |
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
284 |
msgid "With radio type Equal TO can only be"
|
285 |
msgstr "لنوع اختيار الدوائر المساواة يمكن فقط أن تكون"
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
288 |
msgid "With checkbox type Value can only be"
|
289 |
msgstr "لنوع مربعات التأشير القيمة يمكن فقط أن تكون"
|
290 |
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
292 |
msgid "With radio type Value can only be"
|
293 |
msgstr "لنوع اختيار الدوائر القيمة يمكن فقط أن تكون"
|
294 |
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
296 |
msgid "Field inserted correctly"
|
297 |
msgstr "تم إدخال الحقل بشكل صحيح"
|
298 |
|
299 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
300 |
msgid "Field #"
|
301 |
msgstr "رقم الحقل"
|
302 |
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
304 |
msgid "updated correctly"
|
305 |
msgstr "تم تحديثه بشكل صحيح"
|
306 |
|
307 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
308 |
msgid "Name inserted is just in the database, change to another one"
|
309 |
msgstr "الاسم المدخل موجود في قاعدة البيانات، اختر اسماً غيره"
|
310 |
|
311 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
312 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
313 |
msgid "Add a new Field"
|
314 |
msgstr "إضافة حقل جديد"
|
315 |
|
316 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
317 |
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."
|
318 |
msgstr "لإضافة حقل جديد يجب اختيار اسم ونوع وعنوان له؛ أما النوع والوصف فاختياريان. يتم تطبيق القواعد عند تسجيل المستخدمين."
|
319 |
|
320 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
321 |
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'"
|
322 |
msgstr "بخصوص <strong>دوائر الاختيار</strong> و<strong>مربعات التأشير</strong>: <em>القيمة</em> і <em>والمساواة</em> يمكن فقط أن تكون 'نعم' أو 'لا' بما يعني 'مختار' أو 'غير مختار'"
|
323 |
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
325 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
326 |
msgstr "بخصوص <strong>القائمة المنسدلة</strong>: يجب أن تكتب كل الخيارات في العنوان، مثلاً: العنوان/الخيار الأول,الخيار الثاني,الخيار الثالث"
|
327 |
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
329 |
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"
|
330 |
msgstr "بخصوص <strong>الصورة</strong>: يجب تزويد صورة افتراضية بوضع رابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> تعني أقصى حجم بيكسل (طول أو عرض) للصور المصغرة"
|
331 |
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
333 |
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)"
|
334 |
msgstr "بخصوص <strong>رابط الصورة</strong>: يمكنك تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ <em>المساواة</em> تعني أقصى عرض للحجم بالبيكسل (الطول متناسب)"
|
335 |
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
337 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
338 |
msgstr "بخصوص <strong>تاريخ التسجيل</strong>: <em>المساواة</em> تعني صيغة التاريخ والوقت"
|
339 |
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
341 |
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"
|
342 |
msgstr "بخصوص <strong>الأفاتار</strong>: يمكن تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> يتم ضيطها تلقائياً على 512 بيكسل"
|
343 |
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
345 |
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"
|
346 |
msgstr "بخصوص <strong>ملف</strong>: يمكن تزويد ملف افتراضي بوضع الرابط <em>القيمة</em>؛ 'أقل وبالتحديد وأكبر حجم' بوحدة KB؛ في <em>المساواة</em> يمكن تحديد الامتدادات المسموحة مفصولة بفاصلة لاتينية، مثلاً:: zip, pdf, doc"
|
347 |
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
354 |
msgid "Name"
|
355 |
msgstr "الاسم"
|
356 |
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
360 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
363 |
msgid "Value"
|
364 |
msgstr "القيمة"
|
365 |
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
370 |
msgid "Type"
|
371 |
msgstr "النوع"
|
372 |
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
374 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
377 |
msgid "Label"
|
378 |
msgstr "العنوان"
|
379 |
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
384 |
msgid "Description"
|
385 |
msgstr "الوصف"
|
386 |
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
389 |
msgid "Rules"
|
390 |
msgstr "القواعد"
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
394 |
msgid "Actions"
|
395 |
msgstr "الإجراءات"
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
401 |
msgid "Fieldset"
|
402 |
msgstr "Fieldset"
|
403 |
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
406 |
msgid "Can be empty"
|
407 |
msgstr "يمكن أن يكون فارغاً"
|
408 |
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
411 |
msgid "Check for E-mail syntax"
|
412 |
msgstr "التأكد من صيغة البريد الإلكتروني"
|
413 |
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
416 |
msgid "Can be modified"
|
417 |
msgstr "يمكن تعديلها"
|
418 |
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
421 |
msgid "Can be modified only if empty"
|
422 |
msgstr "يمكن تعديلها فقط في حالة كونها فارغة"
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
426 |
msgid "Can be modified only by admin"
|
427 |
msgstr "يمكن تعديلها فقط بواسطة المدير"
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
431 |
msgid "Can be modified only by admin or if empty"
|
432 |
msgstr "يمكن تعديلها فقط بواسطة المدير في حالة كونها فارغة"
|
433 |
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
436 |
msgid "Cannot be modified"
|
437 |
msgstr "لا يمكن تعديلها"
|
438 |
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
441 |
msgid "Should be equal TO"
|
442 |
msgstr "يجب أن تساوي"
|
443 |
|
444 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
446 |
msgid "Case sensitive"
|
447 |
msgstr "حساسة لحجم الحروف"
|
448 |
|
449 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
451 |
msgid "Regular Expression"
|
452 |
msgstr "تعبير اعتيادي"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
456 |
msgid "Show the field in the registration"
|
457 |
msgstr "إظهار الحقل عند التسجيل"
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
461 |
msgid "Show the field in User's profile"
|
462 |
msgstr "إظهار الحقل في الملف الشخصي للمستخدم"
|
463 |
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
466 |
msgid "Show the field in Users Extended section"
|
467 |
msgstr "إظهار الحقل في قائمة المستخدمين الممتدة (Users Extneded)"
|
468 |
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
471 |
msgid "Show the field in the search engine"
|
472 |
msgstr "إظهار الحقل في محرك البحث"
|
473 |
|
474 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
476 |
msgid "Show the field in the blog"
|
477 |
msgstr "إظهار الحقل في الموقع"
|
478 |
|
479 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
480 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
481 |
msgid "Show the field if the role is at least:"
|
482 |
msgstr "إظهار الحقل فقط إذا كانت الوظيفة على الأقل:"
|
483 |
|
484 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
485 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
486 |
msgid "Anonymous"
|
487 |
msgstr "مجهول"
|
488 |
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
490 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
491 |
msgid "User has 'view_cimy_extra_fields' capability"
|
492 |
msgstr "المستخدم يمتلك صلاحية 'view_cimy_extra_fields'"
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
496 |
msgid "Send an email to the admin if the user changes its value"
|
497 |
msgstr "إرسال بريد إلكتروني للمدير إذا غير المستخدم قيمتها"
|
498 |
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
500 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
501 |
msgid "Advanced options"
|
502 |
msgstr "خيارات متقدمة"
|
503 |
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
505 |
msgid "Clear"
|
506 |
msgstr "تفريغ"
|
507 |
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
509 |
msgid "Invert selection"
|
510 |
msgstr "عكس التحديد"
|
511 |
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
513 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
514 |
msgstr "هل أنت متأكد أنك تريد حذف الحقل/الحقول وكل البيانات فيها المدخلة بواسطة المستخدمين؟"
|
515 |
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
517 |
msgid "WordPress Fields"
|
518 |
msgstr "حقول WordPress"
|
519 |
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
524 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
526 |
msgid "Extra Fields"
|
527 |
msgstr "الحقول الإضافية (Extra Fields)"
|
528 |
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
530 |
msgid "None!"
|
531 |
msgstr "لا يوجد!"
|
532 |
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
535 |
msgid "Order"
|
536 |
msgstr "الترتيب"
|
537 |
|
538 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
539 |
msgid "Reset"
|
540 |
msgstr "استعادة"
|
541 |
|
542 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
543 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
544 |
msgid "SUCCESSFUL"
|
545 |
msgstr "تم بنجاح"
|
546 |
|
547 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
549 |
msgid "select"
|
550 |
msgstr "اختيار"
|
551 |
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
554 |
msgid "Users per page"
|
555 |
msgstr "عدد المستخدمين في الصحفة"
|
556 |
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
559 |
msgid "Apply"
|
560 |
msgstr "تنفيذ"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
563 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
564 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
565 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
566 |
msgid "Users Extended"
|
567 |
msgstr "Users Extneded"
|
568 |
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
570 |
#, php-format
|
571 |
msgid "Search results for “%s”"
|
572 |
msgstr "البحث عن نتائج تخص “%s”"
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
575 |
#, php-format
|
576 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
577 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
578 |
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
580 |
msgid "Search Users"
|
581 |
msgstr "البحث في المستخدمين"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
585 |
msgid "Role"
|
586 |
msgstr "الوظيفة"
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
591 |
msgid "Website"
|
592 |
msgstr "الموقع"
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
596 |
msgid "Posts"
|
597 |
msgstr "المقالات"
|
598 |
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
600 |
msgid "View posts by this author"
|
601 |
msgstr "مشاهدة المقالات بواسطة هذا الكاتب"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
604 |
msgid "Super Admin"
|
605 |
msgstr "المدير الشامل"
|
606 |
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
608 |
#, php-format
|
609 |
msgid "e-mail: %s"
|
610 |
msgstr "البريد الإلكتروني: %s"
|
611 |
|
612 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
613 |
msgid "Change"
|
614 |
msgstr "تغيير"
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
617 |
msgid "Update selected users"
|
618 |
msgstr "تحديث المستخدمين المختارين"
|
619 |
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
621 |
msgid "Update"
|
622 |
msgstr "تحديث"
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
625 |
msgid "OK"
|
626 |
msgstr "إمضاء"
|
627 |
|
628 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
629 |
msgid "Cancel"
|
630 |
msgstr "إلغاء"
|
631 |
|
635 |
msgstr "تسجيل مستخدم جديد في موقعك %s:"
|
636 |
|
637 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
638 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
639 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
640 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
641 |
#, php-format
|
642 |
msgid "Username: %s"
|
643 |
msgstr "اسم المستخدم: %s"
|
657 |
msgid "[%s] Your username and password"
|
658 |
msgstr "[%s] اسم المستخدم وكلمة المرور خاصتك"
|
659 |
|
660 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
661 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
663 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
664 |
#, php-format
|
665 |
msgid "%s: %s"
|
666 |
msgstr "%s: %s"
|
667 |
|
668 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
669 |
#, php-format
|
670 |
msgid ""
|
671 |
"To activate your user, please click the following link:\n"
|
682 |
"بعد التفعيل، ستصلك رسالة أخرى فيها بيانات الدخول.\n"
|
683 |
"\n"
|
684 |
|
685 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
686 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
687 |
msgid "Your account is now active!"
|
688 |
msgstr "حسابك الآن فعال!"
|
689 |
|
690 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
691 |
#, php-format
|
692 |
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>."
|
693 |
msgstr "موقعك في <a href=\"%1$s\">%2$s</a> الآن مفعل. يمكنك الآن تسجيل الدخول في موقعك باستخدام اسم المستخدم المختار “%3$s”. الرجاء مراجعة بريدك الوارد في %4$s لمعرفة كلمة المرور وتعليمات الدخول. إذا لم تستلم رسالة الرجاء مراجعة مجلد البريد المزعج. إذا لم تستلم أيضاً رسالة فيه خلال ساعة، يمكنك <a href=\"%5$s\">استرجاع كلمة المرور</a></p>."
|
694 |
|
695 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
696 |
msgid "An error occurred during the activation"
|
697 |
msgstr "حدث خطأ خلال التفعيل"
|
698 |
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
700 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
702 |
#, php-format
|
703 |
msgid "Password: %s"
|
704 |
msgstr "كلمة المرور: %s"
|
705 |
|
706 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
707 |
msgid "Invalid activation key."
|
708 |
msgstr "مفتاح التفعيل غير صالح."
|
709 |
|
710 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
711 |
msgid "The site is already active."
|
712 |
msgstr "الموقع مفعل سلفاً."
|
713 |
|
714 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
715 |
msgid "Could not create user"
|
716 |
msgstr "لم يمكن إنشاء المستخدم"
|
717 |
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
719 |
msgid "That username is already activated."
|
720 |
msgstr "اسم المستخدم هذا مفعل سلفاً."
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
723 |
msgid "That username is currently reserved but may be available in a couple of days."
|
724 |
msgstr "اسم المستخدم هذا حالياً محجوز لكن ربما يصبح متوفراً خلال يومين."
|
725 |
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
727 |
msgid "username and email used"
|
728 |
msgstr "اسم المستخدم والبريد الإلكتروني مستخدمان"
|
729 |
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
731 |
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."
|
732 |
msgstr "هذا البريد الإلكتروني مستخدم سلفاً. الرجاء مراجعة بريدك الإلكتروني لرسالة التفعليل. إذا لم تفعل شيئاً ستصبح متوفرة خلال يومين."
|
733 |
|
744 |
msgstr "تحديث الملف"
|
745 |
|
746 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
747 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
748 |
msgid "Delete the picture"
|
749 |
msgstr "حذف الصورة"
|
750 |
|
767 |
msgstr "%s (%s) قد غير واحداً أو أكثر من الحقول"
|
768 |
|
769 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
770 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
772 |
msgid "Options"
|
773 |
msgstr "الخيارات"
|
774 |
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
776 |
msgid "WordPress Fields table emptied"
|
777 |
msgstr "جدول حقول WordPress تم تفريغه"
|
778 |
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
780 |
msgid "WordPress Fields table deleted"
|
781 |
msgstr "جدول حقول WordPress Fields تم حذفه"
|
782 |
|
783 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
784 |
msgid "Extra Fields table emptied"
|
785 |
msgstr "جدول حقول Extra Fields تم تفريغه"
|
786 |
|
787 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
788 |
msgid "Extra Fields table deleted"
|
789 |
msgstr "جدول حقول Extra Fields تم حذفه"
|
790 |
|
791 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
792 |
msgid "Users Data table emptied"
|
793 |
msgstr "جدول بيانات المستخدمين تم تفريغه"
|
794 |
|
795 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
796 |
msgid "Users Data table deleted"
|
797 |
msgstr "جدول بيانات المستخدمين تم حذفه"
|
798 |
|
799 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
800 |
msgid "Options set to default values"
|
801 |
msgstr "تم وضع الخيارات في القيم الافتراضية"
|
802 |
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
804 |
msgid "Options deleted"
|
805 |
msgstr "تم حذف الخيارات"
|
806 |
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
808 |
msgid "Options changed"
|
809 |
msgstr "تم تغيير الخيارات"
|
810 |
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
812 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
813 |
msgstr "هذه العملية ستعمل على إنشاء/تحديث كل الجداول/الخيارات المفقودة، هل تريد الاستمرار؟"
|
814 |
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
816 |
msgid "Support the Cimy Project"
|
817 |
msgstr "ادعم Cimy Project"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
820 |
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!"
|
821 |
msgstr "هذه الإضافة نتاج ساعات من التطوير لإضافة مزيد من الخصائص، دعم إصدارات WordPress الجديدة، ومعالجة الشوائب. الرجاء التبرع بالمال إذا ساعدتك في توفير كل هذه الساعات!"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
825 |
msgid "Save Changes"
|
826 |
msgstr "حفظ التغييرات"
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
829 |
msgid "General"
|
830 |
msgstr "عام"
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
833 |
msgid "installed is"
|
834 |
msgstr "المنصب هو"
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
837 |
msgid "OPTIONS DELETED!"
|
838 |
msgstr "تم حذف الخيارات!"
|
839 |
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
842 |
msgid "Fix the problem"
|
843 |
msgstr "معالجة المشكلة"
|
844 |
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
846 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
847 |
msgstr "الإصدار غير متوافق! وهذا لأنك لم تلغ ثم تجدد تفعيل الإضافة بعد التحديث! هذا قد يسبب مشاكل ..."
|
848 |
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
850 |
msgid "Picture/Avatar upload"
|
851 |
msgstr "تحميل صورة/أفاتار "
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
854 |
msgid "is created and writable"
|
855 |
msgstr "تم إنشاؤه وهو قابل للكتابة"
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
858 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
859 |
msgstr "لم يتم إنشاؤه أو إن الخادم لا يملك صلاحيات الكتابة عليه"
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
862 |
msgid "Show all fields in the welcome email"
|
863 |
msgstr "إظهار كل الحقول في رسالة الترحيب"
|
864 |
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
866 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
867 |
msgstr "تم إرسال رسالة إلى المدير وستظهر كل الحقول للمستخدم عند التسجيل"
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
870 |
msgid "Enable email confirmation"
|
871 |
msgstr "تمكين تأكيد البريد الإلكتروني"
|
872 |
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
874 |
msgid "user that registers should confirm its email address via a link click"
|
875 |
msgstr "المستخدم الذي يسجل يجب عليه تأكيد عنوان بريده الإلكتروني عن طريق ضغط رابط"
|
876 |
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
878 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
879 |
msgstr "<strong>تنبيه:</strong> عند تفعيل هذا الخيار سيعطل (خلال فترة التسجيل فقط) كل حقول التحميل: للملفات والصور والأفاتار"
|
880 |
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
882 |
msgid "Enable form confirmation"
|
883 |
msgstr "تفعيل تأكيد شاشة الإدخال"
|
884 |
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
886 |
msgid "a summary of the registration form will be presented to the user"
|
887 |
msgstr "سيتم عرض ملخص لشاشة إدخال التسجيل للمستخدم"
|
888 |
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
890 |
msgid "Customize welcome email sent to the new user"
|
891 |
msgstr "تخصيص رسالة الترحيب المرسلة للمستخدمين الجدد"
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
894 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
895 |
msgstr "إذا غيرت أو حذفت حوامل القيم فإن البريد لن يمتلك المعلومات الصحيحة"
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
898 |
msgid "Redirect to the source"
|
899 |
msgstr "إعادة التوجيه للمصدر"
|
900 |
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
902 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
903 |
msgstr "بعد التسجيل أو التأكيد فإن المستخدم سيتم تحويله إلى العنوان الذي كان عنده مباشرة قبل الضغط على رابط التسجيل"
|
904 |
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
906 |
msgid "No captcha"
|
907 |
msgstr "بدون كابتشا"
|
908 |
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
910 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
911 |
msgstr "تفعيل <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
912 |
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
914 |
msgid "Public KEY"
|
915 |
msgstr "المفتاح العام"
|
916 |
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
918 |
msgid "Private KEY"
|
919 |
msgstr "المفتاح الخاص"
|
920 |
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
922 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
923 |
msgstr "تفعيل <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
924 |
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
926 |
msgid "This captcha is probably weaker, but is easier for users"
|
927 |
msgstr "هذه الكابتشا ربما كانت أضعف، لكنها أسهل على المستخدمين"
|
928 |
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
930 |
#, php-format
|
931 |
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>"
|
932 |
msgstr "<strong>تحذير: لتفعيل هذه الكابتشا قم بتحميل <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">هذه الحزمة</a> ثم فك ضغطها تحت %s</strong>"
|
933 |
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
935 |
msgid "Change login/registration page logo"
|
936 |
msgstr "تغيير شعار صحفة الدخول/ التسجيل"
|
937 |
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
939 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
940 |
msgstr "أكبر عرض محبذ للشعار هو 328px، لكن أي ارتفاع ممكن."
|
941 |
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
943 |
msgid "Database"
|
944 |
msgstr "قاعدة البيانات"
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
950 |
msgid "select action"
|
951 |
msgstr "اختيار الإجراء"
|
952 |
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
954 |
msgid "Default values"
|
955 |
msgstr "القيم الافتراضية"
|
956 |
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
961 |
msgid "Delete"
|
962 |
msgstr "حذف"
|
963 |
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
968 |
msgid "NOT PRESENT"
|
969 |
msgstr "غير موجود"
|
970 |
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
972 |
msgid "WordPress Fields table"
|
973 |
msgstr "جدول حقول WordPress"
|
974 |
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
978 |
msgid "Empty"
|
979 |
msgstr "تفريغ"
|
980 |
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
982 |
msgid "Extra Fields table"
|
983 |
msgstr "جدول حقول Extra Fields"
|
984 |
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
986 |
msgid "Users Data table"
|
987 |
msgstr "جدول بيانات المستخدمين"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
990 |
msgid "all data inserted by users in all and only extra fields"
|
991 |
msgstr "كل البيانات المدخلة بواسطة المستخدمين في كل الحقول الإضافية وفقط فيها"
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
994 |
msgid "Force tables creation"
|
995 |
msgstr "إجبار إنشاء الجداول"
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
998 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
999 |
msgstr "مكافئ لإلغاء الإضافة وتفعيلها؛ لن يتم اتخاذ أي إجراء آخر"
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1002 |
msgid "User Profile"
|
1003 |
msgstr "الملف الشخصي للمستخدم"
|
1004 |
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1006 |
msgid "Extra Fields section title"
|
1007 |
msgstr "عنوان قسم الحقول الإضافية "
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1010 |
msgid "Fieldset's titles, separates with comma"
|
1011 |
msgstr "عناوين Fieldset، مفصولة بفاصلة لاتينية"
|
1012 |
|
1013 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1014 |
msgid "example: title1,title2,title3"
|
1015 |
msgstr "مثلاً: عنوان1,عنوان2,عنوان3"
|
1016 |
|
1017 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1018 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1019 |
msgstr "<strong>تنبيه:</strong> إذا غيرت ترتيب fieldsets أو حذفتها ربما تحتاج لتعيين كل الـ fieldsets للحقول الإضافية مجدداً"
|
1020 |
|
1021 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1022 |
msgid "Authors & Users Extended"
|
1023 |
msgstr "المستخدمون وقائمة المستخدمين الممتدة (Users Extended)"
|
1024 |
|
1025 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1026 |
msgid "Hide username field"
|
1027 |
msgstr "إخفاء حقل اسم المستخدم"
|
1028 |
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1030 |
msgid "Hide name field"
|
1031 |
msgstr "إخفاء حقل الاسم"
|
1032 |
|
1033 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1034 |
msgid "Hide email field"
|
1035 |
msgstr "إخفاء حقل البريد الإلكتروني"
|
1036 |
|
1037 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1038 |
msgid "Hide role field"
|
1039 |
msgstr "إخفاء حقل الوظيفة"
|
1040 |
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:671
|
1042 |
msgid "Hide website field"
|
1043 |
msgstr "إخفاء حقل الموقع الإلكتروني"
|
1044 |
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1046 |
msgid "Hide n. posts field"
|
1047 |
msgstr "إخفاء حقل عدد المقالات"
|
1048 |
|
1049 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
1050 |
msgid "WordPress hidden fields"
|
1051 |
msgstr "حقول WordPress المخفاة"
|
1052 |
|
1053 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
1054 |
+
#, fuzzy
|
1055 |
+
msgid "Show username"
|
1056 |
+
msgstr "إظهار الاسم الثاني"
|
1057 |
+
|
1058 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
|
1059 |
+
msgid "when unchecked the email address will be used as username"
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
1063 |
msgid "Show password"
|
1064 |
msgstr "إظهار كلمة المرور"
|
1065 |
|
1066 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
1067 |
msgid "Show confirmation password"
|
1068 |
msgstr "إظهار تأكيد كلمة المرور"
|
1069 |
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
1071 |
msgid "Show password strength meter"
|
1072 |
msgstr "إظهار مؤشر قوة كلمة المرور"
|
1073 |
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
1075 |
msgid "Show first name"
|
1076 |
msgstr "إظهار الاسم الأول"
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
1079 |
msgid "Show last name"
|
1080 |
msgstr "إظهار الاسم الثاني"
|
1081 |
|
1082 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
|
1083 |
msgid "Show nickname"
|
1084 |
msgstr "إظهار الاسم المختصر"
|
1085 |
|
1086 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
1087 |
msgid "Show website"
|
1088 |
msgstr "إظهار الموقع الإلكتروني"
|
1089 |
|
1090 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
1091 |
msgid "Show AIM"
|
1092 |
msgstr "إظهار AIM"
|
1093 |
|
1094 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:721
|
1095 |
msgid "Show Yahoo IM"
|
1096 |
msgstr "إظهار Yahoo IM"
|
1097 |
|
1098 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
1099 |
msgid "Show Jabber / Google Talk"
|
1100 |
msgstr "إظهار Jabber / Google Talk"
|
1101 |
|
1102 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:729
|
1103 |
msgid "Show Biographical Info"
|
1104 |
msgstr "إظهار النبذة التعريفية"
|
1105 |
|
1121 |
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!"
|
1122 |
msgstr "<strong>تنبيه:</strong> هذا الموقع يمكنك من تخصيص كلمة المرور خاصتك؛ بعد التسجيل ستصلك رسالة بريد إلكتروني فيها كلمة مرور أخرى، لا تلق لها بالاً!"
|
1123 |
|
1124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
|
1125 |
msgid "Password"
|
1126 |
msgstr "كلمة المرور"
|
1127 |
|
1128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:236
|
1129 |
msgid "Password confirmation"
|
1130 |
msgstr "تأكيد كلمة المرور"
|
1131 |
|
1132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:258
|
1133 |
msgid "First name"
|
1134 |
msgstr "الاسم الأول"
|
1135 |
|
1136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
1137 |
msgid "Last name"
|
1138 |
msgstr "الاس الأخير"
|
1139 |
|
1140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
1141 |
msgid "Nickname"
|
1142 |
msgstr "الاسم المختصر"
|
1143 |
|
1144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:346
|
1145 |
msgid "AIM"
|
1146 |
msgstr "AIM"
|
1147 |
|
1148 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:368
|
1149 |
msgid "Yahoo IM"
|
1150 |
msgstr "Yahoo IM"
|
1151 |
|
1152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:390
|
1153 |
msgid "Jabber / Google Talk"
|
1154 |
msgstr "Jabber / Google Talk"
|
1155 |
|
1156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:412
|
1157 |
msgid "Biographical Info"
|
1158 |
msgstr "نبذة تعريفية"
|
1159 |
|
langs/cimy_uef-be_BY.mo
CHANGED
Binary file
|
langs/cimy_uef-be_BY.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: Web Geeks\n"
|
9 |
"Language: \n"
|
@@ -17,146 +17,147 @@ msgstr ""
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
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/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
35 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
36 |
msgid "ERROR"
|
37 |
msgstr "ПАМЫЛКА"
|
38 |
|
39 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "не дакладна ўведзены email."
|
46 |
|
47 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "не можа быць пустым."
|
50 |
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "не дакладна"
|
55 |
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "ТАК"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "НЕ"
|
67 |
|
68 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
69 |
msgid "should be"
|
70 |
msgstr "павінна быць"
|
71 |
|
72 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
73 |
msgid "should be an image."
|
74 |
msgstr "павінен быць малюнак."
|
75 |
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "не можа мець памер "
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "не можа мець даўжыню "
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "не можа мець памер выдатны ад"
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "не можа мець даўжыню выдатную ад"
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "мае памер больш чым"
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "мае даўжыню больш чым"
|
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_register.php:
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
112 |
msgid "Username"
|
113 |
msgstr "Імя карыстача"
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
msgid "E-mail"
|
119 |
msgstr "E-mail"
|
120 |
|
121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
#, fuzzy
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
134 |
msgid "Strength indicator"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
138 |
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 ! \" ? $ % ^ & )."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
142 |
#, fuzzy
|
143 |
msgid "Change image"
|
144 |
msgstr "Змяніць парадак"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
147 |
msgid "Insert the code:"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
@@ -181,17 +182,17 @@ msgid "Change order"
|
|
181 |
msgstr "Змяніць парадак"
|
182 |
|
183 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
185 |
msgid "Min length"
|
186 |
msgstr "Мін даўжыня"
|
187 |
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
msgid "Exact length"
|
191 |
msgstr "Дакладная даўжыня"
|
192 |
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
195 |
msgid "Max length"
|
196 |
msgstr "Макс даўжыня"
|
197 |
|
@@ -213,365 +214,365 @@ msgid "You cannot give an order that misses some numbers"
|
|
213 |
msgstr "Вы не можаце ўсталяваць парадак, які прапускае некаторыя лікі"
|
214 |
|
215 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
216 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
217 |
msgid "Nothing selected"
|
218 |
msgstr "Нічога не абрана"
|
219 |
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Field(s)"
|
222 |
msgstr "Поле(я)"
|
223 |
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
225 |
msgid "deleted correctly"
|
226 |
msgstr "выдалены правільна"
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
230 |
msgid "Min size"
|
231 |
msgstr "Мін памер"
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
234 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
235 |
msgid "Exact size"
|
236 |
msgstr "Дакладны памер"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
240 |
msgid "Max size"
|
241 |
msgstr "Макс памер"
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
244 |
msgid "Exact or Max size"
|
245 |
msgstr "Дакладны ці Макс памер"
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Name not specified"
|
249 |
msgstr "Імя не зададзена"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Name cannot contains spaces"
|
253 |
msgstr "Імя не павінна ўтрымоўваць прабелаў"
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "Label not specified"
|
257 |
msgstr "Пазнака не абрана"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
msgid "not selected (with this type is necessary)"
|
261 |
msgstr "не абрана (з гэтым тыпам неабходна)"
|
262 |
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
264 |
msgid "If you select"
|
265 |
msgstr "Калі Вы абралі"
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
268 |
msgid "you cannot select Min or Max"
|
269 |
msgstr "Вы не можаце абраць Мін ці Макс"
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
274 |
msgid "should be in the range of"
|
275 |
msgstr "павінна быць у диапозоне"
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
278 |
msgid "Equal TO not specified"
|
279 |
msgstr "Роўная ЧАМУ не абрана"
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
282 |
msgid "With checkbox type Equal TO can only be"
|
283 |
msgstr "Можа быць толькі са сцяжком выбару тыпу Роўная ЧАМУ"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
286 |
msgid "With radio type Equal TO can only be"
|
287 |
msgstr "Можа быць толькі з перамыкачом выбару тыпу Роўная ЧАМУ"
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
290 |
msgid "With checkbox type Value can only be"
|
291 |
msgstr "Можа быць толькі са сцяжкамі выбару тыпу Значэнне"
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
294 |
msgid "With radio type Value can only be"
|
295 |
msgstr "Можа быць толькі з перамыкачом выбару тыпу Значэнне"
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
298 |
msgid "Field inserted correctly"
|
299 |
msgstr "Поле ўстаўлена карэктна"
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
302 |
msgid "Field #"
|
303 |
msgstr "Поле #"
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
306 |
msgid "updated correctly"
|
307 |
msgstr "абноўлена карэктна"
|
308 |
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Name inserted is just in the database, change to another one"
|
311 |
msgstr "Устаўляемае імя ўжо ёсць у БД, абярыце іншае"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
315 |
msgid "Add a new Field"
|
316 |
msgstr "Дадаць новае поле"
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
319 |
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."
|
320 |
msgstr "Для дадання новага поля вам неабходна задаць імя, тып і пазнаку; значэнне і апісанне. Правілы ўжываюцца падчас рэгістрацыі карыстача."
|
321 |
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
323 |
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'"
|
324 |
msgstr "З <strong>перамыкачом(radio)</strong> і <strong>сцяжкамі(checkbox)</strong>: <em>Значэнне</em> і <em>роўна ЧАМУ</em> можа быць або 'Yes', або 'No' - гэта азначае 'абрана' ці 'не абрана'"
|
325 |
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
327 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
328 |
msgstr "З <strong>выпадальным спісам(drop-down)</strong>: вы можаце дадаць усе опцыі ў пазнаку, напрыклад: пазнака/элемент1,элемент2,элемент3"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
331 |
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"
|
332 |
msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
335 |
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)"
|
336 |
msgstr "З <strong>picture-url</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; <em>роўная ЧАМУ</em> мае на ўвазе max шырыню для прэв'ю (вышыня будзе ўсталявана прапарцыйна)"
|
337 |
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
339 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
340 |
msgstr "З <strong>датай рэгістрацыі(registration-date)</strong>: <em>роўная ЧАМУ</em> мае на ўвазе фармат даты і часу"
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
343 |
#, fuzzy
|
344 |
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"
|
345 |
msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
|
346 |
|
347 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
348 |
#, fuzzy
|
349 |
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"
|
350 |
msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
|
351 |
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
msgid "Name"
|
359 |
msgstr "Імя"
|
360 |
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
msgid "Value"
|
368 |
msgstr "Значэнне"
|
369 |
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
373 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
374 |
msgid "Type"
|
375 |
msgstr "Тып"
|
376 |
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
378 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
381 |
msgid "Label"
|
382 |
msgstr "Пазнака"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
387 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
388 |
msgid "Description"
|
389 |
msgstr "Апісанне"
|
390 |
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
393 |
msgid "Rules"
|
394 |
msgstr "Кіравала"
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
398 |
msgid "Actions"
|
399 |
msgstr "Дзеянні"
|
400 |
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
#, fuzzy
|
406 |
msgid "Fieldset"
|
407 |
msgstr "Палі"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
msgid "Can be empty"
|
412 |
msgstr "Можа быць пустым"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
msgid "Check for E-mail syntax"
|
417 |
msgstr "Праверка сінтаксісу E-mail"
|
418 |
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
420 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
421 |
msgid "Can be modified"
|
422 |
msgstr "Можа быць зменена"
|
423 |
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
426 |
msgid "Can be modified only if empty"
|
427 |
msgstr "Можа быць зменена толькі калі пустое"
|
428 |
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
431 |
msgid "Can be modified only by admin"
|
432 |
msgstr "Можа быць зменена толькі адмінам"
|
433 |
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
436 |
msgid "Can be modified only by admin or if empty"
|
437 |
msgstr "Можа быць зменена толькі адмінам ці калі пустое"
|
438 |
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
440 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
441 |
msgid "Cannot be modified"
|
442 |
msgstr "Не можа быць зменена"
|
443 |
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
446 |
msgid "Should be equal TO"
|
447 |
msgstr "Долднадолжно быць роўна ЧАМУ"
|
448 |
|
449 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
451 |
msgid "Case sensitive"
|
452 |
msgstr "Чуствительность да рэгістра"
|
453 |
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
456 |
msgid "Regular Expression"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
461 |
msgid "Show the field in the registration"
|
462 |
msgstr "Паказваць поле пры рэгістрацыі"
|
463 |
|
464 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
466 |
msgid "Show the field in User's profile"
|
467 |
msgstr "Паказваць поле ў профілі карыстача"
|
468 |
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
470 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
471 |
#, fuzzy
|
472 |
msgid "Show the field in Users Extended section"
|
473 |
msgstr "Паказваць поле ў меню A&прасунутых П"
|
474 |
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
476 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
477 |
#, fuzzy
|
478 |
msgid "Show the field in the search engine"
|
479 |
msgstr "Паказваць поле пры рэгістрацыі"
|
480 |
|
481 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
483 |
#, fuzzy
|
484 |
msgid "Show the field in the blog"
|
485 |
msgstr "Паказваць поле пры рэгістрацыі"
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
#, fuzzy
|
490 |
msgid "Show the field if the role is at least:"
|
491 |
msgstr "Паказваць поле пры рэгістрацыі"
|
492 |
|
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 "Anonymous"
|
496 |
msgstr ""
|
497 |
|
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 "User has 'view_cimy_extra_fields' capability"
|
501 |
msgstr ""
|
502 |
|
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 "Send an email to the admin if the user changes its value"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
509 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
510 |
#, fuzzy
|
511 |
msgid "Advanced options"
|
512 |
msgstr "Дзеянні"
|
513 |
|
514 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
515 |
msgid "Clear"
|
516 |
msgstr "Ачысціць"
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
519 |
msgid "Invert selection"
|
520 |
msgstr "Инветировать выбар"
|
521 |
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
523 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
524 |
msgstr "Вы сапраўды жадаеце выдаліць поле(я) і дадзеныя ўстаўленыя ў іх карыстачамі?"
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
527 |
msgid "WordPress Fields"
|
528 |
msgstr "WordPress Fields"
|
529 |
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
531 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
535 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
536 |
msgid "Extra Fields"
|
537 |
msgstr "Extra Fields"
|
538 |
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
540 |
msgid "None!"
|
541 |
msgstr "Не!"
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
545 |
msgid "Order"
|
546 |
msgstr "Парадак"
|
547 |
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
549 |
msgid "Reset"
|
550 |
msgstr "Скід"
|
551 |
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
553 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
554 |
msgid "SUCCESSFUL"
|
555 |
msgstr "ПАСПЯХОВА"
|
556 |
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
559 |
#, fuzzy
|
560 |
msgid "select"
|
561 |
msgstr "Выдаліць"
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
565 |
#, fuzzy
|
566 |
msgid "Users per page"
|
567 |
msgstr "Табліца дадзеных карыстачоў"
|
568 |
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
571 |
msgid "Apply"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
@@ -579,70 +580,70 @@ msgstr ""
|
|
579 |
msgid "Users Extended"
|
580 |
msgstr "Спіс Аўтараў і прасунутых карыстачоў"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
#, php-format
|
584 |
msgid "Search results for “%s”"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
#, php-format
|
589 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
593 |
msgid "Search Users"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
#, fuzzy
|
599 |
msgid "Role"
|
600 |
msgstr "Кіравала"
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
605 |
msgid "Website"
|
606 |
msgstr "Адрас сайта"
|
607 |
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
610 |
msgid "Posts"
|
611 |
msgstr "Паведамленні"
|
612 |
|
613 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
614 |
msgid "View posts by this author"
|
615 |
msgstr "Прагледзець паведамленні гэтага аўтара"
|
616 |
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
618 |
msgid "Super Admin"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
622 |
#, php-format
|
623 |
msgid "e-mail: %s"
|
624 |
msgstr "e-mail: %s"
|
625 |
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
627 |
#, fuzzy
|
628 |
msgid "Change"
|
629 |
msgstr "Змяніць парадак"
|
630 |
|
631 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
632 |
#, fuzzy
|
633 |
msgid "Update selected users"
|
634 |
msgstr "Выдаліць абраныя палі"
|
635 |
|
636 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
637 |
#, fuzzy
|
638 |
msgid "Update"
|
639 |
msgstr "Абнавіць поле"
|
640 |
|
641 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
642 |
msgid "OK"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
646 |
msgid "Cancel"
|
647 |
msgstr ""
|
648 |
|
@@ -652,9 +653,9 @@ msgid "New user registration on your site %s:"
|
|
652 |
msgstr ""
|
653 |
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
656 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
657 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
658 |
#, fuzzy, php-format
|
659 |
msgid "Username: %s"
|
660 |
msgstr "Імя карыстача"
|
@@ -674,15 +675,15 @@ msgstr ""
|
|
674 |
msgid "[%s] Your username and password"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
678 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
679 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
680 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
681 |
#, php-format
|
682 |
msgid "%s: %s"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
686 |
#, php-format
|
687 |
msgid ""
|
688 |
"To activate your user, please click the following link:\n"
|
@@ -693,52 +694,52 @@ msgid ""
|
|
693 |
"\n"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
698 |
msgid "Your account is now active!"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
702 |
#, php-format
|
703 |
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>."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
707 |
msgid "An error occurred during the activation"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
711 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
712 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
713 |
#, php-format
|
714 |
msgid "Password: %s"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
718 |
msgid "Invalid activation key."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
722 |
msgid "The site is already active."
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
726 |
msgid "Could not create user"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
730 |
msgid "That username is already activated."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
734 |
msgid "That username is currently reserved but may be available in a couple of days."
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
738 |
msgid "username and email used"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
742 |
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."
|
743 |
msgstr ""
|
744 |
|
@@ -757,7 +758,7 @@ msgid "Update the file"
|
|
757 |
msgstr "Абнавіць поле"
|
758 |
|
759 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
760 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
761 |
#, fuzzy
|
762 |
msgid "Delete the picture"
|
763 |
msgstr "Выдаліць поле"
|
@@ -782,333 +783,342 @@ msgid "%s (%s) has changed one or more fields"
|
|
782 |
msgstr ""
|
783 |
|
784 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
785 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
787 |
msgid "Options"
|
788 |
msgstr "Налады"
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
791 |
msgid "WordPress Fields table emptied"
|
792 |
msgstr "Табліца WordPress Fields вычышчана"
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
795 |
msgid "WordPress Fields table deleted"
|
796 |
msgstr "Табліца WordPress Fields выдалена"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
799 |
msgid "Extra Fields table emptied"
|
800 |
msgstr "Табліца Extra Fields вычышчана"
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
803 |
msgid "Extra Fields table deleted"
|
804 |
msgstr "Табліца Extra Fields выдалена"
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
807 |
msgid "Users Data table emptied"
|
808 |
msgstr "Табліца карыстацкіх дадзеных вычышчана"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
811 |
msgid "Users Data table deleted"
|
812 |
msgstr "Табліца карыстацкіх дадзеных выдалена"
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
815 |
msgid "Options set to default values"
|
816 |
msgstr "Усталяваны налады па-змаўчанню"
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
819 |
msgid "Options deleted"
|
820 |
msgstr "Налады выдалены"
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
823 |
msgid "Options changed"
|
824 |
msgstr "Налады зменены"
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
827 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
831 |
msgid "Support the Cimy Project"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
835 |
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!"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
840 |
msgid "Save Changes"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
844 |
msgid "General"
|
845 |
msgstr "Галоўнае"
|
846 |
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
848 |
msgid "installed is"
|
849 |
msgstr "усталявана"
|
850 |
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
852 |
msgid "OPTIONS DELETED!"
|
853 |
msgstr "НАЛАДЫ ВЫДАЛЕНЫ!"
|
854 |
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
857 |
msgid "Fix the problem"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
861 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
862 |
msgstr "ВЕРСІІ НЕ СУПАДАЮЦЬ! Гэта з-за таго, што Вы не дэактывавалі, а затым актывавалі ўбудову пасля абнаўлення! Могуць паўстаць праблемы..."
|
863 |
|
864 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
865 |
msgid "Picture/Avatar upload"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
869 |
msgid "is created and writable"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
873 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
877 |
#, fuzzy
|
878 |
msgid "Show all fields in the welcome email"
|
879 |
msgstr "Паказваць поле пры рэгістрацыі"
|
880 |
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
882 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
886 |
msgid "Enable email confirmation"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
890 |
msgid "user that registers should confirm its email address via a link click"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
894 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
898 |
msgid "Enable form confirmation"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
902 |
msgid "a summary of the registration form will be presented to the user"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
906 |
msgid "Customize welcome email sent to the new user"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
910 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
914 |
msgid "Redirect to the source"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
918 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
922 |
msgid "No captcha"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
926 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
930 |
msgid "Public KEY"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
934 |
msgid "Private KEY"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
938 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
942 |
msgid "This captcha is probably weaker, but is easier for users"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
946 |
#, php-format
|
947 |
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>"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
951 |
msgid "Change login/registration page logo"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
955 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
959 |
msgid "Database"
|
960 |
msgstr "База дадзеных"
|
961 |
|
962 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
966 |
msgid "select action"
|
967 |
msgstr "абярыце дзеянне"
|
968 |
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
970 |
msgid "Default values"
|
971 |
msgstr "Значэнні па-змаўчанню"
|
972 |
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
977 |
msgid "Delete"
|
978 |
msgstr "Выдаліць"
|
979 |
|
980 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
983 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
984 |
msgid "NOT PRESENT"
|
985 |
msgstr "НЕ ІСНУЕ"
|
986 |
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
988 |
msgid "WordPress Fields table"
|
989 |
msgstr "Табліца WordPress Fields"
|
990 |
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
993 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
994 |
msgid "Empty"
|
995 |
msgstr "Ачысціць"
|
996 |
|
997 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
998 |
msgid "Extra Fields table"
|
999 |
msgstr "Табліца Extra Fields"
|
1000 |
|
1001 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1002 |
msgid "Users Data table"
|
1003 |
msgstr "Табліца дадзеных карыстачоў"
|
1004 |
|
1005 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1006 |
msgid "all data inserted by users in all and only extra fields"
|
1007 |
msgstr "усе дадзеныя, устаўленыя карыстачамі ва ўсё і толькі ў дадатковыя палі"
|
1008 |
|
1009 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1010 |
msgid "Force tables creation"
|
1011 |
msgstr "Force tables creation"
|
1012 |
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1014 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1018 |
msgid "User Profile"
|
1019 |
msgstr "Профіль карыстача"
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1022 |
#, fuzzy
|
1023 |
msgid "Extra Fields section title"
|
1024 |
msgstr "Табліца Extra Fields"
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1027 |
msgid "Fieldset's titles, separates with comma"
|
1028 |
msgstr "Назвы палёў праз коску"
|
1029 |
|
1030 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1031 |
msgid "example: title1,title2,title3"
|
1032 |
msgstr "прыклад: заголовок1,заголовок2, заголовок3"
|
1033 |
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1035 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1039 |
msgid "Authors & Users Extended"
|
1040 |
msgstr "Аўтары і Прасунутыя карыстачы"
|
1041 |
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1043 |
msgid "Hide username field"
|
1044 |
msgstr "Схаваць поле з імем карыстача"
|
1045 |
|
1046 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1047 |
msgid "Hide name field"
|
1048 |
msgstr "Схаваць поле з імем"
|
1049 |
|
1050 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1051 |
msgid "Hide email field"
|
1052 |
msgstr "Схаваць поле з email"
|
1053 |
|
1054 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1055 |
#, fuzzy
|
1056 |
msgid "Hide role field"
|
1057 |
msgstr "Схаваць поле з імем"
|
1058 |
|
1059 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1060 |
msgid "Hide website field"
|
1061 |
msgstr "Схаваць поле з адрасам сайта"
|
1062 |
|
1063 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1064 |
msgid "Hide n. posts field"
|
1065 |
msgstr "Схаваць поле з № пастоў"
|
1066 |
|
1067 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1068 |
msgid "WordPress hidden fields"
|
1069 |
msgstr "Утоеныя палі WordPress"
|
1070 |
|
1071 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1072 |
msgid "Show password"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1076 |
msgid "Show confirmation password"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1080 |
msgid "Show password strength meter"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1084 |
msgid "Show first name"
|
1085 |
msgstr "Паказаць імя"
|
1086 |
|
1087 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1088 |
msgid "Show last name"
|
1089 |
msgstr "Паказаць прозвішча"
|
1090 |
|
1091 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1092 |
msgid "Show nickname"
|
1093 |
msgstr "Паказаць нік"
|
1094 |
|
1095 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1096 |
msgid "Show website"
|
1097 |
msgstr "Паказаць адрас сайта"
|
1098 |
|
1099 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1100 |
msgid "Show AIM"
|
1101 |
msgstr "Паказаць AIM"
|
1102 |
|
1103 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1104 |
msgid "Show Yahoo IM"
|
1105 |
msgstr "Паказаць Yahoo IM"
|
1106 |
|
1107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1108 |
msgid "Show Jabber / Google Talk"
|
1109 |
msgstr "Паказаць Jabber / Google Talk"
|
1110 |
|
1111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1112 |
msgid "Show Biographical Info"
|
1113 |
msgstr ""
|
1114 |
|
@@ -1130,44 +1140,44 @@ msgstr ""
|
|
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 ""
|
1132 |
|
1133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1134 |
msgid "Password"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1138 |
msgid "Password confirmation"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1142 |
#, fuzzy
|
1143 |
msgid "First name"
|
1144 |
msgstr "Паказаць імя"
|
1145 |
|
1146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1147 |
#, fuzzy
|
1148 |
msgid "Last name"
|
1149 |
msgstr "Паказаць прозвішча"
|
1150 |
|
1151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1152 |
#, fuzzy
|
1153 |
msgid "Nickname"
|
1154 |
msgstr "Імя"
|
1155 |
|
1156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1157 |
msgid "AIM"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1161 |
#, fuzzy
|
1162 |
msgid "Yahoo IM"
|
1163 |
msgstr "Паказаць Yahoo IM"
|
1164 |
|
1165 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1166 |
#, fuzzy
|
1167 |
msgid "Jabber / Google Talk"
|
1168 |
msgstr "Паказаць Jabber / Google Talk"
|
1169 |
|
1170 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1171 |
msgid "Biographical Info"
|
1172 |
msgstr ""
|
1173 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:51-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:51-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Web Geeks\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
|
|
|
|
|
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
36 |
msgid "ERROR"
|
37 |
msgstr "ПАМЫЛКА"
|
38 |
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "не дакладна ўведзены email."
|
46 |
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "не можа быць пустым."
|
50 |
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
52 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "не дакладна"
|
55 |
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
59 |
msgid "YES"
|
60 |
msgstr "ТАК"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
65 |
msgid "NO"
|
66 |
msgstr "НЕ"
|
67 |
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
69 |
msgid "should be"
|
70 |
msgstr "павінна быць"
|
71 |
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
73 |
msgid "should be an image."
|
74 |
msgstr "павінен быць малюнак."
|
75 |
|
76 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "не можа мець памер "
|
83 |
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "не можа мець даўжыню "
|
87 |
|
88 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "не можа мець памер выдатны ад"
|
91 |
|
92 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "не можа мець даўжыню выдатную ад"
|
95 |
|
96 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "мае памер больш чым"
|
99 |
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "мае даўжыню больш чым"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Імя карыстача"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1007
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Змяніць парадак"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1313
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
182 |
msgstr "Змяніць парадак"
|
183 |
|
184 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
|
186 |
msgid "Min length"
|
187 |
msgstr "Мін даўжыня"
|
188 |
|
189 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
191 |
msgid "Exact length"
|
192 |
msgstr "Дакладная даўжыня"
|
193 |
|
194 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
196 |
msgid "Max length"
|
197 |
msgstr "Макс даўжыня"
|
198 |
|
214 |
msgstr "Вы не можаце ўсталяваць парадак, які прапускае некаторыя лікі"
|
215 |
|
216 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
218 |
msgid "Nothing selected"
|
219 |
msgstr "Нічога не абрана"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
222 |
msgid "Field(s)"
|
223 |
msgstr "Поле(я)"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
226 |
msgid "deleted correctly"
|
227 |
msgstr "выдалены правільна"
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
231 |
msgid "Min size"
|
232 |
msgstr "Мін памер"
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
236 |
msgid "Exact size"
|
237 |
msgstr "Дакладны памер"
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
241 |
msgid "Max size"
|
242 |
msgstr "Макс памер"
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
245 |
msgid "Exact or Max size"
|
246 |
msgstr "Дакладны ці Макс памер"
|
247 |
|
248 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
249 |
msgid "Name not specified"
|
250 |
msgstr "Імя не зададзена"
|
251 |
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
253 |
msgid "Name cannot contains spaces"
|
254 |
msgstr "Імя не павінна ўтрымоўваць прабелаў"
|
255 |
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
257 |
msgid "Label not specified"
|
258 |
msgstr "Пазнака не абрана"
|
259 |
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
261 |
msgid "not selected (with this type is necessary)"
|
262 |
msgstr "не абрана (з гэтым тыпам неабходна)"
|
263 |
|
264 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
265 |
msgid "If you select"
|
266 |
msgstr "Калі Вы абралі"
|
267 |
|
268 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
269 |
msgid "you cannot select Min or Max"
|
270 |
msgstr "Вы не можаце абраць Мін ці Макс"
|
271 |
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
275 |
msgid "should be in the range of"
|
276 |
msgstr "павінна быць у диапозоне"
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
279 |
msgid "Equal TO not specified"
|
280 |
msgstr "Роўная ЧАМУ не абрана"
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
283 |
msgid "With checkbox type Equal TO can only be"
|
284 |
msgstr "Можа быць толькі са сцяжком выбару тыпу Роўная ЧАМУ"
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
287 |
msgid "With radio type Equal TO can only be"
|
288 |
msgstr "Можа быць толькі з перамыкачом выбару тыпу Роўная ЧАМУ"
|
289 |
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
291 |
msgid "With checkbox type Value can only be"
|
292 |
msgstr "Можа быць толькі са сцяжкамі выбару тыпу Значэнне"
|
293 |
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
295 |
msgid "With radio type Value can only be"
|
296 |
msgstr "Можа быць толькі з перамыкачом выбару тыпу Значэнне"
|
297 |
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
299 |
msgid "Field inserted correctly"
|
300 |
msgstr "Поле ўстаўлена карэктна"
|
301 |
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
303 |
msgid "Field #"
|
304 |
msgstr "Поле #"
|
305 |
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
307 |
msgid "updated correctly"
|
308 |
msgstr "абноўлена карэктна"
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
311 |
msgid "Name inserted is just in the database, change to another one"
|
312 |
msgstr "Устаўляемае імя ўжо ёсць у БД, абярыце іншае"
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
316 |
msgid "Add a new Field"
|
317 |
msgstr "Дадаць новае поле"
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
320 |
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."
|
321 |
msgstr "Для дадання новага поля вам неабходна задаць імя, тып і пазнаку; значэнне і апісанне. Правілы ўжываюцца падчас рэгістрацыі карыстача."
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
324 |
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'"
|
325 |
msgstr "З <strong>перамыкачом(radio)</strong> і <strong>сцяжкамі(checkbox)</strong>: <em>Значэнне</em> і <em>роўна ЧАМУ</em> можа быць або 'Yes', або 'No' - гэта азначае 'абрана' ці 'не абрана'"
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
328 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
329 |
msgstr "З <strong>выпадальным спісам(drop-down)</strong>: вы можаце дадаць усе опцыі ў пазнаку, напрыклад: пазнака/элемент1,элемент2,элемент3"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
332 |
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"
|
333 |
msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
336 |
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)"
|
337 |
msgstr "З <strong>picture-url</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; <em>роўная ЧАМУ</em> мае на ўвазе max шырыню для прэв'ю (вышыня будзе ўсталявана прапарцыйна)"
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
340 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
341 |
msgstr "З <strong>датай рэгістрацыі(registration-date)</strong>: <em>роўная ЧАМУ</em> мае на ўвазе фармат даты і часу"
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
344 |
#, fuzzy
|
345 |
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"
|
346 |
msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
|
347 |
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
349 |
#, fuzzy
|
350 |
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"
|
351 |
msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
359 |
msgid "Name"
|
360 |
msgstr "Імя"
|
361 |
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
368 |
msgid "Value"
|
369 |
msgstr "Значэнне"
|
370 |
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
374 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
375 |
msgid "Type"
|
376 |
msgstr "Тып"
|
377 |
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
382 |
msgid "Label"
|
383 |
msgstr "Пазнака"
|
384 |
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
389 |
msgid "Description"
|
390 |
msgstr "Апісанне"
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
394 |
msgid "Rules"
|
395 |
msgstr "Кіравала"
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
399 |
msgid "Actions"
|
400 |
msgstr "Дзеянні"
|
401 |
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
406 |
#, fuzzy
|
407 |
msgid "Fieldset"
|
408 |
msgstr "Палі"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
412 |
msgid "Can be empty"
|
413 |
msgstr "Можа быць пустым"
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
417 |
msgid "Check for E-mail syntax"
|
418 |
msgstr "Праверка сінтаксісу E-mail"
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
422 |
msgid "Can be modified"
|
423 |
msgstr "Можа быць зменена"
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
427 |
msgid "Can be modified only if empty"
|
428 |
msgstr "Можа быць зменена толькі калі пустое"
|
429 |
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
432 |
msgid "Can be modified only by admin"
|
433 |
msgstr "Можа быць зменена толькі адмінам"
|
434 |
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
437 |
msgid "Can be modified only by admin or if empty"
|
438 |
msgstr "Можа быць зменена толькі адмінам ці калі пустое"
|
439 |
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
442 |
msgid "Cannot be modified"
|
443 |
msgstr "Не можа быць зменена"
|
444 |
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
447 |
msgid "Should be equal TO"
|
448 |
msgstr "Долднадолжно быць роўна ЧАМУ"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
452 |
msgid "Case sensitive"
|
453 |
msgstr "Чуствительность да рэгістра"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
457 |
msgid "Regular Expression"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
462 |
msgid "Show the field in the registration"
|
463 |
msgstr "Паказваць поле пры рэгістрацыі"
|
464 |
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
467 |
msgid "Show the field in User's profile"
|
468 |
msgstr "Паказваць поле ў профілі карыстача"
|
469 |
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
472 |
#, fuzzy
|
473 |
msgid "Show the field in Users Extended section"
|
474 |
msgstr "Паказваць поле ў меню A&прасунутых П"
|
475 |
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
478 |
#, fuzzy
|
479 |
msgid "Show the field in the search engine"
|
480 |
msgstr "Паказваць поле пры рэгістрацыі"
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
484 |
#, fuzzy
|
485 |
msgid "Show the field in the blog"
|
486 |
msgstr "Паказваць поле пры рэгістрацыі"
|
487 |
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
490 |
#, fuzzy
|
491 |
msgid "Show the field if the role is at least:"
|
492 |
msgstr "Паказваць поле пры рэгістрацыі"
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
496 |
msgid "Anonymous"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
500 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
501 |
msgid "User has 'view_cimy_extra_fields' capability"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
506 |
msgid "Send an email to the admin if the user changes its value"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
511 |
#, fuzzy
|
512 |
msgid "Advanced options"
|
513 |
msgstr "Дзеянні"
|
514 |
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
516 |
msgid "Clear"
|
517 |
msgstr "Ачысціць"
|
518 |
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
520 |
msgid "Invert selection"
|
521 |
msgstr "Инветировать выбар"
|
522 |
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
524 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
525 |
msgstr "Вы сапраўды жадаеце выдаліць поле(я) і дадзеныя ўстаўленыя ў іх карыстачамі?"
|
526 |
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
528 |
msgid "WordPress Fields"
|
529 |
msgstr "WordPress Fields"
|
530 |
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
536 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
537 |
msgid "Extra Fields"
|
538 |
msgstr "Extra Fields"
|
539 |
|
540 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
541 |
msgid "None!"
|
542 |
msgstr "Не!"
|
543 |
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
545 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
546 |
msgid "Order"
|
547 |
msgstr "Парадак"
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
550 |
msgid "Reset"
|
551 |
msgstr "Скід"
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
555 |
msgid "SUCCESSFUL"
|
556 |
msgstr "ПАСПЯХОВА"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
560 |
#, fuzzy
|
561 |
msgid "select"
|
562 |
msgstr "Выдаліць"
|
563 |
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
566 |
#, fuzzy
|
567 |
msgid "Users per page"
|
568 |
msgstr "Табліца дадзеных карыстачоў"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
572 |
msgid "Apply"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
578 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
580 |
msgid "Users Extended"
|
581 |
msgstr "Спіс Аўтараў і прасунутых карыстачоў"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
584 |
#, php-format
|
585 |
msgid "Search results for “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
589 |
#, php-format
|
590 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
594 |
msgid "Search Users"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
599 |
#, fuzzy
|
600 |
msgid "Role"
|
601 |
msgstr "Кіравала"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
606 |
msgid "Website"
|
607 |
msgstr "Адрас сайта"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
611 |
msgid "Posts"
|
612 |
msgstr "Паведамленні"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
615 |
msgid "View posts by this author"
|
616 |
msgstr "Прагледзець паведамленні гэтага аўтара"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
619 |
msgid "Super Admin"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
623 |
#, php-format
|
624 |
msgid "e-mail: %s"
|
625 |
msgstr "e-mail: %s"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
628 |
#, fuzzy
|
629 |
msgid "Change"
|
630 |
msgstr "Змяніць парадак"
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
633 |
#, fuzzy
|
634 |
msgid "Update selected users"
|
635 |
msgstr "Выдаліць абраныя палі"
|
636 |
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
638 |
#, fuzzy
|
639 |
msgid "Update"
|
640 |
msgstr "Абнавіць поле"
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
643 |
msgid "OK"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
647 |
msgid "Cancel"
|
648 |
msgstr ""
|
649 |
|
653 |
msgstr ""
|
654 |
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
657 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
658 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
659 |
#, fuzzy, php-format
|
660 |
msgid "Username: %s"
|
661 |
msgstr "Імя карыстача"
|
675 |
msgid "[%s] Your username and password"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
679 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
680 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
681 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
682 |
#, php-format
|
683 |
msgid "%s: %s"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
687 |
#, php-format
|
688 |
msgid ""
|
689 |
"To activate your user, please click the following link:\n"
|
694 |
"\n"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
699 |
msgid "Your account is now active!"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
703 |
#, php-format
|
704 |
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>."
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
708 |
msgid "An error occurred during the activation"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
712 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
713 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
714 |
#, php-format
|
715 |
msgid "Password: %s"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
719 |
msgid "Invalid activation key."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
723 |
msgid "The site is already active."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
727 |
msgid "Could not create user"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
731 |
msgid "That username is already activated."
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
735 |
msgid "That username is currently reserved but may be available in a couple of days."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
739 |
msgid "username and email used"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
743 |
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."
|
744 |
msgstr ""
|
745 |
|
758 |
msgstr "Абнавіць поле"
|
759 |
|
760 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
761 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
762 |
#, fuzzy
|
763 |
msgid "Delete the picture"
|
764 |
msgstr "Выдаліць поле"
|
783 |
msgstr ""
|
784 |
|
785 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
786 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
787 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
788 |
msgid "Options"
|
789 |
msgstr "Налады"
|
790 |
|
791 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
792 |
msgid "WordPress Fields table emptied"
|
793 |
msgstr "Табліца WordPress Fields вычышчана"
|
794 |
|
795 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
796 |
msgid "WordPress Fields table deleted"
|
797 |
msgstr "Табліца WordPress Fields выдалена"
|
798 |
|
799 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
800 |
msgid "Extra Fields table emptied"
|
801 |
msgstr "Табліца Extra Fields вычышчана"
|
802 |
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
804 |
msgid "Extra Fields table deleted"
|
805 |
msgstr "Табліца Extra Fields выдалена"
|
806 |
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
808 |
msgid "Users Data table emptied"
|
809 |
msgstr "Табліца карыстацкіх дадзеных вычышчана"
|
810 |
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
812 |
msgid "Users Data table deleted"
|
813 |
msgstr "Табліца карыстацкіх дадзеных выдалена"
|
814 |
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
816 |
msgid "Options set to default values"
|
817 |
msgstr "Усталяваны налады па-змаўчанню"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
820 |
msgid "Options deleted"
|
821 |
msgstr "Налады выдалены"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
824 |
msgid "Options changed"
|
825 |
msgstr "Налады зменены"
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
828 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
832 |
msgid "Support the Cimy Project"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
836 |
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!"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
841 |
msgid "Save Changes"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
845 |
msgid "General"
|
846 |
msgstr "Галоўнае"
|
847 |
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
849 |
msgid "installed is"
|
850 |
msgstr "усталявана"
|
851 |
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
853 |
msgid "OPTIONS DELETED!"
|
854 |
msgstr "НАЛАДЫ ВЫДАЛЕНЫ!"
|
855 |
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
858 |
msgid "Fix the problem"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
862 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
863 |
msgstr "ВЕРСІІ НЕ СУПАДАЮЦЬ! Гэта з-за таго, што Вы не дэактывавалі, а затым актывавалі ўбудову пасля абнаўлення! Могуць паўстаць праблемы..."
|
864 |
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
866 |
msgid "Picture/Avatar upload"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
870 |
msgid "is created and writable"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
874 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
878 |
#, fuzzy
|
879 |
msgid "Show all fields in the welcome email"
|
880 |
msgstr "Паказваць поле пры рэгістрацыі"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
883 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
887 |
msgid "Enable email confirmation"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
891 |
msgid "user that registers should confirm its email address via a link click"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
895 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
899 |
msgid "Enable form confirmation"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
903 |
msgid "a summary of the registration form will be presented to the user"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
907 |
msgid "Customize welcome email sent to the new user"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
911 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
915 |
msgid "Redirect to the source"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
919 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
923 |
msgid "No captcha"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
927 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
931 |
msgid "Public KEY"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
935 |
msgid "Private KEY"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
939 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
943 |
msgid "This captcha is probably weaker, but is easier for users"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
947 |
#, php-format
|
948 |
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>"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
952 |
msgid "Change login/registration page logo"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
956 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
960 |
msgid "Database"
|
961 |
msgstr "База дадзеных"
|
962 |
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
967 |
msgid "select action"
|
968 |
msgstr "абярыце дзеянне"
|
969 |
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
971 |
msgid "Default values"
|
972 |
msgstr "Значэнні па-змаўчанню"
|
973 |
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
978 |
msgid "Delete"
|
979 |
msgstr "Выдаліць"
|
980 |
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
985 |
msgid "NOT PRESENT"
|
986 |
msgstr "НЕ ІСНУЕ"
|
987 |
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
989 |
msgid "WordPress Fields table"
|
990 |
msgstr "Табліца WordPress Fields"
|
991 |
|
992 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
995 |
msgid "Empty"
|
996 |
msgstr "Ачысціць"
|
997 |
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
999 |
msgid "Extra Fields table"
|
1000 |
msgstr "Табліца Extra Fields"
|
1001 |
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
1003 |
msgid "Users Data table"
|
1004 |
msgstr "Табліца дадзеных карыстачоў"
|
1005 |
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
1007 |
msgid "all data inserted by users in all and only extra fields"
|
1008 |
msgstr "усе дадзеныя, устаўленыя карыстачамі ва ўсё і толькі ў дадатковыя палі"
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
1011 |
msgid "Force tables creation"
|
1012 |
msgstr "Force tables creation"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
1015 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1019 |
msgid "User Profile"
|
1020 |
msgstr "Профіль карыстача"
|
1021 |
|
1022 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1023 |
#, fuzzy
|
1024 |
msgid "Extra Fields section title"
|
1025 |
msgstr "Табліца Extra Fields"
|
1026 |
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1028 |
msgid "Fieldset's titles, separates with comma"
|
1029 |
msgstr "Назвы палёў праз коску"
|
1030 |
|
1031 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1032 |
msgid "example: title1,title2,title3"
|
1033 |
msgstr "прыклад: заголовок1,заголовок2, заголовок3"
|
1034 |
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1036 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1040 |
msgid "Authors & Users Extended"
|
1041 |
msgstr "Аўтары і Прасунутыя карыстачы"
|
1042 |
|
1043 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1044 |
msgid "Hide username field"
|
1045 |
msgstr "Схаваць поле з імем карыстача"
|
1046 |
|
1047 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1048 |
msgid "Hide name field"
|
1049 |
msgstr "Схаваць поле з імем"
|
1050 |
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1052 |
msgid "Hide email field"
|
1053 |
msgstr "Схаваць поле з email"
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1056 |
#, fuzzy
|
1057 |
msgid "Hide role field"
|
1058 |
msgstr "Схаваць поле з імем"
|
1059 |
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:671
|
1061 |
msgid "Hide website field"
|
1062 |
msgstr "Схаваць поле з адрасам сайта"
|
1063 |
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1065 |
msgid "Hide n. posts field"
|
1066 |
msgstr "Схаваць поле з № пастоў"
|
1067 |
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
1069 |
msgid "WordPress hidden fields"
|
1070 |
msgstr "Утоеныя палі WordPress"
|
1071 |
|
1072 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
1073 |
+
#, fuzzy
|
1074 |
+
msgid "Show username"
|
1075 |
+
msgstr "Паказаць прозвішча"
|
1076 |
+
|
1077 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
|
1078 |
+
msgid "when unchecked the email address will be used as username"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
1082 |
msgid "Show password"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
1086 |
msgid "Show confirmation password"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
1090 |
msgid "Show password strength meter"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
1094 |
msgid "Show first name"
|
1095 |
msgstr "Паказаць імя"
|
1096 |
|
1097 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
1098 |
msgid "Show last name"
|
1099 |
msgstr "Паказаць прозвішча"
|
1100 |
|
1101 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
|
1102 |
msgid "Show nickname"
|
1103 |
msgstr "Паказаць нік"
|
1104 |
|
1105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
1106 |
msgid "Show website"
|
1107 |
msgstr "Паказаць адрас сайта"
|
1108 |
|
1109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
1110 |
msgid "Show AIM"
|
1111 |
msgstr "Паказаць AIM"
|
1112 |
|
1113 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:721
|
1114 |
msgid "Show Yahoo IM"
|
1115 |
msgstr "Паказаць Yahoo IM"
|
1116 |
|
1117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
1118 |
msgid "Show Jabber / Google Talk"
|
1119 |
msgstr "Паказаць Jabber / Google Talk"
|
1120 |
|
1121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:729
|
1122 |
msgid "Show Biographical Info"
|
1123 |
msgstr ""
|
1124 |
|
1140 |
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!"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
|
1144 |
msgid "Password"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:236
|
1148 |
msgid "Password confirmation"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:258
|
1152 |
#, fuzzy
|
1153 |
msgid "First name"
|
1154 |
msgstr "Паказаць імя"
|
1155 |
|
1156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
1157 |
#, fuzzy
|
1158 |
msgid "Last name"
|
1159 |
msgstr "Паказаць прозвішча"
|
1160 |
|
1161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
1162 |
#, fuzzy
|
1163 |
msgid "Nickname"
|
1164 |
msgstr "Імя"
|
1165 |
|
1166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:346
|
1167 |
msgid "AIM"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:368
|
1171 |
#, fuzzy
|
1172 |
msgid "Yahoo IM"
|
1173 |
msgstr "Паказаць Yahoo IM"
|
1174 |
|
1175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:390
|
1176 |
#, fuzzy
|
1177 |
msgid "Jabber / Google Talk"
|
1178 |
msgstr "Паказаць Jabber / Google Talk"
|
1179 |
|
1180 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:412
|
1181 |
msgid "Biographical Info"
|
1182 |
msgstr ""
|
1183 |
|
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 |
"Language: \n"
|
@@ -17,146 +17,147 @@ msgstr ""
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
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/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
35 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
36 |
msgid "ERROR"
|
37 |
msgstr "ГРЕШКА"
|
38 |
|
39 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "няма правилен email синтаксис."
|
46 |
|
47 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "не може да е празно."
|
50 |
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "не е правилно"
|
55 |
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "ДА"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "НЕ"
|
67 |
|
68 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
69 |
msgid "should be"
|
70 |
msgstr "трябва да е"
|
71 |
|
72 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
73 |
msgid "should be an image."
|
74 |
msgstr "трябва да е снимка."
|
75 |
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "не може да е с по-малък размер от"
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "не може да има по-малка дължина от"
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "не може да има размер различен от"
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "не може да има дължина различна от"
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "не може да има размер по-голям от"
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "не може да има дължина по-голяма от"
|
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_register.php:
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
112 |
msgid "Username"
|
113 |
msgstr "Потребителско име"
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
msgid "E-mail"
|
119 |
msgstr "E-mail"
|
120 |
|
121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
#, fuzzy
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Моля качете снимка с някое от тези разширения"
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Моля качете снимка с някое от тези разширения"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
134 |
msgid "Strength indicator"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
138 |
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 ! \" ? $ % ^ & )."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
142 |
#, fuzzy
|
143 |
msgid "Change image"
|
144 |
msgstr "Смени реда"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
147 |
msgid "Insert the code:"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
@@ -181,17 +182,17 @@ msgid "Change order"
|
|
181 |
msgstr "Смени реда"
|
182 |
|
183 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
185 |
msgid "Min length"
|
186 |
msgstr "Минимална дължина"
|
187 |
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
msgid "Exact length"
|
191 |
msgstr "Точна дължина"
|
192 |
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
195 |
msgid "Max length"
|
196 |
msgstr "Максимална дължина"
|
197 |
|
@@ -213,365 +214,365 @@ msgid "You cannot give an order that misses some numbers"
|
|
213 |
msgstr "Не може да даваш ред, в който липсват числа"
|
214 |
|
215 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
216 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
217 |
msgid "Nothing selected"
|
218 |
msgstr "Нищо не е избрано"
|
219 |
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Field(s)"
|
222 |
msgstr "Поле(та)"
|
223 |
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
225 |
msgid "deleted correctly"
|
226 |
msgstr "изтрит успешно"
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
230 |
msgid "Min size"
|
231 |
msgstr "Минимален размер"
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
234 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
235 |
msgid "Exact size"
|
236 |
msgstr "Точен размер"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
240 |
msgid "Max size"
|
241 |
msgstr "Максимален размер"
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
244 |
msgid "Exact or Max size"
|
245 |
msgstr "Точен или максимален размер"
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Name not specified"
|
249 |
msgstr "Не е определено име"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Name cannot contains spaces"
|
253 |
msgstr "Името не може да съдържа шпации"
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "Label not specified"
|
257 |
msgstr "Не е определен етикет"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
msgid "not selected (with this type is necessary)"
|
261 |
msgstr "не е избрано (задължително за този тип)"
|
262 |
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
264 |
msgid "If you select"
|
265 |
msgstr "Ако избра"
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
268 |
msgid "you cannot select Min or Max"
|
269 |
msgstr "не можеш да избереш минимума или максимума"
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
274 |
msgid "should be in the range of"
|
275 |
msgstr "трябва да е в рамките на"
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
278 |
msgid "Equal TO not specified"
|
279 |
msgstr "Равно НА не е определено"
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
282 |
msgid "With checkbox type Equal TO can only be"
|
283 |
msgstr "С отметка от тип Равно НА може да е само"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
286 |
msgid "With radio type Equal TO can only be"
|
287 |
msgstr "С радио бутон от тип Равно НА може да е само"
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
290 |
msgid "With checkbox type Value can only be"
|
291 |
msgstr "С отметка от тип Стойност може да е само"
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
294 |
msgid "With radio type Value can only be"
|
295 |
msgstr "С радио бутон от тип Стойност може да е само"
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
298 |
msgid "Field inserted correctly"
|
299 |
msgstr "Полето е добавено успешно"
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
302 |
msgid "Field #"
|
303 |
msgstr "Поле #"
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
306 |
msgid "updated correctly"
|
307 |
msgstr "подновено успешно"
|
308 |
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Name inserted is just in the database, change to another one"
|
311 |
msgstr "Въведеното име е в базата данни, променето го"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
315 |
msgid "Add a new Field"
|
316 |
msgstr "Добави друго поле"
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
319 |
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."
|
320 |
msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
|
321 |
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
323 |
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'"
|
324 |
msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
|
325 |
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
327 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
328 |
msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
331 |
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"
|
332 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
335 |
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)"
|
336 |
msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
|
337 |
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
339 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
340 |
msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
343 |
#, fuzzy
|
344 |
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"
|
345 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
346 |
|
347 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
348 |
#, fuzzy
|
349 |
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"
|
350 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
351 |
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
msgid "Name"
|
359 |
msgstr "Име"
|
360 |
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
msgid "Value"
|
368 |
msgstr "Стойност"
|
369 |
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
373 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
374 |
msgid "Type"
|
375 |
msgstr "Тип"
|
376 |
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
378 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
381 |
msgid "Label"
|
382 |
msgstr "Етикет"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
387 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
388 |
msgid "Description"
|
389 |
msgstr "Описание"
|
390 |
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
393 |
msgid "Rules"
|
394 |
msgstr "Правила"
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
398 |
msgid "Actions"
|
399 |
msgstr "Действия"
|
400 |
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
#, fuzzy
|
406 |
msgid "Fieldset"
|
407 |
msgstr "Полета"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
msgid "Can be empty"
|
412 |
msgstr "Може да е празно"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
msgid "Check for E-mail syntax"
|
417 |
msgstr "Провери за Email синтаксис"
|
418 |
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
420 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
421 |
msgid "Can be modified"
|
422 |
msgstr "Може да бъде променяно"
|
423 |
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
426 |
msgid "Can be modified only if empty"
|
427 |
msgstr "Може да бъде променяно само ако е празно"
|
428 |
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
431 |
msgid "Can be modified only by admin"
|
432 |
msgstr "Може да бъде променяно само от администратора"
|
433 |
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
436 |
msgid "Can be modified only by admin or if empty"
|
437 |
msgstr "Може да бъде променяно само от администратора или ако е празно"
|
438 |
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
440 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
441 |
msgid "Cannot be modified"
|
442 |
msgstr "Не може да бъде променяно"
|
443 |
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
446 |
msgid "Should be equal TO"
|
447 |
msgstr "Би трябвало да е равно НА"
|
448 |
|
449 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
451 |
msgid "Case sensitive"
|
452 |
msgstr "Различават се големи и малко букви"
|
453 |
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
456 |
msgid "Regular Expression"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
461 |
msgid "Show the field in the registration"
|
462 |
msgstr "Покажи полето при регистрация"
|
463 |
|
464 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
466 |
msgid "Show the field in User's profile"
|
467 |
msgstr "Покажи полето в профила на потребителя"
|
468 |
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
470 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
471 |
#, fuzzy
|
472 |
msgid "Show the field in Users Extended section"
|
473 |
msgstr "Покажи полето в A&П разширеното меню"
|
474 |
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
476 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
477 |
#, fuzzy
|
478 |
msgid "Show the field in the search engine"
|
479 |
msgstr "Покажи полето при регистрация"
|
480 |
|
481 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
483 |
#, fuzzy
|
484 |
msgid "Show the field in the blog"
|
485 |
msgstr "Покажи полето при регистрация"
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
#, fuzzy
|
490 |
msgid "Show the field if the role is at least:"
|
491 |
msgstr "Покажи полето при регистрация"
|
492 |
|
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 "Anonymous"
|
496 |
msgstr ""
|
497 |
|
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 "User has 'view_cimy_extra_fields' capability"
|
501 |
msgstr ""
|
502 |
|
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 "Send an email to the admin if the user changes its value"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
509 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
510 |
#, fuzzy
|
511 |
msgid "Advanced options"
|
512 |
msgstr "Действия"
|
513 |
|
514 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
515 |
msgid "Clear"
|
516 |
msgstr "Изчисти"
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
519 |
msgid "Invert selection"
|
520 |
msgstr "Обърни избора"
|
521 |
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
523 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
524 |
msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
527 |
msgid "WordPress Fields"
|
528 |
msgstr "WordPress полета"
|
529 |
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
531 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
535 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
536 |
msgid "Extra Fields"
|
537 |
msgstr "Допълнителни полета"
|
538 |
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
540 |
msgid "None!"
|
541 |
msgstr "Няма!"
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
545 |
msgid "Order"
|
546 |
msgstr "Подреди"
|
547 |
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
549 |
msgid "Reset"
|
550 |
msgstr "Отмени"
|
551 |
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
553 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
554 |
msgid "SUCCESSFUL"
|
555 |
msgstr "УСПЕХ"
|
556 |
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
559 |
#, fuzzy
|
560 |
msgid "select"
|
561 |
msgstr "Изтрий"
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
565 |
#, fuzzy
|
566 |
msgid "Users per page"
|
567 |
msgstr "Таблица с потребителски данни"
|
568 |
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
571 |
msgid "Apply"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
@@ -579,69 +580,69 @@ msgstr ""
|
|
579 |
msgid "Users Extended"
|
580 |
msgstr "Разширен списък с Автори & Потребители"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
#, php-format
|
584 |
msgid "Search results for “%s”"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
#, php-format
|
589 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
593 |
msgid "Search Users"
|
594 |
msgstr "Търсене на потребители"
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
msgid "Role"
|
599 |
msgstr "Роля"
|
600 |
|
601 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
604 |
msgid "Website"
|
605 |
msgstr "Интернет сайт"
|
606 |
|
607 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
609 |
msgid "Posts"
|
610 |
msgstr "Постове"
|
611 |
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
613 |
msgid "View posts by this author"
|
614 |
msgstr "Виж постовете на този автор"
|
615 |
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
617 |
msgid "Super Admin"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
621 |
#, php-format
|
622 |
msgid "e-mail: %s"
|
623 |
msgstr "e-mail: %s"
|
624 |
|
625 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
626 |
#, fuzzy
|
627 |
msgid "Change"
|
628 |
msgstr "Смени реда"
|
629 |
|
630 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
631 |
#, fuzzy
|
632 |
msgid "Update selected users"
|
633 |
msgstr "Изтрий маркираните полета"
|
634 |
|
635 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
636 |
#, fuzzy
|
637 |
msgid "Update"
|
638 |
msgstr "Поднови поле"
|
639 |
|
640 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
641 |
msgid "OK"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
645 |
msgid "Cancel"
|
646 |
msgstr ""
|
647 |
|
@@ -651,9 +652,9 @@ msgid "New user registration on your site %s:"
|
|
651 |
msgstr ""
|
652 |
|
653 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
654 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
657 |
#, fuzzy, php-format
|
658 |
msgid "Username: %s"
|
659 |
msgstr "Потребителско име"
|
@@ -673,15 +674,15 @@ msgstr ""
|
|
673 |
msgid "[%s] Your username and password"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
677 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
678 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
679 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
680 |
#, php-format
|
681 |
msgid "%s: %s"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
685 |
#, php-format
|
686 |
msgid ""
|
687 |
"To activate your user, please click the following link:\n"
|
@@ -692,52 +693,52 @@ msgid ""
|
|
692 |
"\n"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
697 |
msgid "Your account is now active!"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
701 |
#, php-format
|
702 |
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>."
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
706 |
msgid "An error occurred during the activation"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
710 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
711 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
712 |
#, php-format
|
713 |
msgid "Password: %s"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
717 |
msgid "Invalid activation key."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
721 |
msgid "The site is already active."
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
725 |
msgid "Could not create user"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
729 |
msgid "That username is already activated."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
733 |
msgid "That username is currently reserved but may be available in a couple of days."
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
737 |
msgid "username and email used"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
741 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
742 |
msgstr ""
|
743 |
|
@@ -756,7 +757,7 @@ msgid "Update the file"
|
|
756 |
msgstr "Поднови поле"
|
757 |
|
758 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
759 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
760 |
#, fuzzy
|
761 |
msgid "Delete the picture"
|
762 |
msgstr "Изтрий поле"
|
@@ -781,332 +782,341 @@ msgid "%s (%s) has changed one or more fields"
|
|
781 |
msgstr ""
|
782 |
|
783 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
784 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
785 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
786 |
msgid "Options"
|
787 |
msgstr "Настройки"
|
788 |
|
789 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
790 |
msgid "WordPress Fields table emptied"
|
791 |
msgstr "Таблицата с WordPress полета е изпразнена"
|
792 |
|
793 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
794 |
msgid "WordPress Fields table deleted"
|
795 |
msgstr "Таблицата с WordPress полета е изтрита"
|
796 |
|
797 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
798 |
msgid "Extra Fields table emptied"
|
799 |
msgstr "Таблицата с допълнителни полета е изпразнена"
|
800 |
|
801 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
802 |
msgid "Extra Fields table deleted"
|
803 |
msgstr "Таблицата с допълнителни полета е изтрита"
|
804 |
|
805 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
806 |
msgid "Users Data table emptied"
|
807 |
msgstr "Таблицата с потребителски данни е изпразнена"
|
808 |
|
809 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
810 |
msgid "Users Data table deleted"
|
811 |
msgstr "Таблицата с потребителски данни е изтрита"
|
812 |
|
813 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
814 |
msgid "Options set to default values"
|
815 |
msgstr "Вариантите са сменени по подразбиране"
|
816 |
|
817 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
818 |
msgid "Options deleted"
|
819 |
msgstr "Вариантите са изтрити"
|
820 |
|
821 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
822 |
msgid "Options changed"
|
823 |
msgstr "Вариантите са променени"
|
824 |
|
825 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
826 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
830 |
msgid "Support the Cimy Project"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
834 |
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!"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
838 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
839 |
msgid "Save Changes"
|
840 |
msgstr "Запази промените"
|
841 |
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
843 |
msgid "General"
|
844 |
msgstr "Общи"
|
845 |
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
847 |
msgid "installed is"
|
848 |
msgstr "инсталирано е"
|
849 |
|
850 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
851 |
msgid "OPTIONS DELETED!"
|
852 |
msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
|
853 |
|
854 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
856 |
msgid "Fix the problem"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
860 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
861 |
msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
|
862 |
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
864 |
msgid "Picture/Avatar upload"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
868 |
msgid "is created and writable"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
872 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
876 |
#, fuzzy
|
877 |
msgid "Show all fields in the welcome email"
|
878 |
msgstr "Покажи полето при регистрация"
|
879 |
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
881 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
885 |
msgid "Enable email confirmation"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
889 |
msgid "user that registers should confirm its email address via a link click"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
893 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
897 |
msgid "Enable form confirmation"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
901 |
msgid "a summary of the registration form will be presented to the user"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
905 |
msgid "Customize welcome email sent to the new user"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
909 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
913 |
msgid "Redirect to the source"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
917 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
921 |
msgid "No captcha"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
925 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
929 |
msgid "Public KEY"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
933 |
msgid "Private KEY"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
937 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
941 |
msgid "This captcha is probably weaker, but is easier for users"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
945 |
#, php-format
|
946 |
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>"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
950 |
msgid "Change login/registration page logo"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
954 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
958 |
msgid "Database"
|
959 |
msgstr "База данни"
|
960 |
|
961 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
962 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
965 |
msgid "select action"
|
966 |
msgstr "избери действие"
|
967 |
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
969 |
msgid "Default values"
|
970 |
msgstr "Стойност по подразбиране"
|
971 |
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
976 |
msgid "Delete"
|
977 |
msgstr "Изтрий"
|
978 |
|
979 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
980 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
983 |
msgid "NOT PRESENT"
|
984 |
msgstr "НЕ СЪЩЕСТВУВА"
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
987 |
msgid "WordPress Fields table"
|
988 |
msgstr "Таблица с WordPress полета"
|
989 |
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
993 |
msgid "Empty"
|
994 |
msgstr "Празно"
|
995 |
|
996 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
997 |
msgid "Extra Fields table"
|
998 |
msgstr "Таблица с допълнителни полета"
|
999 |
|
1000 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1001 |
msgid "Users Data table"
|
1002 |
msgstr "Таблица с потребителски данни"
|
1003 |
|
1004 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1005 |
msgid "all data inserted by users in all and only extra fields"
|
1006 |
msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
|
1007 |
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1009 |
msgid "Force tables creation"
|
1010 |
msgstr "Задължително създаване на таблица"
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1013 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1017 |
msgid "User Profile"
|
1018 |
msgstr "Потребителски профил"
|
1019 |
|
1020 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1021 |
#, fuzzy
|
1022 |
msgid "Extra Fields section title"
|
1023 |
msgstr "Таблица с допълнителни полета"
|
1024 |
|
1025 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1026 |
msgid "Fieldset's titles, separates with comma"
|
1027 |
msgstr "Заглавията на колекция разделени със запетайка"
|
1028 |
|
1029 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1030 |
msgid "example: title1,title2,title3"
|
1031 |
msgstr "пример: заглавие1,заглавие2,заглавие3"
|
1032 |
|
1033 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1034 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1038 |
msgid "Authors & Users Extended"
|
1039 |
msgstr "Автори & Потребители с разширения"
|
1040 |
|
1041 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1042 |
msgid "Hide username field"
|
1043 |
msgstr "Скрий полето за потребителско име"
|
1044 |
|
1045 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1046 |
msgid "Hide name field"
|
1047 |
msgstr "Скрий полето за име"
|
1048 |
|
1049 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1050 |
msgid "Hide email field"
|
1051 |
msgstr "Скрий полето за email"
|
1052 |
|
1053 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1054 |
msgid "Hide role field"
|
1055 |
msgstr "Скрий полето за роля"
|
1056 |
|
1057 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1058 |
msgid "Hide website field"
|
1059 |
msgstr "Скрий полето за интернет сайт"
|
1060 |
|
1061 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1062 |
msgid "Hide n. posts field"
|
1063 |
msgstr "Скрий полето за брой постове"
|
1064 |
|
1065 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1066 |
msgid "WordPress hidden fields"
|
1067 |
msgstr "Скрити полета на WordPress"
|
1068 |
|
1069 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1070 |
msgid "Show password"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1074 |
msgid "Show confirmation password"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1078 |
msgid "Show password strength meter"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1082 |
msgid "Show first name"
|
1083 |
msgstr "Покажи първото име"
|
1084 |
|
1085 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1086 |
msgid "Show last name"
|
1087 |
msgstr "Покажи второто име"
|
1088 |
|
1089 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1090 |
msgid "Show nickname"
|
1091 |
msgstr "Покажи потребителското име"
|
1092 |
|
1093 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1094 |
msgid "Show website"
|
1095 |
msgstr "Покажи интернет сайта"
|
1096 |
|
1097 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1098 |
msgid "Show AIM"
|
1099 |
msgstr "Покажи AIM"
|
1100 |
|
1101 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1102 |
msgid "Show Yahoo IM"
|
1103 |
msgstr "Покажи Yahoo IM"
|
1104 |
|
1105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1106 |
msgid "Show Jabber / Google Talk"
|
1107 |
msgstr "Покажи Jabber / Google Talk"
|
1108 |
|
1109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1110 |
msgid "Show Biographical Info"
|
1111 |
msgstr ""
|
1112 |
|
@@ -1128,44 +1138,44 @@ msgstr ""
|
|
1128 |
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!"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1132 |
msgid "Password"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1136 |
msgid "Password confirmation"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1140 |
#, fuzzy
|
1141 |
msgid "First name"
|
1142 |
msgstr "Покажи първото име"
|
1143 |
|
1144 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1145 |
#, fuzzy
|
1146 |
msgid "Last name"
|
1147 |
msgstr "Покажи второто име"
|
1148 |
|
1149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1150 |
#, fuzzy
|
1151 |
msgid "Nickname"
|
1152 |
msgstr "Име"
|
1153 |
|
1154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1155 |
msgid "AIM"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1159 |
#, fuzzy
|
1160 |
msgid "Yahoo IM"
|
1161 |
msgstr "Покажи Yahoo IM"
|
1162 |
|
1163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1164 |
#, fuzzy
|
1165 |
msgid "Jabber / Google Talk"
|
1166 |
msgstr "Покажи Jabber / Google Talk"
|
1167 |
|
1168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1169 |
msgid "Biographical Info"
|
1170 |
msgstr ""
|
1171 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:52-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:52-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
|
|
|
|
|
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
36 |
msgid "ERROR"
|
37 |
msgstr "ГРЕШКА"
|
38 |
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "няма правилен email синтаксис."
|
46 |
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "не може да е празно."
|
50 |
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
52 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "не е правилно"
|
55 |
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
59 |
msgid "YES"
|
60 |
msgstr "ДА"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
65 |
msgid "NO"
|
66 |
msgstr "НЕ"
|
67 |
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
69 |
msgid "should be"
|
70 |
msgstr "трябва да е"
|
71 |
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
73 |
msgid "should be an image."
|
74 |
msgstr "трябва да е снимка."
|
75 |
|
76 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "не може да е с по-малък размер от"
|
83 |
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "не може да има по-малка дължина от"
|
87 |
|
88 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "не може да има размер различен от"
|
91 |
|
92 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "не може да има дължина различна от"
|
95 |
|
96 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "не може да има размер по-голям от"
|
99 |
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "не може да има дължина по-голяма от"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Потребителско име"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Моля качете снимка с някое от тези разширения"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1007
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Моля качете снимка с някое от тези разширения"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Смени реда"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1313
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
182 |
msgstr "Смени реда"
|
183 |
|
184 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
|
186 |
msgid "Min length"
|
187 |
msgstr "Минимална дължина"
|
188 |
|
189 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
191 |
msgid "Exact length"
|
192 |
msgstr "Точна дължина"
|
193 |
|
194 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
196 |
msgid "Max length"
|
197 |
msgstr "Максимална дължина"
|
198 |
|
214 |
msgstr "Не може да даваш ред, в който липсват числа"
|
215 |
|
216 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
218 |
msgid "Nothing selected"
|
219 |
msgstr "Нищо не е избрано"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
222 |
msgid "Field(s)"
|
223 |
msgstr "Поле(та)"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
226 |
msgid "deleted correctly"
|
227 |
msgstr "изтрит успешно"
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
231 |
msgid "Min size"
|
232 |
msgstr "Минимален размер"
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
236 |
msgid "Exact size"
|
237 |
msgstr "Точен размер"
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
241 |
msgid "Max size"
|
242 |
msgstr "Максимален размер"
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
245 |
msgid "Exact or Max size"
|
246 |
msgstr "Точен или максимален размер"
|
247 |
|
248 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
249 |
msgid "Name not specified"
|
250 |
msgstr "Не е определено име"
|
251 |
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
253 |
msgid "Name cannot contains spaces"
|
254 |
msgstr "Името не може да съдържа шпации"
|
255 |
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
257 |
msgid "Label not specified"
|
258 |
msgstr "Не е определен етикет"
|
259 |
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
261 |
msgid "not selected (with this type is necessary)"
|
262 |
msgstr "не е избрано (задължително за този тип)"
|
263 |
|
264 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
265 |
msgid "If you select"
|
266 |
msgstr "Ако избра"
|
267 |
|
268 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
269 |
msgid "you cannot select Min or Max"
|
270 |
msgstr "не можеш да избереш минимума или максимума"
|
271 |
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
275 |
msgid "should be in the range of"
|
276 |
msgstr "трябва да е в рамките на"
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
279 |
msgid "Equal TO not specified"
|
280 |
msgstr "Равно НА не е определено"
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
283 |
msgid "With checkbox type Equal TO can only be"
|
284 |
msgstr "С отметка от тип Равно НА може да е само"
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
287 |
msgid "With radio type Equal TO can only be"
|
288 |
msgstr "С радио бутон от тип Равно НА може да е само"
|
289 |
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
291 |
msgid "With checkbox type Value can only be"
|
292 |
msgstr "С отметка от тип Стойност може да е само"
|
293 |
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
295 |
msgid "With radio type Value can only be"
|
296 |
msgstr "С радио бутон от тип Стойност може да е само"
|
297 |
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
299 |
msgid "Field inserted correctly"
|
300 |
msgstr "Полето е добавено успешно"
|
301 |
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
303 |
msgid "Field #"
|
304 |
msgstr "Поле #"
|
305 |
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
307 |
msgid "updated correctly"
|
308 |
msgstr "подновено успешно"
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
311 |
msgid "Name inserted is just in the database, change to another one"
|
312 |
msgstr "Въведеното име е в базата данни, променето го"
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
316 |
msgid "Add a new Field"
|
317 |
msgstr "Добави друго поле"
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
320 |
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."
|
321 |
msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
324 |
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'"
|
325 |
msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
328 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
329 |
msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
332 |
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"
|
333 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
336 |
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)"
|
337 |
msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
340 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
341 |
msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
344 |
#, fuzzy
|
345 |
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"
|
346 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
347 |
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
349 |
#, fuzzy
|
350 |
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"
|
351 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
359 |
msgid "Name"
|
360 |
msgstr "Име"
|
361 |
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
368 |
msgid "Value"
|
369 |
msgstr "Стойност"
|
370 |
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
374 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
375 |
msgid "Type"
|
376 |
msgstr "Тип"
|
377 |
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
382 |
msgid "Label"
|
383 |
msgstr "Етикет"
|
384 |
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
389 |
msgid "Description"
|
390 |
msgstr "Описание"
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
394 |
msgid "Rules"
|
395 |
msgstr "Правила"
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
399 |
msgid "Actions"
|
400 |
msgstr "Действия"
|
401 |
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
406 |
#, fuzzy
|
407 |
msgid "Fieldset"
|
408 |
msgstr "Полета"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
412 |
msgid "Can be empty"
|
413 |
msgstr "Може да е празно"
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
417 |
msgid "Check for E-mail syntax"
|
418 |
msgstr "Провери за Email синтаксис"
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
422 |
msgid "Can be modified"
|
423 |
msgstr "Може да бъде променяно"
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
427 |
msgid "Can be modified only if empty"
|
428 |
msgstr "Може да бъде променяно само ако е празно"
|
429 |
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
432 |
msgid "Can be modified only by admin"
|
433 |
msgstr "Може да бъде променяно само от администратора"
|
434 |
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
437 |
msgid "Can be modified only by admin or if empty"
|
438 |
msgstr "Може да бъде променяно само от администратора или ако е празно"
|
439 |
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
442 |
msgid "Cannot be modified"
|
443 |
msgstr "Не може да бъде променяно"
|
444 |
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
447 |
msgid "Should be equal TO"
|
448 |
msgstr "Би трябвало да е равно НА"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
452 |
msgid "Case sensitive"
|
453 |
msgstr "Различават се големи и малко букви"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
457 |
msgid "Regular Expression"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
462 |
msgid "Show the field in the registration"
|
463 |
msgstr "Покажи полето при регистрация"
|
464 |
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
467 |
msgid "Show the field in User's profile"
|
468 |
msgstr "Покажи полето в профила на потребителя"
|
469 |
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
472 |
#, fuzzy
|
473 |
msgid "Show the field in Users Extended section"
|
474 |
msgstr "Покажи полето в A&П разширеното меню"
|
475 |
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
478 |
#, fuzzy
|
479 |
msgid "Show the field in the search engine"
|
480 |
msgstr "Покажи полето при регистрация"
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
484 |
#, fuzzy
|
485 |
msgid "Show the field in the blog"
|
486 |
msgstr "Покажи полето при регистрация"
|
487 |
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
490 |
#, fuzzy
|
491 |
msgid "Show the field if the role is at least:"
|
492 |
msgstr "Покажи полето при регистрация"
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
496 |
msgid "Anonymous"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
500 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
501 |
msgid "User has 'view_cimy_extra_fields' capability"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
506 |
msgid "Send an email to the admin if the user changes its value"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
511 |
#, fuzzy
|
512 |
msgid "Advanced options"
|
513 |
msgstr "Действия"
|
514 |
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
516 |
msgid "Clear"
|
517 |
msgstr "Изчисти"
|
518 |
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
520 |
msgid "Invert selection"
|
521 |
msgstr "Обърни избора"
|
522 |
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
524 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
525 |
msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
|
526 |
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
528 |
msgid "WordPress Fields"
|
529 |
msgstr "WordPress полета"
|
530 |
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
536 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
537 |
msgid "Extra Fields"
|
538 |
msgstr "Допълнителни полета"
|
539 |
|
540 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
541 |
msgid "None!"
|
542 |
msgstr "Няма!"
|
543 |
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
545 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
546 |
msgid "Order"
|
547 |
msgstr "Подреди"
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
550 |
msgid "Reset"
|
551 |
msgstr "Отмени"
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
555 |
msgid "SUCCESSFUL"
|
556 |
msgstr "УСПЕХ"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
560 |
#, fuzzy
|
561 |
msgid "select"
|
562 |
msgstr "Изтрий"
|
563 |
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
566 |
#, fuzzy
|
567 |
msgid "Users per page"
|
568 |
msgstr "Таблица с потребителски данни"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
572 |
msgid "Apply"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
578 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
580 |
msgid "Users Extended"
|
581 |
msgstr "Разширен списък с Автори & Потребители"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
584 |
#, php-format
|
585 |
msgid "Search results for “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
589 |
#, php-format
|
590 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
594 |
msgid "Search Users"
|
595 |
msgstr "Търсене на потребители"
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
599 |
msgid "Role"
|
600 |
msgstr "Роля"
|
601 |
|
602 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
605 |
msgid "Website"
|
606 |
msgstr "Интернет сайт"
|
607 |
|
608 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
610 |
msgid "Posts"
|
611 |
msgstr "Постове"
|
612 |
|
613 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
614 |
msgid "View posts by this author"
|
615 |
msgstr "Виж постовете на този автор"
|
616 |
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
618 |
msgid "Super Admin"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
622 |
#, php-format
|
623 |
msgid "e-mail: %s"
|
624 |
msgstr "e-mail: %s"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
627 |
#, fuzzy
|
628 |
msgid "Change"
|
629 |
msgstr "Смени реда"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
632 |
#, fuzzy
|
633 |
msgid "Update selected users"
|
634 |
msgstr "Изтрий маркираните полета"
|
635 |
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
637 |
#, fuzzy
|
638 |
msgid "Update"
|
639 |
msgstr "Поднови поле"
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
642 |
msgid "OK"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
646 |
msgid "Cancel"
|
647 |
msgstr ""
|
648 |
|
652 |
msgstr ""
|
653 |
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
656 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
657 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
658 |
#, fuzzy, php-format
|
659 |
msgid "Username: %s"
|
660 |
msgstr "Потребителско име"
|
674 |
msgid "[%s] Your username and password"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
678 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
679 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
680 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
681 |
#, php-format
|
682 |
msgid "%s: %s"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
686 |
#, php-format
|
687 |
msgid ""
|
688 |
"To activate your user, please click the following link:\n"
|
693 |
"\n"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
698 |
msgid "Your account is now active!"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
702 |
#, php-format
|
703 |
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>."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
707 |
msgid "An error occurred during the activation"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
711 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
713 |
#, php-format
|
714 |
msgid "Password: %s"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
718 |
msgid "Invalid activation key."
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
722 |
msgid "The site is already active."
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
726 |
msgid "Could not create user"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
730 |
msgid "That username is already activated."
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
734 |
msgid "That username is currently reserved but may be available in a couple of days."
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
738 |
msgid "username and email used"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
742 |
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."
|
743 |
msgstr ""
|
744 |
|
757 |
msgstr "Поднови поле"
|
758 |
|
759 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
760 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
761 |
#, fuzzy
|
762 |
msgid "Delete the picture"
|
763 |
msgstr "Изтрий поле"
|
782 |
msgstr ""
|
783 |
|
784 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
786 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
787 |
msgid "Options"
|
788 |
msgstr "Настройки"
|
789 |
|
790 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
791 |
msgid "WordPress Fields table emptied"
|
792 |
msgstr "Таблицата с WordPress полета е изпразнена"
|
793 |
|
794 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
795 |
msgid "WordPress Fields table deleted"
|
796 |
msgstr "Таблицата с WordPress полета е изтрита"
|
797 |
|
798 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
799 |
msgid "Extra Fields table emptied"
|
800 |
msgstr "Таблицата с допълнителни полета е изпразнена"
|
801 |
|
802 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
803 |
msgid "Extra Fields table deleted"
|
804 |
msgstr "Таблицата с допълнителни полета е изтрита"
|
805 |
|
806 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
807 |
msgid "Users Data table emptied"
|
808 |
msgstr "Таблицата с потребителски данни е изпразнена"
|
809 |
|
810 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
811 |
msgid "Users Data table deleted"
|
812 |
msgstr "Таблицата с потребителски данни е изтрита"
|
813 |
|
814 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
815 |
msgid "Options set to default values"
|
816 |
msgstr "Вариантите са сменени по подразбиране"
|
817 |
|
818 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
819 |
msgid "Options deleted"
|
820 |
msgstr "Вариантите са изтрити"
|
821 |
|
822 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
823 |
msgid "Options changed"
|
824 |
msgstr "Вариантите са променени"
|
825 |
|
826 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
827 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
831 |
msgid "Support the Cimy Project"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
835 |
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!"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
840 |
msgid "Save Changes"
|
841 |
msgstr "Запази промените"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
844 |
msgid "General"
|
845 |
msgstr "Общи"
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
848 |
msgid "installed is"
|
849 |
msgstr "инсталирано е"
|
850 |
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
852 |
msgid "OPTIONS DELETED!"
|
853 |
msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
|
854 |
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
857 |
msgid "Fix the problem"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
861 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
862 |
msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
|
863 |
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
865 |
msgid "Picture/Avatar upload"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
869 |
msgid "is created and writable"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
873 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
877 |
#, fuzzy
|
878 |
msgid "Show all fields in the welcome email"
|
879 |
msgstr "Покажи полето при регистрация"
|
880 |
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
882 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
886 |
msgid "Enable email confirmation"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
890 |
msgid "user that registers should confirm its email address via a link click"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
894 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
898 |
msgid "Enable form confirmation"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
902 |
msgid "a summary of the registration form will be presented to the user"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
906 |
msgid "Customize welcome email sent to the new user"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
910 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
914 |
msgid "Redirect to the source"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
918 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
922 |
msgid "No captcha"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
926 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
930 |
msgid "Public KEY"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
934 |
msgid "Private KEY"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
938 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
942 |
msgid "This captcha is probably weaker, but is easier for users"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
946 |
#, php-format
|
947 |
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>"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
951 |
msgid "Change login/registration page logo"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
955 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
959 |
msgid "Database"
|
960 |
msgstr "База данни"
|
961 |
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
966 |
msgid "select action"
|
967 |
msgstr "избери действие"
|
968 |
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
970 |
msgid "Default values"
|
971 |
msgstr "Стойност по подразбиране"
|
972 |
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
977 |
msgid "Delete"
|
978 |
msgstr "Изтрий"
|
979 |
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
984 |
msgid "NOT PRESENT"
|
985 |
msgstr "НЕ СЪЩЕСТВУВА"
|
986 |
|
987 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
988 |
msgid "WordPress Fields table"
|
989 |
msgstr "Таблица с WordPress полета"
|
990 |
|
991 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
992 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
994 |
msgid "Empty"
|
995 |
msgstr "Празно"
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
998 |
msgid "Extra Fields table"
|
999 |
msgstr "Таблица с допълнителни полета"
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
1002 |
msgid "Users Data table"
|
1003 |
msgstr "Таблица с потребителски данни"
|
1004 |
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
1006 |
msgid "all data inserted by users in all and only extra fields"
|
1007 |
msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
1010 |
msgid "Force tables creation"
|
1011 |
msgstr "Задължително създаване на таблица"
|
1012 |
|
1013 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
1014 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1018 |
msgid "User Profile"
|
1019 |
msgstr "Потребителски профил"
|
1020 |
|
1021 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1022 |
#, fuzzy
|
1023 |
msgid "Extra Fields section title"
|
1024 |
msgstr "Таблица с допълнителни полета"
|
1025 |
|
1026 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1027 |
msgid "Fieldset's titles, separates with comma"
|
1028 |
msgstr "Заглавията на колекция разделени със запетайка"
|
1029 |
|
1030 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1031 |
msgid "example: title1,title2,title3"
|
1032 |
msgstr "пример: заглавие1,заглавие2,заглавие3"
|
1033 |
|
1034 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1035 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1039 |
msgid "Authors & Users Extended"
|
1040 |
msgstr "Автори & Потребители с разширения"
|
1041 |
|
1042 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1043 |
msgid "Hide username field"
|
1044 |
msgstr "Скрий полето за потребителско име"
|
1045 |
|
1046 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1047 |
msgid "Hide name field"
|
1048 |
msgstr "Скрий полето за име"
|
1049 |
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1051 |
msgid "Hide email field"
|
1052 |
msgstr "Скрий полето за email"
|
1053 |
|
1054 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1055 |
msgid "Hide role field"
|
1056 |
msgstr "Скрий полето за роля"
|
1057 |
|
1058 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:671
|
1059 |
msgid "Hide website field"
|
1060 |
msgstr "Скрий полето за интернет сайт"
|
1061 |
|
1062 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1063 |
msgid "Hide n. posts field"
|
1064 |
msgstr "Скрий полето за брой постове"
|
1065 |
|
1066 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
1067 |
msgid "WordPress hidden fields"
|
1068 |
msgstr "Скрити полета на WordPress"
|
1069 |
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
1071 |
+
#, fuzzy
|
1072 |
+
msgid "Show username"
|
1073 |
+
msgstr "Покажи второто име"
|
1074 |
+
|
1075 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
|
1076 |
+
msgid "when unchecked the email address will be used as username"
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
1080 |
msgid "Show password"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
1084 |
msgid "Show confirmation password"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
1088 |
msgid "Show password strength meter"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
1092 |
msgid "Show first name"
|
1093 |
msgstr "Покажи първото име"
|
1094 |
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
1096 |
msgid "Show last name"
|
1097 |
msgstr "Покажи второто име"
|
1098 |
|
1099 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
|
1100 |
msgid "Show nickname"
|
1101 |
msgstr "Покажи потребителското име"
|
1102 |
|
1103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
1104 |
msgid "Show website"
|
1105 |
msgstr "Покажи интернет сайта"
|
1106 |
|
1107 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
1108 |
msgid "Show AIM"
|
1109 |
msgstr "Покажи AIM"
|
1110 |
|
1111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:721
|
1112 |
msgid "Show Yahoo IM"
|
1113 |
msgstr "Покажи Yahoo IM"
|
1114 |
|
1115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
1116 |
msgid "Show Jabber / Google Talk"
|
1117 |
msgstr "Покажи Jabber / Google Talk"
|
1118 |
|
1119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:729
|
1120 |
msgid "Show Biographical Info"
|
1121 |
msgstr ""
|
1122 |
|
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 ""
|
1140 |
|
1141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
|
1142 |
msgid "Password"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:236
|
1146 |
msgid "Password confirmation"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:258
|
1150 |
#, fuzzy
|
1151 |
msgid "First name"
|
1152 |
msgstr "Покажи първото име"
|
1153 |
|
1154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
1155 |
#, fuzzy
|
1156 |
msgid "Last name"
|
1157 |
msgstr "Покажи второто име"
|
1158 |
|
1159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
1160 |
#, fuzzy
|
1161 |
msgid "Nickname"
|
1162 |
msgstr "Име"
|
1163 |
|
1164 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:346
|
1165 |
msgid "AIM"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:368
|
1169 |
#, fuzzy
|
1170 |
msgid "Yahoo IM"
|
1171 |
msgstr "Покажи Yahoo IM"
|
1172 |
|
1173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:390
|
1174 |
#, fuzzy
|
1175 |
msgid "Jabber / Google Talk"
|
1176 |
msgstr "Покажи Jabber / Google Talk"
|
1177 |
|
1178 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:412
|
1179 |
msgid "Biographical Info"
|
1180 |
msgstr ""
|
1181 |
|
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 |
"Language: \n"
|
@@ -17,146 +17,147 @@ msgstr ""
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
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/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
35 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
36 |
msgid "ERROR"
|
37 |
msgstr "FEJL"
|
38 |
|
39 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "E-mail adresse angivet forkert. "
|
46 |
|
47 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "Må ikke være tomt."
|
50 |
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "er forkert"
|
55 |
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "JA"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NEJ"
|
67 |
|
68 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
69 |
msgid "should be"
|
70 |
msgstr "skulle være"
|
71 |
|
72 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
73 |
msgid "should be an image."
|
74 |
msgstr "burde være et billede."
|
75 |
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "Størrelse må ikke være mindre end"
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "Længden må ikke være mindre end"
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "Størrelse må ikke afvige fra"
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "Længde må ikke afvige fra"
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "Størrelse må ikke overstige"
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "Længde må ikke overstige"
|
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_register.php:
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
112 |
msgid "Username"
|
113 |
msgstr "Brugernavn"
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
msgid "E-mail"
|
119 |
msgstr "E-mail"
|
120 |
|
121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
#, fuzzy
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
134 |
msgid "Strength indicator"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
138 |
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 ! \" ? $ % ^ & )."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
142 |
#, fuzzy
|
143 |
msgid "Change image"
|
144 |
msgstr "Ændre rækkefølge"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
147 |
msgid "Insert the code:"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
@@ -181,17 +182,17 @@ msgid "Change order"
|
|
181 |
msgstr "Ændre rækkefølge"
|
182 |
|
183 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
185 |
msgid "Min length"
|
186 |
msgstr "Min. længde"
|
187 |
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
msgid "Exact length"
|
191 |
msgstr "Eksakt længde"
|
192 |
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
195 |
msgid "Max length"
|
196 |
msgstr "Max. længde"
|
197 |
|
@@ -213,365 +214,365 @@ msgid "You cannot give an order that misses some numbers"
|
|
213 |
msgstr "Ved angivelse af rækkefølge skal hele talrækken med."
|
214 |
|
215 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
216 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
217 |
msgid "Nothing selected"
|
218 |
msgstr "Ingenting valgt "
|
219 |
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Field(s)"
|
222 |
msgstr "Felt(er)"
|
223 |
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
225 |
msgid "deleted correctly"
|
226 |
msgstr "Sletning gennemført"
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
230 |
msgid "Min size"
|
231 |
msgstr "Min. størrelse"
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
234 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
235 |
msgid "Exact size"
|
236 |
msgstr "Eksakt størrelse"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
240 |
msgid "Max size"
|
241 |
msgstr "Max. størrelse"
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
244 |
msgid "Exact or Max size"
|
245 |
msgstr "Eksakt eller Max. størrelse"
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Name not specified"
|
249 |
msgstr "Navn ikke angivet"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Name cannot contains spaces"
|
253 |
msgstr "Navnet må ikke indeholde mellemrum"
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "Label not specified"
|
257 |
msgstr "Betegnelse ikke angivet"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
msgid "not selected (with this type is necessary)"
|
261 |
msgstr "ikke valgt (kræves ved denne Type)"
|
262 |
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
264 |
msgid "If you select"
|
265 |
msgstr "Ved valg"
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
268 |
msgid "you cannot select Min or Max"
|
269 |
msgstr "Min eller Max kan ikke vælges"
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
274 |
msgid "should be in the range of"
|
275 |
msgstr "skal angives indenfor følgende talrække"
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
278 |
msgid "Equal TO not specified"
|
279 |
msgstr "LIG MED ikke angivet"
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
282 |
msgid "With checkbox type Equal TO can only be"
|
283 |
msgstr "Ved 'Type' - 'checkbox' kan LIG MED kun være"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
286 |
msgid "With radio type Equal TO can only be"
|
287 |
msgstr "Ved 'Type' - 'radio' kan LIG MED kun være"
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
290 |
msgid "With checkbox type Value can only be"
|
291 |
msgstr "Ved 'Type' - 'checkbox' kan 'Værdi' kun være"
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
294 |
msgid "With radio type Value can only be"
|
295 |
msgstr "Ved 'Type' - 'radio' kan 'Værdi' kun være"
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
298 |
msgid "Field inserted correctly"
|
299 |
msgstr "Felt indsat"
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
302 |
msgid "Field #"
|
303 |
msgstr "Felt #"
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
306 |
msgid "updated correctly"
|
307 |
msgstr "Opdatering gennemført"
|
308 |
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Name inserted is just in the database, change to another one"
|
311 |
msgstr "Det valgte navn findes allerede, vælg venligst et andet"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
315 |
msgid "Add a new Field"
|
316 |
msgstr "Tilføj et nyt felt"
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
319 |
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."
|
320 |
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."
|
321 |
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
323 |
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'"
|
324 |
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."
|
325 |
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
327 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
328 |
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"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
331 |
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"
|
332 |
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."
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
335 |
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)"
|
336 |
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)."
|
337 |
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
339 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
340 |
msgstr "<strong>registration-date</strong>: <em>LIG MED</em> henviser til dato- og tidsformat."
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
343 |
#, fuzzy
|
344 |
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"
|
345 |
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."
|
346 |
|
347 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
348 |
#, fuzzy
|
349 |
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"
|
350 |
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."
|
351 |
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
msgid "Name"
|
359 |
msgstr "Navn"
|
360 |
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
msgid "Value"
|
368 |
msgstr "Værdi"
|
369 |
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
373 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
374 |
msgid "Type"
|
375 |
msgstr "Type"
|
376 |
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
378 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
381 |
msgid "Label"
|
382 |
msgstr "Betegnelse"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
387 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
388 |
msgid "Description"
|
389 |
msgstr "Beskrivelse"
|
390 |
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
393 |
msgid "Rules"
|
394 |
msgstr "Regler"
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
398 |
msgid "Actions"
|
399 |
msgstr "Handlinger"
|
400 |
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
#, fuzzy
|
406 |
msgid "Fieldset"
|
407 |
msgstr "Felter"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
msgid "Can be empty"
|
412 |
msgstr "Kan være tomt"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
msgid "Check for E-mail syntax"
|
417 |
msgstr "Kontroller venligst e-mailadressen"
|
418 |
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
420 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
421 |
msgid "Can be modified"
|
422 |
msgstr "Kan ændres"
|
423 |
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
426 |
msgid "Can be modified only if empty"
|
427 |
msgstr "Kan kun ændres hvis feltet er tomt"
|
428 |
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
431 |
msgid "Can be modified only by admin"
|
432 |
msgstr "Kan kun ændres af Administrator"
|
433 |
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
436 |
msgid "Can be modified only by admin or if empty"
|
437 |
msgstr "Kan kun ændres hvis det er tomt"
|
438 |
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
440 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
441 |
msgid "Cannot be modified"
|
442 |
msgstr "Kan ikke ændres"
|
443 |
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
446 |
msgid "Should be equal TO"
|
447 |
msgstr "Skal være LIG MED"
|
448 |
|
449 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
451 |
msgid "Case sensitive"
|
452 |
msgstr "Forskel på store og små bogstaver"
|
453 |
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
456 |
msgid "Regular Expression"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
461 |
msgid "Show the field in the registration"
|
462 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
463 |
|
464 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
466 |
msgid "Show the field in User's profile"
|
467 |
msgstr "Vis felt i 'Brugerprofil'"
|
468 |
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
470 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
471 |
#, fuzzy
|
472 |
msgid "Show the field in Users Extended section"
|
473 |
msgstr "Vis felt under 'Vis alle brugere'"
|
474 |
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
476 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
477 |
#, fuzzy
|
478 |
msgid "Show the field in the search engine"
|
479 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
480 |
|
481 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
483 |
#, fuzzy
|
484 |
msgid "Show the field in the blog"
|
485 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
#, fuzzy
|
490 |
msgid "Show the field if the role is at least:"
|
491 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
492 |
|
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 "Anonymous"
|
496 |
msgstr ""
|
497 |
|
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 "User has 'view_cimy_extra_fields' capability"
|
501 |
msgstr ""
|
502 |
|
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 "Send an email to the admin if the user changes its value"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
509 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
510 |
#, fuzzy
|
511 |
msgid "Advanced options"
|
512 |
msgstr "Handlinger"
|
513 |
|
514 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
515 |
msgid "Clear"
|
516 |
msgstr "Slet"
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
519 |
msgid "Invert selection"
|
520 |
msgstr "Omvend markering"
|
521 |
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
523 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
524 |
msgstr "Er du sikker på at du vil slette dette/disse felt(er) og al tilknyttet brugerdata?"
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
527 |
msgid "WordPress Fields"
|
528 |
msgstr "WordPress felter"
|
529 |
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
531 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
535 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
536 |
msgid "Extra Fields"
|
537 |
msgstr "Ekstra felter"
|
538 |
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
540 |
msgid "None!"
|
541 |
msgstr "Ingen!"
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
545 |
msgid "Order"
|
546 |
msgstr "Rækkefølge"
|
547 |
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
549 |
msgid "Reset"
|
550 |
msgstr "Nulstil"
|
551 |
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
553 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
554 |
msgid "SUCCESSFUL"
|
555 |
msgstr "GENNEMFØRT"
|
556 |
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
559 |
#, fuzzy
|
560 |
msgid "select"
|
561 |
msgstr "Slet"
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
565 |
#, fuzzy
|
566 |
msgid "Users per page"
|
567 |
msgstr "Tabel for brugerdata"
|
568 |
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
571 |
msgid "Apply"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
@@ -579,70 +580,70 @@ msgstr ""
|
|
579 |
msgid "Users Extended"
|
580 |
msgstr "Vis alle brugere"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
#, php-format
|
584 |
msgid "Search results for “%s”"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
#, php-format
|
589 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
593 |
msgid "Search Users"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
#, fuzzy
|
599 |
msgid "Role"
|
600 |
msgstr "Regler"
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
605 |
msgid "Website"
|
606 |
msgstr "Website"
|
607 |
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
610 |
msgid "Posts"
|
611 |
msgstr "Indlæg"
|
612 |
|
613 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
614 |
msgid "View posts by this author"
|
615 |
msgstr "Vis denne brugers indlæg"
|
616 |
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
618 |
msgid "Super Admin"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
622 |
#, php-format
|
623 |
msgid "e-mail: %s"
|
624 |
msgstr "e-mail: %s"
|
625 |
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
627 |
#, fuzzy
|
628 |
msgid "Change"
|
629 |
msgstr "Ændre rækkefølge"
|
630 |
|
631 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
632 |
#, fuzzy
|
633 |
msgid "Update selected users"
|
634 |
msgstr "Slet valgte felter"
|
635 |
|
636 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
637 |
#, fuzzy
|
638 |
msgid "Update"
|
639 |
msgstr "Opdater felt"
|
640 |
|
641 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
642 |
msgid "OK"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
646 |
msgid "Cancel"
|
647 |
msgstr ""
|
648 |
|
@@ -652,9 +653,9 @@ msgid "New user registration on your site %s:"
|
|
652 |
msgstr ""
|
653 |
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
656 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
657 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
658 |
#, fuzzy, php-format
|
659 |
msgid "Username: %s"
|
660 |
msgstr "Brugernavn"
|
@@ -674,15 +675,15 @@ msgstr ""
|
|
674 |
msgid "[%s] Your username and password"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
678 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
679 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
680 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
681 |
#, php-format
|
682 |
msgid "%s: %s"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
686 |
#, php-format
|
687 |
msgid ""
|
688 |
"To activate your user, please click the following link:\n"
|
@@ -693,52 +694,52 @@ msgid ""
|
|
693 |
"\n"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
698 |
msgid "Your account is now active!"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
702 |
#, php-format
|
703 |
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>."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
707 |
msgid "An error occurred during the activation"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
711 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
712 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
713 |
#, php-format
|
714 |
msgid "Password: %s"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
718 |
msgid "Invalid activation key."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
722 |
msgid "The site is already active."
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
726 |
msgid "Could not create user"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
730 |
msgid "That username is already activated."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
734 |
msgid "That username is currently reserved but may be available in a couple of days."
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
738 |
msgid "username and email used"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
742 |
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."
|
743 |
msgstr ""
|
744 |
|
@@ -757,7 +758,7 @@ msgid "Update the file"
|
|
757 |
msgstr "Opdater felt"
|
758 |
|
759 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
760 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
761 |
#, fuzzy
|
762 |
msgid "Delete the picture"
|
763 |
msgstr "Slet felt"
|
@@ -782,333 +783,342 @@ msgid "%s (%s) has changed one or more fields"
|
|
782 |
msgstr ""
|
783 |
|
784 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
785 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
787 |
msgid "Options"
|
788 |
msgstr "Indstillinger"
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
791 |
msgid "WordPress Fields table emptied"
|
792 |
msgstr "WordPress tabel tømt"
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
795 |
msgid "WordPress Fields table deleted"
|
796 |
msgstr "WordPress tabel slettet"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
799 |
msgid "Extra Fields table emptied"
|
800 |
msgstr "Tabel med ekstra felter tømt"
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
803 |
msgid "Extra Fields table deleted"
|
804 |
msgstr "Tabel med ekstra felter slettet"
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
807 |
msgid "Users Data table emptied"
|
808 |
msgstr "Tabellen med brugerdata er blevet tømt"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
811 |
msgid "Users Data table deleted"
|
812 |
msgstr "Tabellen med brugerdata er blevet slettet"
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
815 |
msgid "Options set to default values"
|
816 |
msgstr "Indstillinger nulstillet"
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
819 |
msgid "Options deleted"
|
820 |
msgstr "Indstillinger slettet"
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
823 |
msgid "Options changed"
|
824 |
msgstr "Indstillinger ændret"
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
827 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
831 |
msgid "Support the Cimy Project"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
835 |
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!"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
840 |
msgid "Save Changes"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
844 |
msgid "General"
|
845 |
msgstr "Generelle indstillinger"
|
846 |
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
848 |
msgid "installed is"
|
849 |
msgstr "installeret er"
|
850 |
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
852 |
msgid "OPTIONS DELETED!"
|
853 |
msgstr "INDSTILLINGER SLETTET!"
|
854 |
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
857 |
msgid "Fix the problem"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
861 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
862 |
msgstr "VERSIONSKONFLIKT! Husk at deaktivere og genaktivere plugin'et efter opdatering!"
|
863 |
|
864 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
865 |
msgid "Picture/Avatar upload"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
869 |
msgid "is created and writable"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
873 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
877 |
#, fuzzy
|
878 |
msgid "Show all fields in the welcome email"
|
879 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
880 |
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
882 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
886 |
msgid "Enable email confirmation"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
890 |
msgid "user that registers should confirm its email address via a link click"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
894 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
898 |
msgid "Enable form confirmation"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
902 |
msgid "a summary of the registration form will be presented to the user"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
906 |
msgid "Customize welcome email sent to the new user"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
910 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
914 |
msgid "Redirect to the source"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
918 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
922 |
msgid "No captcha"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
926 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
930 |
msgid "Public KEY"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
934 |
msgid "Private KEY"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
938 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
942 |
msgid "This captcha is probably weaker, but is easier for users"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
946 |
#, php-format
|
947 |
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>"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
951 |
msgid "Change login/registration page logo"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
955 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
959 |
msgid "Database"
|
960 |
msgstr "Database administration"
|
961 |
|
962 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
966 |
msgid "select action"
|
967 |
msgstr "Vælg handling"
|
968 |
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
970 |
msgid "Default values"
|
971 |
msgstr "Standard værdier"
|
972 |
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
977 |
msgid "Delete"
|
978 |
msgstr "Slet"
|
979 |
|
980 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
983 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
984 |
msgid "NOT PRESENT"
|
985 |
msgstr "FINDES IKKE"
|
986 |
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
988 |
msgid "WordPress Fields table"
|
989 |
msgstr "WordPress tabel"
|
990 |
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
993 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
994 |
msgid "Empty"
|
995 |
msgstr "Tøm"
|
996 |
|
997 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
998 |
msgid "Extra Fields table"
|
999 |
msgstr "Tabel med ekstra felter"
|
1000 |
|
1001 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1002 |
msgid "Users Data table"
|
1003 |
msgstr "Tabel for brugerdata"
|
1004 |
|
1005 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1006 |
msgid "all data inserted by users in all and only extra fields"
|
1007 |
msgstr "al brugerdata i alle ekstra felter"
|
1008 |
|
1009 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1010 |
msgid "Force tables creation"
|
1011 |
msgstr "Gennemtving oprettelse af tabeller"
|
1012 |
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1014 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1018 |
msgid "User Profile"
|
1019 |
msgstr "Brugerprofil"
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1022 |
#, fuzzy
|
1023 |
msgid "Extra Fields section title"
|
1024 |
msgstr "Tabel med ekstra felter"
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1027 |
msgid "Fieldset's titles, separates with comma"
|
1028 |
msgstr "Feltrækkernes titel, adkilt med komma"
|
1029 |
|
1030 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1031 |
msgid "example: title1,title2,title3"
|
1032 |
msgstr "F. eks.: Titel1,Titel2,Titel3"
|
1033 |
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1035 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1039 |
msgid "Authors & Users Extended"
|
1040 |
msgstr "Bruger liste"
|
1041 |
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1043 |
msgid "Hide username field"
|
1044 |
msgstr "Skjul brugernavn"
|
1045 |
|
1046 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1047 |
msgid "Hide name field"
|
1048 |
msgstr "Skjul fornavn"
|
1049 |
|
1050 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1051 |
msgid "Hide email field"
|
1052 |
msgstr "Skjul e-mailadresse"
|
1053 |
|
1054 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1055 |
#, fuzzy
|
1056 |
msgid "Hide role field"
|
1057 |
msgstr "Skjul fornavn"
|
1058 |
|
1059 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1060 |
msgid "Hide website field"
|
1061 |
msgstr "Skjul website"
|
1062 |
|
1063 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1064 |
msgid "Hide n. posts field"
|
1065 |
msgstr "Skjul angivelse af antal af brugerindlæg"
|
1066 |
|
1067 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1068 |
msgid "WordPress hidden fields"
|
1069 |
msgstr "Wordpress skjulte felter"
|
1070 |
|
1071 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1072 |
msgid "Show password"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1076 |
msgid "Show confirmation password"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1080 |
msgid "Show password strength meter"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1084 |
msgid "Show first name"
|
1085 |
msgstr "Vis fornavn"
|
1086 |
|
1087 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1088 |
msgid "Show last name"
|
1089 |
msgstr "Vis Efternavn"
|
1090 |
|
1091 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1092 |
msgid "Show nickname"
|
1093 |
msgstr "Vis Kaldenavn"
|
1094 |
|
1095 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1096 |
msgid "Show website"
|
1097 |
msgstr "Website"
|
1098 |
|
1099 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1100 |
msgid "Show AIM"
|
1101 |
msgstr "Vis AIM"
|
1102 |
|
1103 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1104 |
msgid "Show Yahoo IM"
|
1105 |
msgstr "Vis Yahoo IM"
|
1106 |
|
1107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1108 |
msgid "Show Jabber / Google Talk"
|
1109 |
msgstr "Vis Jabber / Google Talk"
|
1110 |
|
1111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1112 |
msgid "Show Biographical Info"
|
1113 |
msgstr ""
|
1114 |
|
@@ -1130,44 +1140,44 @@ msgstr ""
|
|
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 ""
|
1132 |
|
1133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1134 |
msgid "Password"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1138 |
msgid "Password confirmation"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1142 |
#, fuzzy
|
1143 |
msgid "First name"
|
1144 |
msgstr "Vis fornavn"
|
1145 |
|
1146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1147 |
#, fuzzy
|
1148 |
msgid "Last name"
|
1149 |
msgstr "Vis Efternavn"
|
1150 |
|
1151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1152 |
#, fuzzy
|
1153 |
msgid "Nickname"
|
1154 |
msgstr "Navn"
|
1155 |
|
1156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1157 |
msgid "AIM"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1161 |
#, fuzzy
|
1162 |
msgid "Yahoo IM"
|
1163 |
msgstr "Vis Yahoo IM"
|
1164 |
|
1165 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1166 |
#, fuzzy
|
1167 |
msgid "Jabber / Google Talk"
|
1168 |
msgstr "Vis Jabber / Google Talk"
|
1169 |
|
1170 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1171 |
msgid "Biographical Info"
|
1172 |
msgstr ""
|
1173 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:52-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:52-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
|
|
|
|
|
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
36 |
msgid "ERROR"
|
37 |
msgstr "FEJL"
|
38 |
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "E-mail adresse angivet forkert. "
|
46 |
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "Må ikke være tomt."
|
50 |
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
52 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "er forkert"
|
55 |
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
59 |
msgid "YES"
|
60 |
msgstr "JA"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
65 |
msgid "NO"
|
66 |
msgstr "NEJ"
|
67 |
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
69 |
msgid "should be"
|
70 |
msgstr "skulle være"
|
71 |
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
73 |
msgid "should be an image."
|
74 |
msgstr "burde være et billede."
|
75 |
|
76 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "Størrelse må ikke være mindre end"
|
83 |
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "Længden må ikke være mindre end"
|
87 |
|
88 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "Størrelse må ikke afvige fra"
|
91 |
|
92 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "Længde må ikke afvige fra"
|
95 |
|
96 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "Størrelse må ikke overstige"
|
99 |
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "Længde må ikke overstige"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Brugernavn"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1007
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Ændre rækkefølge"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1313
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
182 |
msgstr "Ændre rækkefølge"
|
183 |
|
184 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
|
186 |
msgid "Min length"
|
187 |
msgstr "Min. længde"
|
188 |
|
189 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
191 |
msgid "Exact length"
|
192 |
msgstr "Eksakt længde"
|
193 |
|
194 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
196 |
msgid "Max length"
|
197 |
msgstr "Max. længde"
|
198 |
|
214 |
msgstr "Ved angivelse af rækkefølge skal hele talrækken med."
|
215 |
|
216 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
218 |
msgid "Nothing selected"
|
219 |
msgstr "Ingenting valgt "
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
222 |
msgid "Field(s)"
|
223 |
msgstr "Felt(er)"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
226 |
msgid "deleted correctly"
|
227 |
msgstr "Sletning gennemført"
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
231 |
msgid "Min size"
|
232 |
msgstr "Min. størrelse"
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
236 |
msgid "Exact size"
|
237 |
msgstr "Eksakt størrelse"
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
241 |
msgid "Max size"
|
242 |
msgstr "Max. størrelse"
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
245 |
msgid "Exact or Max size"
|
246 |
msgstr "Eksakt eller Max. størrelse"
|
247 |
|
248 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
249 |
msgid "Name not specified"
|
250 |
msgstr "Navn ikke angivet"
|
251 |
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
253 |
msgid "Name cannot contains spaces"
|
254 |
msgstr "Navnet må ikke indeholde mellemrum"
|
255 |
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
257 |
msgid "Label not specified"
|
258 |
msgstr "Betegnelse ikke angivet"
|
259 |
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
261 |
msgid "not selected (with this type is necessary)"
|
262 |
msgstr "ikke valgt (kræves ved denne Type)"
|
263 |
|
264 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
265 |
msgid "If you select"
|
266 |
msgstr "Ved valg"
|
267 |
|
268 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
269 |
msgid "you cannot select Min or Max"
|
270 |
msgstr "Min eller Max kan ikke vælges"
|
271 |
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
275 |
msgid "should be in the range of"
|
276 |
msgstr "skal angives indenfor følgende talrække"
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
279 |
msgid "Equal TO not specified"
|
280 |
msgstr "LIG MED ikke angivet"
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
283 |
msgid "With checkbox type Equal TO can only be"
|
284 |
msgstr "Ved 'Type' - 'checkbox' kan LIG MED kun være"
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
287 |
msgid "With radio type Equal TO can only be"
|
288 |
msgstr "Ved 'Type' - 'radio' kan LIG MED kun være"
|
289 |
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
291 |
msgid "With checkbox type Value can only be"
|
292 |
msgstr "Ved 'Type' - 'checkbox' kan 'Værdi' kun være"
|
293 |
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
295 |
msgid "With radio type Value can only be"
|
296 |
msgstr "Ved 'Type' - 'radio' kan 'Værdi' kun være"
|
297 |
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
299 |
msgid "Field inserted correctly"
|
300 |
msgstr "Felt indsat"
|
301 |
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
303 |
msgid "Field #"
|
304 |
msgstr "Felt #"
|
305 |
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
307 |
msgid "updated correctly"
|
308 |
msgstr "Opdatering gennemført"
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
311 |
msgid "Name inserted is just in the database, change to another one"
|
312 |
msgstr "Det valgte navn findes allerede, vælg venligst et andet"
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
316 |
msgid "Add a new Field"
|
317 |
msgstr "Tilføj et nyt felt"
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
320 |
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."
|
321 |
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."
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
324 |
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'"
|
325 |
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."
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
328 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
329 |
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"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
332 |
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"
|
333 |
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."
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
336 |
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)"
|
337 |
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)."
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
340 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
341 |
msgstr "<strong>registration-date</strong>: <em>LIG MED</em> henviser til dato- og tidsformat."
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
344 |
#, fuzzy
|
345 |
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"
|
346 |
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."
|
347 |
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
349 |
#, fuzzy
|
350 |
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"
|
351 |
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."
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
359 |
msgid "Name"
|
360 |
msgstr "Navn"
|
361 |
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
368 |
msgid "Value"
|
369 |
msgstr "Værdi"
|
370 |
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
374 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
375 |
msgid "Type"
|
376 |
msgstr "Type"
|
377 |
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
382 |
msgid "Label"
|
383 |
msgstr "Betegnelse"
|
384 |
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
389 |
msgid "Description"
|
390 |
msgstr "Beskrivelse"
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
394 |
msgid "Rules"
|
395 |
msgstr "Regler"
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
399 |
msgid "Actions"
|
400 |
msgstr "Handlinger"
|
401 |
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
406 |
#, fuzzy
|
407 |
msgid "Fieldset"
|
408 |
msgstr "Felter"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
412 |
msgid "Can be empty"
|
413 |
msgstr "Kan være tomt"
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
417 |
msgid "Check for E-mail syntax"
|
418 |
msgstr "Kontroller venligst e-mailadressen"
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
422 |
msgid "Can be modified"
|
423 |
msgstr "Kan ændres"
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
427 |
msgid "Can be modified only if empty"
|
428 |
msgstr "Kan kun ændres hvis feltet er tomt"
|
429 |
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
432 |
msgid "Can be modified only by admin"
|
433 |
msgstr "Kan kun ændres af Administrator"
|
434 |
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
437 |
msgid "Can be modified only by admin or if empty"
|
438 |
msgstr "Kan kun ændres hvis det er tomt"
|
439 |
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
442 |
msgid "Cannot be modified"
|
443 |
msgstr "Kan ikke ændres"
|
444 |
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
447 |
msgid "Should be equal TO"
|
448 |
msgstr "Skal være LIG MED"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
452 |
msgid "Case sensitive"
|
453 |
msgstr "Forskel på store og små bogstaver"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
457 |
msgid "Regular Expression"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
462 |
msgid "Show the field in the registration"
|
463 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
464 |
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
467 |
msgid "Show the field in User's profile"
|
468 |
msgstr "Vis felt i 'Brugerprofil'"
|
469 |
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
472 |
#, fuzzy
|
473 |
msgid "Show the field in Users Extended section"
|
474 |
msgstr "Vis felt under 'Vis alle brugere'"
|
475 |
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
478 |
#, fuzzy
|
479 |
msgid "Show the field in the search engine"
|
480 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
484 |
#, fuzzy
|
485 |
msgid "Show the field in the blog"
|
486 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
487 |
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
490 |
#, fuzzy
|
491 |
msgid "Show the field if the role is at least:"
|
492 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
496 |
msgid "Anonymous"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
500 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
501 |
msgid "User has 'view_cimy_extra_fields' capability"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
506 |
msgid "Send an email to the admin if the user changes its value"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
511 |
#, fuzzy
|
512 |
msgid "Advanced options"
|
513 |
msgstr "Handlinger"
|
514 |
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
516 |
msgid "Clear"
|
517 |
msgstr "Slet"
|
518 |
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
520 |
msgid "Invert selection"
|
521 |
msgstr "Omvend markering"
|
522 |
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
524 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
525 |
msgstr "Er du sikker på at du vil slette dette/disse felt(er) og al tilknyttet brugerdata?"
|
526 |
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
528 |
msgid "WordPress Fields"
|
529 |
msgstr "WordPress felter"
|
530 |
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
536 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
537 |
msgid "Extra Fields"
|
538 |
msgstr "Ekstra felter"
|
539 |
|
540 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
541 |
msgid "None!"
|
542 |
msgstr "Ingen!"
|
543 |
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
545 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
546 |
msgid "Order"
|
547 |
msgstr "Rækkefølge"
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
550 |
msgid "Reset"
|
551 |
msgstr "Nulstil"
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
555 |
msgid "SUCCESSFUL"
|
556 |
msgstr "GENNEMFØRT"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
560 |
#, fuzzy
|
561 |
msgid "select"
|
562 |
msgstr "Slet"
|
563 |
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
566 |
#, fuzzy
|
567 |
msgid "Users per page"
|
568 |
msgstr "Tabel for brugerdata"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
572 |
msgid "Apply"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
578 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
580 |
msgid "Users Extended"
|
581 |
msgstr "Vis alle brugere"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
584 |
#, php-format
|
585 |
msgid "Search results for “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
589 |
#, php-format
|
590 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
594 |
msgid "Search Users"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
599 |
#, fuzzy
|
600 |
msgid "Role"
|
601 |
msgstr "Regler"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
606 |
msgid "Website"
|
607 |
msgstr "Website"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
611 |
msgid "Posts"
|
612 |
msgstr "Indlæg"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
615 |
msgid "View posts by this author"
|
616 |
msgstr "Vis denne brugers indlæg"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
619 |
msgid "Super Admin"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
623 |
#, php-format
|
624 |
msgid "e-mail: %s"
|
625 |
msgstr "e-mail: %s"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
628 |
#, fuzzy
|
629 |
msgid "Change"
|
630 |
msgstr "Ændre rækkefølge"
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
633 |
#, fuzzy
|
634 |
msgid "Update selected users"
|
635 |
msgstr "Slet valgte felter"
|
636 |
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
638 |
#, fuzzy
|
639 |
msgid "Update"
|
640 |
msgstr "Opdater felt"
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
643 |
msgid "OK"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
647 |
msgid "Cancel"
|
648 |
msgstr ""
|
649 |
|
653 |
msgstr ""
|
654 |
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
657 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
658 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
659 |
#, fuzzy, php-format
|
660 |
msgid "Username: %s"
|
661 |
msgstr "Brugernavn"
|
675 |
msgid "[%s] Your username and password"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
679 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
680 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
681 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
682 |
#, php-format
|
683 |
msgid "%s: %s"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
687 |
#, php-format
|
688 |
msgid ""
|
689 |
"To activate your user, please click the following link:\n"
|
694 |
"\n"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
699 |
msgid "Your account is now active!"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
703 |
#, php-format
|
704 |
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>."
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
708 |
msgid "An error occurred during the activation"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
712 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
713 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
714 |
#, php-format
|
715 |
msgid "Password: %s"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
719 |
msgid "Invalid activation key."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
723 |
msgid "The site is already active."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
727 |
msgid "Could not create user"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
731 |
msgid "That username is already activated."
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
735 |
msgid "That username is currently reserved but may be available in a couple of days."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
739 |
msgid "username and email used"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
743 |
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."
|
744 |
msgstr ""
|
745 |
|
758 |
msgstr "Opdater felt"
|
759 |
|
760 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
761 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
762 |
#, fuzzy
|
763 |
msgid "Delete the picture"
|
764 |
msgstr "Slet felt"
|
783 |
msgstr ""
|
784 |
|
785 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
786 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
787 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
788 |
msgid "Options"
|
789 |
msgstr "Indstillinger"
|
790 |
|
791 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
792 |
msgid "WordPress Fields table emptied"
|
793 |
msgstr "WordPress tabel tømt"
|
794 |
|
795 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
796 |
msgid "WordPress Fields table deleted"
|
797 |
msgstr "WordPress tabel slettet"
|
798 |
|
799 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
800 |
msgid "Extra Fields table emptied"
|
801 |
msgstr "Tabel med ekstra felter tømt"
|
802 |
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
804 |
msgid "Extra Fields table deleted"
|
805 |
msgstr "Tabel med ekstra felter slettet"
|
806 |
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
808 |
msgid "Users Data table emptied"
|
809 |
msgstr "Tabellen med brugerdata er blevet tømt"
|
810 |
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
812 |
msgid "Users Data table deleted"
|
813 |
msgstr "Tabellen med brugerdata er blevet slettet"
|
814 |
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
816 |
msgid "Options set to default values"
|
817 |
msgstr "Indstillinger nulstillet"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
820 |
msgid "Options deleted"
|
821 |
msgstr "Indstillinger slettet"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
824 |
msgid "Options changed"
|
825 |
msgstr "Indstillinger ændret"
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
828 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
832 |
msgid "Support the Cimy Project"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
836 |
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!"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
841 |
msgid "Save Changes"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
845 |
msgid "General"
|
846 |
msgstr "Generelle indstillinger"
|
847 |
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
849 |
msgid "installed is"
|
850 |
msgstr "installeret er"
|
851 |
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
853 |
msgid "OPTIONS DELETED!"
|
854 |
msgstr "INDSTILLINGER SLETTET!"
|
855 |
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
858 |
msgid "Fix the problem"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
862 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
863 |
msgstr "VERSIONSKONFLIKT! Husk at deaktivere og genaktivere plugin'et efter opdatering!"
|
864 |
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
866 |
msgid "Picture/Avatar upload"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
870 |
msgid "is created and writable"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
874 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
878 |
#, fuzzy
|
879 |
msgid "Show all fields in the welcome email"
|
880 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
883 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
887 |
msgid "Enable email confirmation"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
891 |
msgid "user that registers should confirm its email address via a link click"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
895 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
899 |
msgid "Enable form confirmation"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
903 |
msgid "a summary of the registration form will be presented to the user"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
907 |
msgid "Customize welcome email sent to the new user"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
911 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
915 |
msgid "Redirect to the source"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
919 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
923 |
msgid "No captcha"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
927 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
931 |
msgid "Public KEY"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
935 |
msgid "Private KEY"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
939 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
943 |
msgid "This captcha is probably weaker, but is easier for users"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
947 |
#, php-format
|
948 |
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>"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
952 |
msgid "Change login/registration page logo"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
956 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
960 |
msgid "Database"
|
961 |
msgstr "Database administration"
|
962 |
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
967 |
msgid "select action"
|
968 |
msgstr "Vælg handling"
|
969 |
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
971 |
msgid "Default values"
|
972 |
msgstr "Standard værdier"
|
973 |
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
978 |
msgid "Delete"
|
979 |
msgstr "Slet"
|
980 |
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
985 |
msgid "NOT PRESENT"
|
986 |
msgstr "FINDES IKKE"
|
987 |
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
989 |
msgid "WordPress Fields table"
|
990 |
msgstr "WordPress tabel"
|
991 |
|
992 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
995 |
msgid "Empty"
|
996 |
msgstr "Tøm"
|
997 |
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
999 |
msgid "Extra Fields table"
|
1000 |
msgstr "Tabel med ekstra felter"
|
1001 |
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
1003 |
msgid "Users Data table"
|
1004 |
msgstr "Tabel for brugerdata"
|
1005 |
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
1007 |
msgid "all data inserted by users in all and only extra fields"
|
1008 |
msgstr "al brugerdata i alle ekstra felter"
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
1011 |
msgid "Force tables creation"
|
1012 |
msgstr "Gennemtving oprettelse af tabeller"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
1015 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1019 |
msgid "User Profile"
|
1020 |
msgstr "Brugerprofil"
|
1021 |
|
1022 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1023 |
#, fuzzy
|
1024 |
msgid "Extra Fields section title"
|
1025 |
msgstr "Tabel med ekstra felter"
|
1026 |
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1028 |
msgid "Fieldset's titles, separates with comma"
|
1029 |
msgstr "Feltrækkernes titel, adkilt med komma"
|
1030 |
|
1031 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1032 |
msgid "example: title1,title2,title3"
|
1033 |
msgstr "F. eks.: Titel1,Titel2,Titel3"
|
1034 |
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1036 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1040 |
msgid "Authors & Users Extended"
|
1041 |
msgstr "Bruger liste"
|
1042 |
|
1043 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1044 |
msgid "Hide username field"
|
1045 |
msgstr "Skjul brugernavn"
|
1046 |
|
1047 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1048 |
msgid "Hide name field"
|
1049 |
msgstr "Skjul fornavn"
|
1050 |
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1052 |
msgid "Hide email field"
|
1053 |
msgstr "Skjul e-mailadresse"
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1056 |
#, fuzzy
|
1057 |
msgid "Hide role field"
|
1058 |
msgstr "Skjul fornavn"
|
1059 |
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:671
|
1061 |
msgid "Hide website field"
|
1062 |
msgstr "Skjul website"
|
1063 |
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1065 |
msgid "Hide n. posts field"
|
1066 |
msgstr "Skjul angivelse af antal af brugerindlæg"
|
1067 |
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
1069 |
msgid "WordPress hidden fields"
|
1070 |
msgstr "Wordpress skjulte felter"
|
1071 |
|
1072 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
1073 |
+
#, fuzzy
|
1074 |
+
msgid "Show username"
|
1075 |
+
msgstr "Vis Efternavn"
|
1076 |
+
|
1077 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
|
1078 |
+
msgid "when unchecked the email address will be used as username"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
1082 |
msgid "Show password"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
1086 |
msgid "Show confirmation password"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
1090 |
msgid "Show password strength meter"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
1094 |
msgid "Show first name"
|
1095 |
msgstr "Vis fornavn"
|
1096 |
|
1097 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
1098 |
msgid "Show last name"
|
1099 |
msgstr "Vis Efternavn"
|
1100 |
|
1101 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
|
1102 |
msgid "Show nickname"
|
1103 |
msgstr "Vis Kaldenavn"
|
1104 |
|
1105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
1106 |
msgid "Show website"
|
1107 |
msgstr "Website"
|
1108 |
|
1109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
1110 |
msgid "Show AIM"
|
1111 |
msgstr "Vis AIM"
|
1112 |
|
1113 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:721
|
1114 |
msgid "Show Yahoo IM"
|
1115 |
msgstr "Vis Yahoo IM"
|
1116 |
|
1117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
1118 |
msgid "Show Jabber / Google Talk"
|
1119 |
msgstr "Vis Jabber / Google Talk"
|
1120 |
|
1121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:729
|
1122 |
msgid "Show Biographical Info"
|
1123 |
msgstr ""
|
1124 |
|
1140 |
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!"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
|
1144 |
msgid "Password"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:236
|
1148 |
msgid "Password confirmation"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:258
|
1152 |
#, fuzzy
|
1153 |
msgid "First name"
|
1154 |
msgstr "Vis fornavn"
|
1155 |
|
1156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
1157 |
#, fuzzy
|
1158 |
msgid "Last name"
|
1159 |
msgstr "Vis Efternavn"
|
1160 |
|
1161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
1162 |
#, fuzzy
|
1163 |
msgid "Nickname"
|
1164 |
msgstr "Navn"
|
1165 |
|
1166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:346
|
1167 |
msgid "AIM"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:368
|
1171 |
#, fuzzy
|
1172 |
msgid "Yahoo IM"
|
1173 |
msgstr "Vis Yahoo IM"
|
1174 |
|
1175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:390
|
1176 |
#, fuzzy
|
1177 |
msgid "Jabber / Google Talk"
|
1178 |
msgstr "Vis Jabber / Google Talk"
|
1179 |
|
1180 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:412
|
1181 |
msgid "Biographical Info"
|
1182 |
msgstr ""
|
1183 |
|
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 |
"Language: \n"
|
@@ -17,146 +17,147 @@ msgstr ""
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
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/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
35 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
36 |
msgid "ERROR"
|
37 |
msgstr "FEHLER"
|
38 |
|
39 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "hat eine fehlerhafte Email-Syntax. "
|
46 |
|
47 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "darf nicht leer sein."
|
50 |
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "ist nicht richtig"
|
55 |
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "JA"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NEIN"
|
67 |
|
68 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
69 |
msgid "should be"
|
70 |
msgstr "sollte sein"
|
71 |
|
72 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
73 |
msgid "should be an image."
|
74 |
msgstr "sollte ein Bild sein."
|
75 |
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "darf keine Größe haben unter"
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "darf keine Länge haben unter"
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "darf keine Größe haben, die um mehr abweicht als"
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "darf keine Länge habe, die um mehr abweicht als"
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "darf keine Größe haben über"
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "darf keine Länge haben über"
|
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_register.php:
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
112 |
msgid "Username"
|
113 |
msgstr "\"Benutzer\"name"
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
msgid "E-mail"
|
119 |
msgstr "E-Mail"
|
120 |
|
121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
#, fuzzy
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
134 |
msgid "Strength indicator"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
138 |
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 ! \" ? $ % ^ & )."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
142 |
#, fuzzy
|
143 |
msgid "Change image"
|
144 |
msgstr "Reihenfolge ändern "
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
147 |
msgid "Insert the code:"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
@@ -181,17 +182,17 @@ msgid "Change order"
|
|
181 |
msgstr "Reihenfolge ändern "
|
182 |
|
183 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
185 |
msgid "Min length"
|
186 |
msgstr "Minimale Länge"
|
187 |
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
msgid "Exact length"
|
191 |
msgstr "Exakte Länge"
|
192 |
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
195 |
msgid "Max length"
|
196 |
msgstr "Maximale Länge"
|
197 |
|
@@ -213,363 +214,363 @@ msgid "You cannot give an order that misses some numbers"
|
|
213 |
msgstr "Die Ordnungnummern müssen fortlaufen & durchgängig sein."
|
214 |
|
215 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
216 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
217 |
msgid "Nothing selected"
|
218 |
msgstr "Nichts ausgewählt"
|
219 |
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Field(s)"
|
222 |
msgstr "Feld(er)"
|
223 |
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
225 |
msgid "deleted correctly"
|
226 |
msgstr "erfolgreich gelöscht"
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
230 |
msgid "Min size"
|
231 |
msgstr "Minimale Größe"
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
234 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
235 |
msgid "Exact size"
|
236 |
msgstr "Exakte Größe"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
240 |
msgid "Max size"
|
241 |
msgstr "Maximale Größe"
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
244 |
msgid "Exact or Max size"
|
245 |
msgstr "Exakte oder maximale Größe"
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Name not specified"
|
249 |
msgstr "Name nicht ausgefüllt"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Name cannot contains spaces"
|
253 |
msgstr "Der Name darf keine Leerstellen enthalten."
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "Label not specified"
|
257 |
msgstr "\"label\"/Feld-Titel nicht ausgefüllt"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
msgid "not selected (with this type is necessary)"
|
261 |
msgstr "nicht ausgewählt (für diesen Typ notwendig)"
|
262 |
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
264 |
msgid "If you select"
|
265 |
msgstr "Wenn Sie folgendes auswählen"
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
268 |
msgid "you cannot select Min or Max"
|
269 |
msgstr "Sie dürfen \"Min\" oder \"Max\" nicht festlegen"
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
274 |
msgid "should be in the range of"
|
275 |
msgstr "sollte im Bereich sein (von/bis)"
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
278 |
msgid "Equal TO not specified"
|
279 |
msgstr "ENTSPRICHT (equal TO) nicht spezifiziert"
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
282 |
msgid "With checkbox type Equal TO can only be"
|
283 |
msgstr "Beim Typ <strong>checkbox</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
286 |
msgid "With radio type Equal TO can only be"
|
287 |
msgstr "Beim Typ <strong>radio</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
290 |
msgid "With checkbox type Value can only be"
|
291 |
msgstr "Beim Typ <strong>checkbox</strong> kann der Wert/$value nur folgendes sein"
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
294 |
msgid "With radio type Value can only be"
|
295 |
msgstr "Beim Typ <strong>radio</strong> kann der Wert/$value nur folgendes sein"
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
298 |
msgid "Field inserted correctly"
|
299 |
msgstr "Feld richtig eingefügt."
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
302 |
msgid "Field #"
|
303 |
msgstr "Feld #"
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
306 |
msgid "updated correctly"
|
307 |
msgstr "Update erfolgreich"
|
308 |
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Name inserted is just in the database, change to another one"
|
311 |
msgstr "Dieser Name ist in der Datenbank bereits vorhanden, bitte wähle einen anderen"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
315 |
msgid "Add a new Field"
|
316 |
msgstr "Ein neues Feld hinzufügen"
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
319 |
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."
|
320 |
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."
|
321 |
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
323 |
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'"
|
324 |
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."
|
325 |
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
327 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
328 |
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"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
331 |
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"
|
332 |
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."
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
335 |
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)"
|
336 |
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)."
|
337 |
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
339 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
340 |
msgstr "Bei <strong>registration-date</strong> gilt: <em>ENTSRPICHT(equal TO)</em> meint das Format für Datum und Zeit."
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
343 |
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"
|
344 |
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."
|
345 |
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
347 |
#, fuzzy
|
348 |
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"
|
349 |
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."
|
350 |
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
msgid "Name"
|
358 |
msgstr "Name"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
366 |
msgid "Value"
|
367 |
msgstr "Wert/$value"
|
368 |
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
373 |
msgid "Type"
|
374 |
msgstr "Typ"
|
375 |
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
378 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
msgid "Label"
|
381 |
msgstr "Bezeichnung/\"label\""
|
382 |
|
383 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
387 |
msgid "Description"
|
388 |
msgstr "Beschreibung"
|
389 |
|
390 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
392 |
msgid "Rules"
|
393 |
msgstr "Regeln"
|
394 |
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
msgid "Actions"
|
398 |
msgstr "Aktion"
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
#, fuzzy
|
405 |
msgid "Fieldset"
|
406 |
msgstr "Felder"
|
407 |
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
msgid "Can be empty"
|
411 |
msgstr "Kann leer sein"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
msgid "Check for E-mail syntax"
|
416 |
msgstr "Kontrollieren Sie bitte die E-Mail-Syntax"
|
417 |
|
418 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
420 |
msgid "Can be modified"
|
421 |
msgstr "Änderung des Feldes möglich"
|
422 |
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
425 |
msgid "Can be modified only if empty"
|
426 |
msgstr "Änderung des Feldes möglich wenn leer"
|
427 |
|
428 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
430 |
msgid "Can be modified only by admin"
|
431 |
msgstr "Änderung des Feldes nur durch Admin möglich"
|
432 |
|
433 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
435 |
msgid "Can be modified only by admin or if empty"
|
436 |
msgstr "Änderung des Feldes nur durch Admin, oder wenn leer"
|
437 |
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
440 |
msgid "Cannot be modified"
|
441 |
msgstr "Änderung des Feldes nicht möglich"
|
442 |
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
445 |
msgid "Should be equal TO"
|
446 |
msgstr "ENTSPRICHT (equal TO) folgendem"
|
447 |
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
449 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
450 |
msgid "Case sensitive"
|
451 |
msgstr "Groß-/Kleinschreibung beachten"
|
452 |
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
455 |
msgid "Regular Expression"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
460 |
msgid "Show the field in the registration"
|
461 |
msgstr "Zeige das Feld bei der Registrierung"
|
462 |
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
464 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
465 |
msgid "Show the field in User's profile"
|
466 |
msgstr "Zeige das Feld im \"Benutzer\"profil"
|
467 |
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
470 |
#, fuzzy
|
471 |
msgid "Show the field in Users Extended section"
|
472 |
msgstr "Zeige das Feld in der \"Liste aller Benutzer\""
|
473 |
|
474 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
476 |
#, fuzzy
|
477 |
msgid "Show the field in the search engine"
|
478 |
msgstr "Zeige das Feld bei der Registrierung"
|
479 |
|
480 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
481 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
482 |
#, fuzzy
|
483 |
msgid "Show the field in the blog"
|
484 |
msgstr "Zeige das Feld bei der Registrierung"
|
485 |
|
486 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
#, fuzzy
|
489 |
msgid "Show the field if the role is at least:"
|
490 |
msgstr "Zeige das Feld bei der Registrierung"
|
491 |
|
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 "Anonymous"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
499 |
msgid "User has 'view_cimy_extra_fields' capability"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
504 |
msgid "Send an email to the admin if the user changes its value"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
509 |
#, fuzzy
|
510 |
msgid "Advanced options"
|
511 |
msgstr "Aktion"
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
514 |
msgid "Clear"
|
515 |
msgstr "Löschen"
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
518 |
msgid "Invert selection"
|
519 |
msgstr "Auswahl umkehren"
|
520 |
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
522 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
523 |
msgstr "Bist Du sicher, dass du diese(s) Feld(er) und alle Daten, die von \"Benutzer\"n angelegt wurden, löschen möchtest?"
|
524 |
|
525 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
526 |
msgid "WordPress Fields"
|
527 |
msgstr "WordPress Felder"
|
528 |
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
531 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
533 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
534 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
535 |
msgid "Extra Fields"
|
536 |
msgstr "Benutzerdefinierte Felder"
|
537 |
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
539 |
msgid "None!"
|
540 |
msgstr "Keine!"
|
541 |
|
542 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
544 |
msgid "Order"
|
545 |
msgstr "Reihenfolge"
|
546 |
|
547 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
548 |
msgid "Reset"
|
549 |
msgstr "Reset"
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
553 |
msgid "SUCCESSFUL"
|
554 |
msgstr "ERFOLGREICH"
|
555 |
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
#, fuzzy
|
559 |
msgid "select"
|
560 |
msgstr "Löschen"
|
561 |
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
msgid "Users per page"
|
565 |
msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
|
566 |
|
567 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
569 |
msgid "Apply"
|
570 |
msgstr "anwenden"
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
573 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
574 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
@@ -577,69 +578,69 @@ msgstr "anwenden"
|
|
577 |
msgid "Users Extended"
|
578 |
msgstr "Liste aller \"Benutzer\""
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
581 |
#, php-format
|
582 |
msgid "Search results for “%s”"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
586 |
#, php-format
|
587 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
591 |
msgid "Search Users"
|
592 |
msgstr "Suche \"Benutzer\""
|
593 |
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
596 |
msgid "Role"
|
597 |
msgstr "\"Benutzer\"-Rollen"
|
598 |
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
601 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
602 |
msgid "Website"
|
603 |
msgstr "Webseite"
|
604 |
|
605 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
607 |
msgid "Posts"
|
608 |
msgstr "Artikel"
|
609 |
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
611 |
msgid "View posts by this author"
|
612 |
msgstr "Zeige Artikel dieses Autors"
|
613 |
|
614 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
615 |
msgid "Super Admin"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
619 |
#, php-format
|
620 |
msgid "e-mail: %s"
|
621 |
msgstr "E-Mail: %s"
|
622 |
|
623 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
624 |
#, fuzzy
|
625 |
msgid "Change"
|
626 |
msgstr "Reihenfolge ändern "
|
627 |
|
628 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
629 |
#, fuzzy
|
630 |
msgid "Update selected users"
|
631 |
msgstr "Ausgewählte Felder löschen"
|
632 |
|
633 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
634 |
#, fuzzy
|
635 |
msgid "Update"
|
636 |
msgstr "Feld aktualisieren"
|
637 |
|
638 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
639 |
msgid "OK"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
643 |
msgid "Cancel"
|
644 |
msgstr ""
|
645 |
|
@@ -649,9 +650,9 @@ msgid "New user registration on your site %s:"
|
|
649 |
msgstr ""
|
650 |
|
651 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
652 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
653 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
654 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
655 |
#, fuzzy, php-format
|
656 |
msgid "Username: %s"
|
657 |
msgstr "\"Benutzer\"name"
|
@@ -671,15 +672,15 @@ msgstr ""
|
|
671 |
msgid "[%s] Your username and password"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
675 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
676 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
677 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
678 |
#, php-format
|
679 |
msgid "%s: %s"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
683 |
#, php-format
|
684 |
msgid ""
|
685 |
"To activate your user, please click the following link:\n"
|
@@ -690,52 +691,52 @@ msgid ""
|
|
690 |
"\n"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
694 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
695 |
msgid "Your account is now active!"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
699 |
#, php-format
|
700 |
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>."
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
704 |
msgid "An error occurred during the activation"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
708 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
710 |
#, fuzzy, php-format
|
711 |
msgid "Password: %s"
|
712 |
msgstr "Passwort"
|
713 |
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
715 |
msgid "Invalid activation key."
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
719 |
msgid "The site is already active."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
723 |
msgid "Could not create user"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
727 |
msgid "That username is already activated."
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
731 |
msgid "That username is currently reserved but may be available in a couple of days."
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
735 |
msgid "username and email used"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
739 |
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."
|
740 |
msgstr ""
|
741 |
|
@@ -754,7 +755,7 @@ msgid "Update the file"
|
|
754 |
msgstr "Bild aktualisieren"
|
755 |
|
756 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
757 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
758 |
msgid "Delete the picture"
|
759 |
msgstr "Bild löschen"
|
760 |
|
@@ -777,333 +778,342 @@ msgid "%s (%s) has changed one or more fields"
|
|
777 |
msgstr ""
|
778 |
|
779 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
780 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
781 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
782 |
msgid "Options"
|
783 |
msgstr "Einstellungen"
|
784 |
|
785 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
786 |
msgid "WordPress Fields table emptied"
|
787 |
msgstr "WP-Datenbank-Tabelle Zusatzfelder geleert"
|
788 |
|
789 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
790 |
msgid "WordPress Fields table deleted"
|
791 |
msgstr "WP-Datenbank-Tabelle Zusatzfelder gelöscht"
|
792 |
|
793 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
794 |
msgid "Extra Fields table emptied"
|
795 |
msgstr "Tabelle \"Benutzerdefinierte Felder\" geleert"
|
796 |
|
797 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
798 |
msgid "Extra Fields table deleted"
|
799 |
msgstr "Tabelle \"Benutzerdefinierte Felder\" gelöscht"
|
800 |
|
801 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
802 |
msgid "Users Data table emptied"
|
803 |
msgstr "Tabelle \"Benutzerdaten\" geleert"
|
804 |
|
805 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
806 |
msgid "Users Data table deleted"
|
807 |
msgstr "Tabelle \"Benutzerdaten\" gelöscht"
|
808 |
|
809 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
810 |
msgid "Options set to default values"
|
811 |
msgstr "Einstellungen auf Grundeinstellungen zurück gesetzt"
|
812 |
|
813 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
814 |
msgid "Options deleted"
|
815 |
msgstr "Einstellungen gelöscht"
|
816 |
|
817 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
818 |
msgid "Options changed"
|
819 |
msgstr "Einstellungen aktualisiert"
|
820 |
|
821 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
822 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
826 |
msgid "Support the Cimy Project"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
830 |
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!"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
835 |
msgid "Save Changes"
|
836 |
msgstr "Einstellungen aktualisieren"
|
837 |
|
838 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
839 |
msgid "General"
|
840 |
msgstr "Allgemein"
|
841 |
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
843 |
msgid "installed is"
|
844 |
msgstr "installiert ist"
|
845 |
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
847 |
msgid "OPTIONS DELETED!"
|
848 |
msgstr "EINSTELLUNGEN GELÖSCHT!"
|
849 |
|
850 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
852 |
msgid "Fix the problem"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
856 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
857 |
msgstr "VERSIONEN NICHT KOMPATIBEL! Du hast das Plugin nach dem Update nicht deaktiviert und anschließend reaktiviert. Das könnte Probleme geben..."
|
858 |
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
860 |
msgid "Picture/Avatar upload"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
864 |
msgid "is created and writable"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
868 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
872 |
#, fuzzy
|
873 |
msgid "Show all fields in the welcome email"
|
874 |
msgstr "Zeige das Feld bei der Registrierung"
|
875 |
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
877 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
881 |
msgid "Enable email confirmation"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
885 |
msgid "user that registers should confirm its email address via a link click"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
889 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
893 |
msgid "Enable form confirmation"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
897 |
msgid "a summary of the registration form will be presented to the user"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
901 |
msgid "Customize welcome email sent to the new user"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
905 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
909 |
msgid "Redirect to the source"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
913 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
917 |
msgid "No captcha"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
921 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
925 |
msgid "Public KEY"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
929 |
msgid "Private KEY"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
933 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
937 |
msgid "This captcha is probably weaker, but is easier for users"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
941 |
#, php-format
|
942 |
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>"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
946 |
msgid "Change login/registration page logo"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
950 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
954 |
msgid "Database"
|
955 |
msgstr "Datenbank"
|
956 |
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
961 |
msgid "select action"
|
962 |
msgstr "Wähle Aktion"
|
963 |
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
965 |
msgid "Default values"
|
966 |
msgstr "Werte: Grundeinstellung"
|
967 |
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
970 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
971 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
972 |
msgid "Delete"
|
973 |
msgstr "Löschen"
|
974 |
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
979 |
msgid "NOT PRESENT"
|
980 |
msgstr "NICHT VORHANDEN"
|
981 |
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
983 |
msgid "WordPress Fields table"
|
984 |
msgstr "WP-Datenbank-Tabelle"
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
988 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
989 |
msgid "Empty"
|
990 |
msgstr "Leer"
|
991 |
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
993 |
msgid "Extra Fields table"
|
994 |
msgstr "Tabelle \"Benutzerdefinierte Felder\""
|
995 |
|
996 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
997 |
msgid "Users Data table"
|
998 |
msgstr "Tabelle \"Benutzerdaten\""
|
999 |
|
1000 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1001 |
msgid "all data inserted by users in all and only extra fields"
|
1002 |
msgstr "alle von \"Benutzern\" in die Cimy-Zusatzfelder eingetragenen Daten"
|
1003 |
|
1004 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1005 |
msgid "Force tables creation"
|
1006 |
msgstr "Erzwingt die Erstellung der Datenbanktabellen"
|
1007 |
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1009 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1010 |
msgstr "Achtung: Mit dieser Einstellung zwingen Sie das PlugIn die Datenbanktabellen zu erstellen. Dieser Schritt wird auch bei (De-)Aktivierung des PlugIns durchgeführt."
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1013 |
msgid "User Profile"
|
1014 |
msgstr "\"Benutzer\" Profil"
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1017 |
msgid "Extra Fields section title"
|
1018 |
msgstr "Titel für \"Benutzerdefinierte Felder\""
|
1019 |
|
1020 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1021 |
msgid "Fieldset's titles, separates with comma"
|
1022 |
msgstr "Titel des Abschnitts der \"Benutzerdefinierten Felder\", abgetrennt durch Kommata (',')"
|
1023 |
|
1024 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1025 |
msgid "example: title1,title2,title3"
|
1026 |
msgstr "Beispiel: Titel1, Titel2, Titel3"
|
1027 |
|
1028 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1029 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1033 |
msgid "Authors & Users Extended"
|
1034 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
1035 |
|
1036 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1037 |
msgid "Hide username field"
|
1038 |
msgstr "Feld: \"'Benutzer'-Name\" nicht anzeigen"
|
1039 |
|
1040 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1041 |
msgid "Hide name field"
|
1042 |
msgstr "Feld: \"Name\" nicht anzeigen"
|
1043 |
|
1044 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1045 |
msgid "Hide email field"
|
1046 |
msgstr "Feld: \"E-mail Adresse\" nicht anzeigen"
|
1047 |
|
1048 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1049 |
msgid "Hide role field"
|
1050 |
msgstr "Feld: \"Rolle\" des \"Benutzers\" nicht anzeigen"
|
1051 |
|
1052 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1053 |
msgid "Hide website field"
|
1054 |
msgstr "Feld: \"Webseite\" nicht anzeigen"
|
1055 |
|
1056 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1057 |
msgid "Hide n. posts field"
|
1058 |
msgstr "Feld: Anzahl der von \"Benutzer(n)\" erstellten Artikel nicht anzeigen"
|
1059 |
|
1060 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1061 |
msgid "WordPress hidden fields"
|
1062 |
msgstr "Feld: \"Wordpress hidden fields\" (verborgene Felder)"
|
1063 |
|
1064 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1065 |
msgid "Show password"
|
1066 |
msgstr "\"Passwort\" anzeigen"
|
1067 |
|
1068 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1069 |
#, fuzzy
|
1070 |
msgid "Show confirmation password"
|
1071 |
msgstr "\"Passwort\" anzeigen"
|
1072 |
|
1073 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1074 |
#, fuzzy
|
1075 |
msgid "Show password strength meter"
|
1076 |
msgstr "\"Passwort\" anzeigen"
|
1077 |
|
1078 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1079 |
msgid "Show first name"
|
1080 |
msgstr "Zeige \"Vornamen\""
|
1081 |
|
1082 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1083 |
msgid "Show last name"
|
1084 |
msgstr "Zeige \"Nachnamen\""
|
1085 |
|
1086 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1087 |
msgid "Show nickname"
|
1088 |
msgstr "Zeige \"Nicknamen\"/Spitznamen"
|
1089 |
|
1090 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1091 |
msgid "Show website"
|
1092 |
msgstr "Zeige \"Webseite\""
|
1093 |
|
1094 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1095 |
msgid "Show AIM"
|
1096 |
msgstr "Zeige \"AIM\""
|
1097 |
|
1098 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1099 |
msgid "Show Yahoo IM"
|
1100 |
msgstr "Zeige \"Yahoo IM\""
|
1101 |
|
1102 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1103 |
msgid "Show Jabber / Google Talk"
|
1104 |
msgstr "Zeige \"Jabber / Google Talk\""
|
1105 |
|
1106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1107 |
msgid "Show Biographical Info"
|
1108 |
msgstr "\"Weitere Informationen\" anzeigen"
|
1109 |
|
@@ -1125,39 +1135,39 @@ msgstr "Datei '%s' muss Bild-Datei sein"
|
|
1125 |
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!"
|
1126 |
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."
|
1127 |
|
1128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1129 |
msgid "Password"
|
1130 |
msgstr "Passwort"
|
1131 |
|
1132 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1133 |
msgid "Password confirmation"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1137 |
msgid "First name"
|
1138 |
msgstr "Vorname"
|
1139 |
|
1140 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1141 |
msgid "Last name"
|
1142 |
msgstr "Nachname"
|
1143 |
|
1144 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1145 |
msgid "Nickname"
|
1146 |
msgstr "Spitzname"
|
1147 |
|
1148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1149 |
msgid "AIM"
|
1150 |
msgstr "AIM"
|
1151 |
|
1152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1153 |
msgid "Yahoo IM"
|
1154 |
msgstr "Yahoo IM"
|
1155 |
|
1156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1157 |
msgid "Jabber / Google Talk"
|
1158 |
msgstr "Jabber / Google Talk"
|
1159 |
|
1160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1161 |
msgid "Biographical Info"
|
1162 |
msgstr "Weitere Informationen"
|
1163 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:52-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:52-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
|
|
|
|
|
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
36 |
msgid "ERROR"
|
37 |
msgstr "FEHLER"
|
38 |
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "hat eine fehlerhafte Email-Syntax. "
|
46 |
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "darf nicht leer sein."
|
50 |
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
52 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "ist nicht richtig"
|
55 |
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
59 |
msgid "YES"
|
60 |
msgstr "JA"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
65 |
msgid "NO"
|
66 |
msgstr "NEIN"
|
67 |
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
69 |
msgid "should be"
|
70 |
msgstr "sollte sein"
|
71 |
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
73 |
msgid "should be an image."
|
74 |
msgstr "sollte ein Bild sein."
|
75 |
|
76 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "darf keine Größe haben unter"
|
83 |
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "darf keine Länge haben unter"
|
87 |
|
88 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "darf keine Größe haben, die um mehr abweicht als"
|
91 |
|
92 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "darf keine Länge habe, die um mehr abweicht als"
|
95 |
|
96 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "darf keine Größe haben über"
|
99 |
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "darf keine Länge haben über"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "\"Benutzer\"name"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-Mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1007
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Reihenfolge ändern "
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1313
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
182 |
msgstr "Reihenfolge ändern "
|
183 |
|
184 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
|
186 |
msgid "Min length"
|
187 |
msgstr "Minimale Länge"
|
188 |
|
189 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
191 |
msgid "Exact length"
|
192 |
msgstr "Exakte Länge"
|
193 |
|
194 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
196 |
msgid "Max length"
|
197 |
msgstr "Maximale Länge"
|
198 |
|
214 |
msgstr "Die Ordnungnummern müssen fortlaufen & durchgängig sein."
|
215 |
|
216 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
218 |
msgid "Nothing selected"
|
219 |
msgstr "Nichts ausgewählt"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
222 |
msgid "Field(s)"
|
223 |
msgstr "Feld(er)"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
226 |
msgid "deleted correctly"
|
227 |
msgstr "erfolgreich gelöscht"
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
231 |
msgid "Min size"
|
232 |
msgstr "Minimale Größe"
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
236 |
msgid "Exact size"
|
237 |
msgstr "Exakte Größe"
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
241 |
msgid "Max size"
|
242 |
msgstr "Maximale Größe"
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
245 |
msgid "Exact or Max size"
|
246 |
msgstr "Exakte oder maximale Größe"
|
247 |
|
248 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
249 |
msgid "Name not specified"
|
250 |
msgstr "Name nicht ausgefüllt"
|
251 |
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
253 |
msgid "Name cannot contains spaces"
|
254 |
msgstr "Der Name darf keine Leerstellen enthalten."
|
255 |
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
257 |
msgid "Label not specified"
|
258 |
msgstr "\"label\"/Feld-Titel nicht ausgefüllt"
|
259 |
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
261 |
msgid "not selected (with this type is necessary)"
|
262 |
msgstr "nicht ausgewählt (für diesen Typ notwendig)"
|
263 |
|
264 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
265 |
msgid "If you select"
|
266 |
msgstr "Wenn Sie folgendes auswählen"
|
267 |
|
268 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
269 |
msgid "you cannot select Min or Max"
|
270 |
msgstr "Sie dürfen \"Min\" oder \"Max\" nicht festlegen"
|
271 |
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
275 |
msgid "should be in the range of"
|
276 |
msgstr "sollte im Bereich sein (von/bis)"
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
279 |
msgid "Equal TO not specified"
|
280 |
msgstr "ENTSPRICHT (equal TO) nicht spezifiziert"
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
283 |
msgid "With checkbox type Equal TO can only be"
|
284 |
msgstr "Beim Typ <strong>checkbox</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
287 |
msgid "With radio type Equal TO can only be"
|
288 |
msgstr "Beim Typ <strong>radio</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
289 |
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
291 |
msgid "With checkbox type Value can only be"
|
292 |
msgstr "Beim Typ <strong>checkbox</strong> kann der Wert/$value nur folgendes sein"
|
293 |
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
295 |
msgid "With radio type Value can only be"
|
296 |
msgstr "Beim Typ <strong>radio</strong> kann der Wert/$value nur folgendes sein"
|
297 |
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
299 |
msgid "Field inserted correctly"
|
300 |
msgstr "Feld richtig eingefügt."
|
301 |
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
303 |
msgid "Field #"
|
304 |
msgstr "Feld #"
|
305 |
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
307 |
msgid "updated correctly"
|
308 |
msgstr "Update erfolgreich"
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
311 |
msgid "Name inserted is just in the database, change to another one"
|
312 |
msgstr "Dieser Name ist in der Datenbank bereits vorhanden, bitte wähle einen anderen"
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
316 |
msgid "Add a new Field"
|
317 |
msgstr "Ein neues Feld hinzufügen"
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
320 |
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."
|
321 |
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."
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
324 |
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'"
|
325 |
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."
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
328 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
329 |
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"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
332 |
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"
|
333 |
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."
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
336 |
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)"
|
337 |
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)."
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
340 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
341 |
msgstr "Bei <strong>registration-date</strong> gilt: <em>ENTSRPICHT(equal TO)</em> meint das Format für Datum und Zeit."
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
344 |
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"
|
345 |
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."
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
348 |
#, fuzzy
|
349 |
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"
|
350 |
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."
|
351 |
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
358 |
msgid "Name"
|
359 |
msgstr "Name"
|
360 |
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
367 |
msgid "Value"
|
368 |
msgstr "Wert/$value"
|
369 |
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
374 |
msgid "Type"
|
375 |
msgstr "Typ"
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
381 |
msgid "Label"
|
382 |
msgstr "Bezeichnung/\"label\""
|
383 |
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
388 |
msgid "Description"
|
389 |
msgstr "Beschreibung"
|
390 |
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
393 |
msgid "Rules"
|
394 |
msgstr "Regeln"
|
395 |
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
398 |
msgid "Actions"
|
399 |
msgstr "Aktion"
|
400 |
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
405 |
#, fuzzy
|
406 |
msgid "Fieldset"
|
407 |
msgstr "Felder"
|
408 |
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
411 |
msgid "Can be empty"
|
412 |
msgstr "Kann leer sein"
|
413 |
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
416 |
msgid "Check for E-mail syntax"
|
417 |
msgstr "Kontrollieren Sie bitte die E-Mail-Syntax"
|
418 |
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
421 |
msgid "Can be modified"
|
422 |
msgstr "Änderung des Feldes möglich"
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
426 |
msgid "Can be modified only if empty"
|
427 |
msgstr "Änderung des Feldes möglich wenn leer"
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
431 |
msgid "Can be modified only by admin"
|
432 |
msgstr "Änderung des Feldes nur durch Admin möglich"
|
433 |
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
436 |
msgid "Can be modified only by admin or if empty"
|
437 |
msgstr "Änderung des Feldes nur durch Admin, oder wenn leer"
|
438 |
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
441 |
msgid "Cannot be modified"
|
442 |
msgstr "Änderung des Feldes nicht möglich"
|
443 |
|
444 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
446 |
msgid "Should be equal TO"
|
447 |
msgstr "ENTSPRICHT (equal TO) folgendem"
|
448 |
|
449 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
451 |
msgid "Case sensitive"
|
452 |
msgstr "Groß-/Kleinschreibung beachten"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
456 |
msgid "Regular Expression"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
461 |
msgid "Show the field in the registration"
|
462 |
msgstr "Zeige das Feld bei der Registrierung"
|
463 |
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
466 |
msgid "Show the field in User's profile"
|
467 |
msgstr "Zeige das Feld im \"Benutzer\"profil"
|
468 |
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
471 |
#, fuzzy
|
472 |
msgid "Show the field in Users Extended section"
|
473 |
msgstr "Zeige das Feld in der \"Liste aller Benutzer\""
|
474 |
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
477 |
#, fuzzy
|
478 |
msgid "Show the field in the search engine"
|
479 |
msgstr "Zeige das Feld bei der Registrierung"
|
480 |
|
481 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
483 |
#, fuzzy
|
484 |
msgid "Show the field in the blog"
|
485 |
msgstr "Zeige das Feld bei der Registrierung"
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
489 |
#, fuzzy
|
490 |
msgid "Show the field if the role is at least:"
|
491 |
msgstr "Zeige das Feld bei der Registrierung"
|
492 |
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
495 |
msgid "Anonymous"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
500 |
msgid "User has 'view_cimy_extra_fields' capability"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
505 |
msgid "Send an email to the admin if the user changes its value"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
510 |
#, fuzzy
|
511 |
msgid "Advanced options"
|
512 |
msgstr "Aktion"
|
513 |
|
514 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
515 |
msgid "Clear"
|
516 |
msgstr "Löschen"
|
517 |
|
518 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
519 |
msgid "Invert selection"
|
520 |
msgstr "Auswahl umkehren"
|
521 |
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
523 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
524 |
msgstr "Bist Du sicher, dass du diese(s) Feld(er) und alle Daten, die von \"Benutzer\"n angelegt wurden, löschen möchtest?"
|
525 |
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
527 |
msgid "WordPress Fields"
|
528 |
msgstr "WordPress Felder"
|
529 |
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
535 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
536 |
msgid "Extra Fields"
|
537 |
msgstr "Benutzerdefinierte Felder"
|
538 |
|
539 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
540 |
msgid "None!"
|
541 |
msgstr "Keine!"
|
542 |
|
543 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
545 |
msgid "Order"
|
546 |
msgstr "Reihenfolge"
|
547 |
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
549 |
msgid "Reset"
|
550 |
msgstr "Reset"
|
551 |
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
554 |
msgid "SUCCESSFUL"
|
555 |
msgstr "ERFOLGREICH"
|
556 |
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
559 |
#, fuzzy
|
560 |
msgid "select"
|
561 |
msgstr "Löschen"
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
565 |
msgid "Users per page"
|
566 |
msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
|
567 |
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
570 |
msgid "Apply"
|
571 |
msgstr "anwenden"
|
572 |
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
574 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
578 |
msgid "Users Extended"
|
579 |
msgstr "Liste aller \"Benutzer\""
|
580 |
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
582 |
#, php-format
|
583 |
msgid "Search results for “%s”"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
587 |
#, php-format
|
588 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
592 |
msgid "Search Users"
|
593 |
msgstr "Suche \"Benutzer\""
|
594 |
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
597 |
msgid "Role"
|
598 |
msgstr "\"Benutzer\"-Rollen"
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
602 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
603 |
msgid "Website"
|
604 |
msgstr "Webseite"
|
605 |
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
608 |
msgid "Posts"
|
609 |
msgstr "Artikel"
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
612 |
msgid "View posts by this author"
|
613 |
msgstr "Zeige Artikel dieses Autors"
|
614 |
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
616 |
msgid "Super Admin"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
620 |
#, php-format
|
621 |
msgid "e-mail: %s"
|
622 |
msgstr "E-Mail: %s"
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
625 |
#, fuzzy
|
626 |
msgid "Change"
|
627 |
msgstr "Reihenfolge ändern "
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
630 |
#, fuzzy
|
631 |
msgid "Update selected users"
|
632 |
msgstr "Ausgewählte Felder löschen"
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
635 |
#, fuzzy
|
636 |
msgid "Update"
|
637 |
msgstr "Feld aktualisieren"
|
638 |
|
639 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
640 |
msgid "OK"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
644 |
msgid "Cancel"
|
645 |
msgstr ""
|
646 |
|
650 |
msgstr ""
|
651 |
|
652 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
653 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
656 |
#, fuzzy, php-format
|
657 |
msgid "Username: %s"
|
658 |
msgstr "\"Benutzer\"name"
|
672 |
msgid "[%s] Your username and password"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
676 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
677 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
678 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
679 |
#, php-format
|
680 |
msgid "%s: %s"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
684 |
#, php-format
|
685 |
msgid ""
|
686 |
"To activate your user, please click the following link:\n"
|
691 |
"\n"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
695 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
696 |
msgid "Your account is now active!"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
700 |
#, php-format
|
701 |
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>."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
705 |
msgid "An error occurred during the activation"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
709 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
710 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
711 |
#, fuzzy, php-format
|
712 |
msgid "Password: %s"
|
713 |
msgstr "Passwort"
|
714 |
|
715 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
716 |
msgid "Invalid activation key."
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
720 |
msgid "The site is already active."
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
724 |
msgid "Could not create user"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
728 |
msgid "That username is already activated."
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
732 |
msgid "That username is currently reserved but may be available in a couple of days."
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
736 |
msgid "username and email used"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
740 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
741 |
msgstr ""
|
742 |
|
755 |
msgstr "Bild aktualisieren"
|
756 |
|
757 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
758 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
759 |
msgid "Delete the picture"
|
760 |
msgstr "Bild löschen"
|
761 |
|
778 |
msgstr ""
|
779 |
|
780 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
781 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
782 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
783 |
msgid "Options"
|
784 |
msgstr "Einstellungen"
|
785 |
|
786 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
787 |
msgid "WordPress Fields table emptied"
|
788 |
msgstr "WP-Datenbank-Tabelle Zusatzfelder geleert"
|
789 |
|
790 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
791 |
msgid "WordPress Fields table deleted"
|
792 |
msgstr "WP-Datenbank-Tabelle Zusatzfelder gelöscht"
|
793 |
|
794 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
795 |
msgid "Extra Fields table emptied"
|
796 |
msgstr "Tabelle \"Benutzerdefinierte Felder\" geleert"
|
797 |
|
798 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
799 |
msgid "Extra Fields table deleted"
|
800 |
msgstr "Tabelle \"Benutzerdefinierte Felder\" gelöscht"
|
801 |
|
802 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
803 |
msgid "Users Data table emptied"
|
804 |
msgstr "Tabelle \"Benutzerdaten\" geleert"
|
805 |
|
806 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
807 |
msgid "Users Data table deleted"
|
808 |
msgstr "Tabelle \"Benutzerdaten\" gelöscht"
|
809 |
|
810 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
811 |
msgid "Options set to default values"
|
812 |
msgstr "Einstellungen auf Grundeinstellungen zurück gesetzt"
|
813 |
|
814 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
815 |
msgid "Options deleted"
|
816 |
msgstr "Einstellungen gelöscht"
|
817 |
|
818 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
819 |
msgid "Options changed"
|
820 |
msgstr "Einstellungen aktualisiert"
|
821 |
|
822 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
823 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
827 |
msgid "Support the Cimy Project"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
831 |
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!"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
836 |
msgid "Save Changes"
|
837 |
msgstr "Einstellungen aktualisieren"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
840 |
msgid "General"
|
841 |
msgstr "Allgemein"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
844 |
msgid "installed is"
|
845 |
msgstr "installiert ist"
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
848 |
msgid "OPTIONS DELETED!"
|
849 |
msgstr "EINSTELLUNGEN GELÖSCHT!"
|
850 |
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
853 |
msgid "Fix the problem"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
857 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
858 |
msgstr "VERSIONEN NICHT KOMPATIBEL! Du hast das Plugin nach dem Update nicht deaktiviert und anschließend reaktiviert. Das könnte Probleme geben..."
|
859 |
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
861 |
msgid "Picture/Avatar upload"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
865 |
msgid "is created and writable"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
869 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
873 |
#, fuzzy
|
874 |
msgid "Show all fields in the welcome email"
|
875 |
msgstr "Zeige das Feld bei der Registrierung"
|
876 |
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
878 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
882 |
msgid "Enable email confirmation"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
886 |
msgid "user that registers should confirm its email address via a link click"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
890 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
894 |
msgid "Enable form confirmation"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
898 |
msgid "a summary of the registration form will be presented to the user"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
902 |
msgid "Customize welcome email sent to the new user"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
906 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
910 |
msgid "Redirect to the source"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
914 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
918 |
msgid "No captcha"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
922 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
926 |
msgid "Public KEY"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
930 |
msgid "Private KEY"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
934 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
938 |
msgid "This captcha is probably weaker, but is easier for users"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
942 |
#, php-format
|
943 |
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>"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
947 |
msgid "Change login/registration page logo"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
951 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
955 |
msgid "Database"
|
956 |
msgstr "Datenbank"
|
957 |
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
962 |
msgid "select action"
|
963 |
msgstr "Wähle Aktion"
|
964 |
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
966 |
msgid "Default values"
|
967 |
msgstr "Werte: Grundeinstellung"
|
968 |
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
973 |
msgid "Delete"
|
974 |
msgstr "Löschen"
|
975 |
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
980 |
msgid "NOT PRESENT"
|
981 |
msgstr "NICHT VORHANDEN"
|
982 |
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
984 |
msgid "WordPress Fields table"
|
985 |
msgstr "WP-Datenbank-Tabelle"
|
986 |
|
987 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
990 |
msgid "Empty"
|
991 |
msgstr "Leer"
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
994 |
msgid "Extra Fields table"
|
995 |
msgstr "Tabelle \"Benutzerdefinierte Felder\""
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
998 |
msgid "Users Data table"
|
999 |
msgstr "Tabelle \"Benutzerdaten\""
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
1002 |
msgid "all data inserted by users in all and only extra fields"
|
1003 |
msgstr "alle von \"Benutzern\" in die Cimy-Zusatzfelder eingetragenen Daten"
|
1004 |
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
1006 |
msgid "Force tables creation"
|
1007 |
msgstr "Erzwingt die Erstellung der Datenbanktabellen"
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
1010 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1011 |
msgstr "Achtung: Mit dieser Einstellung zwingen Sie das PlugIn die Datenbanktabellen zu erstellen. Dieser Schritt wird auch bei (De-)Aktivierung des PlugIns durchgeführt."
|
1012 |
|
1013 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1014 |
msgid "User Profile"
|
1015 |
msgstr "\"Benutzer\" Profil"
|
1016 |
|
1017 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1018 |
msgid "Extra Fields section title"
|
1019 |
msgstr "Titel für \"Benutzerdefinierte Felder\""
|
1020 |
|
1021 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1022 |
msgid "Fieldset's titles, separates with comma"
|
1023 |
msgstr "Titel des Abschnitts der \"Benutzerdefinierten Felder\", abgetrennt durch Kommata (',')"
|
1024 |
|
1025 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1026 |
msgid "example: title1,title2,title3"
|
1027 |
msgstr "Beispiel: Titel1, Titel2, Titel3"
|
1028 |
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1030 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1034 |
msgid "Authors & Users Extended"
|
1035 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
1036 |
|
1037 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1038 |
msgid "Hide username field"
|
1039 |
msgstr "Feld: \"'Benutzer'-Name\" nicht anzeigen"
|
1040 |
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1042 |
msgid "Hide name field"
|
1043 |
msgstr "Feld: \"Name\" nicht anzeigen"
|
1044 |
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1046 |
msgid "Hide email field"
|
1047 |
msgstr "Feld: \"E-mail Adresse\" nicht anzeigen"
|
1048 |
|
1049 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1050 |
msgid "Hide role field"
|
1051 |
msgstr "Feld: \"Rolle\" des \"Benutzers\" nicht anzeigen"
|
1052 |
|
1053 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:671
|
1054 |
msgid "Hide website field"
|
1055 |
msgstr "Feld: \"Webseite\" nicht anzeigen"
|
1056 |
|
1057 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1058 |
msgid "Hide n. posts field"
|
1059 |
msgstr "Feld: Anzahl der von \"Benutzer(n)\" erstellten Artikel nicht anzeigen"
|
1060 |
|
1061 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
1062 |
msgid "WordPress hidden fields"
|
1063 |
msgstr "Feld: \"Wordpress hidden fields\" (verborgene Felder)"
|
1064 |
|
1065 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
1066 |
+
#, fuzzy
|
1067 |
+
msgid "Show username"
|
1068 |
+
msgstr "Zeige \"Nachnamen\""
|
1069 |
+
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
|
1071 |
+
msgid "when unchecked the email address will be used as username"
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
1075 |
msgid "Show password"
|
1076 |
msgstr "\"Passwort\" anzeigen"
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
1079 |
#, fuzzy
|
1080 |
msgid "Show confirmation password"
|
1081 |
msgstr "\"Passwort\" anzeigen"
|
1082 |
|
1083 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
1084 |
#, fuzzy
|
1085 |
msgid "Show password strength meter"
|
1086 |
msgstr "\"Passwort\" anzeigen"
|
1087 |
|
1088 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
1089 |
msgid "Show first name"
|
1090 |
msgstr "Zeige \"Vornamen\""
|
1091 |
|
1092 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
1093 |
msgid "Show last name"
|
1094 |
msgstr "Zeige \"Nachnamen\""
|
1095 |
|
1096 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
|
1097 |
msgid "Show nickname"
|
1098 |
msgstr "Zeige \"Nicknamen\"/Spitznamen"
|
1099 |
|
1100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
1101 |
msgid "Show website"
|
1102 |
msgstr "Zeige \"Webseite\""
|
1103 |
|
1104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
1105 |
msgid "Show AIM"
|
1106 |
msgstr "Zeige \"AIM\""
|
1107 |
|
1108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:721
|
1109 |
msgid "Show Yahoo IM"
|
1110 |
msgstr "Zeige \"Yahoo IM\""
|
1111 |
|
1112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
1113 |
msgid "Show Jabber / Google Talk"
|
1114 |
msgstr "Zeige \"Jabber / Google Talk\""
|
1115 |
|
1116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:729
|
1117 |
msgid "Show Biographical Info"
|
1118 |
msgstr "\"Weitere Informationen\" anzeigen"
|
1119 |
|
1135 |
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!"
|
1136 |
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."
|
1137 |
|
1138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
|
1139 |
msgid "Password"
|
1140 |
msgstr "Passwort"
|
1141 |
|
1142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:236
|
1143 |
msgid "Password confirmation"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:258
|
1147 |
msgid "First name"
|
1148 |
msgstr "Vorname"
|
1149 |
|
1150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
1151 |
msgid "Last name"
|
1152 |
msgstr "Nachname"
|
1153 |
|
1154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
1155 |
msgid "Nickname"
|
1156 |
msgstr "Spitzname"
|
1157 |
|
1158 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:346
|
1159 |
msgid "AIM"
|
1160 |
msgstr "AIM"
|
1161 |
|
1162 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:368
|
1163 |
msgid "Yahoo IM"
|
1164 |
msgstr "Yahoo IM"
|
1165 |
|
1166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:390
|
1167 |
msgid "Jabber / Google Talk"
|
1168 |
msgstr "Jabber / Google Talk"
|
1169 |
|
1170 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:412
|
1171 |
msgid "Biographical Info"
|
1172 |
msgstr "Weitere Informationen"
|
1173 |
|
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 |
"Language: \n"
|
@@ -17,146 +17,147 @@ msgstr ""
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
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/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
35 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
36 |
msgid "ERROR"
|
37 |
msgstr "ERROR"
|
38 |
|
39 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "no está en el formato correcto de e-mail. "
|
46 |
|
47 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "no puede estar vacío."
|
50 |
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "no es correcto"
|
55 |
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "SI"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NO"
|
67 |
|
68 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
69 |
msgid "should be"
|
70 |
msgstr "no debe ser"
|
71 |
|
72 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
73 |
msgid "should be an image."
|
74 |
msgstr "no debe ser una imagen."
|
75 |
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "no puede tener un tamaño menor a"
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "no puede tener una longitud menor a"
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "no puede tener tamaño diferente a"
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "no puede tener longitud diferente a"
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "no puede tener tamaño mayor a"
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "no puede tener longitud mayor a"
|
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_register.php:
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
112 |
msgid "Username"
|
113 |
msgstr "Nombre de usuario"
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
msgid "E-mail"
|
119 |
msgstr "Correo electrónico"
|
120 |
|
121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
#, fuzzy
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
134 |
msgid "Strength indicator"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
138 |
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 ! \" ? $ % ^ & )."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
142 |
#, fuzzy
|
143 |
msgid "Change image"
|
144 |
msgstr "Cambiar orden"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
147 |
msgid "Insert the code:"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
@@ -181,17 +182,17 @@ msgid "Change order"
|
|
181 |
msgstr "Cambiar orden"
|
182 |
|
183 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
185 |
msgid "Min length"
|
186 |
msgstr "Longitud mínima"
|
187 |
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
msgid "Exact length"
|
191 |
msgstr "Longitud exacta"
|
192 |
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
195 |
msgid "Max length"
|
196 |
msgstr "Longitud máxima"
|
197 |
|
@@ -213,362 +214,362 @@ msgid "You cannot give an order that misses some numbers"
|
|
213 |
msgstr "No se puede poner un orden que se salte algunos números"
|
214 |
|
215 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
216 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
217 |
msgid "Nothing selected"
|
218 |
msgstr "Nada seleccionado"
|
219 |
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Field(s)"
|
222 |
msgstr "Campo(s)"
|
223 |
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
225 |
msgid "deleted correctly"
|
226 |
msgstr "borrado correctamente"
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
230 |
msgid "Min size"
|
231 |
msgstr "Tamaño mínimo"
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
234 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
235 |
msgid "Exact size"
|
236 |
msgstr "Tamaño exacto"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
240 |
msgid "Max size"
|
241 |
msgstr "Tamaño máximo"
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
244 |
msgid "Exact or Max size"
|
245 |
msgstr "Tamaño máximo o exacto"
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Name not specified"
|
249 |
msgstr "Nombre no especificado"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Name cannot contains spaces"
|
253 |
msgstr "El nombre no puede contener espacios"
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "Label not specified"
|
257 |
msgstr "Etiqueta no especificada"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
msgid "not selected (with this type is necessary)"
|
261 |
msgstr "no seleccionado (necesario para este tipo)"
|
262 |
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
264 |
msgid "If you select"
|
265 |
msgstr "Si usted selecciona"
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
268 |
msgid "you cannot select Min or Max"
|
269 |
msgstr "usted no puede seleccionar mínimo o máximo"
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
274 |
msgid "should be in the range of"
|
275 |
msgstr "debe estar en el rango de"
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
278 |
msgid "Equal TO not specified"
|
279 |
msgstr "Igual a no especificado"
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
282 |
msgid "With checkbox type Equal TO can only be"
|
283 |
msgstr "Con tipo casilla de verificación \"igual a\" solo puede ser"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
286 |
msgid "With radio type Equal TO can only be"
|
287 |
msgstr "Con tipo radio \"igual a\" solo puede ser"
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
290 |
msgid "With checkbox type Value can only be"
|
291 |
msgstr "Con tipo casilla de verificación \"Valor\" solo puede ser"
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
294 |
msgid "With radio type Value can only be"
|
295 |
msgstr "Con tipo radio \"Valor\" solo puede ser"
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
298 |
msgid "Field inserted correctly"
|
299 |
msgstr "Campo insertado correctamente"
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
302 |
msgid "Field #"
|
303 |
msgstr "Campo #"
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
306 |
msgid "updated correctly"
|
307 |
msgstr "Actualizado correctamente"
|
308 |
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Name inserted is just in the database, change to another one"
|
311 |
msgstr "El nombre insertado"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
315 |
msgid "Add a new Field"
|
316 |
msgstr "Agregar un nuevo Campo"
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
319 |
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."
|
320 |
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."
|
321 |
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
323 |
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'"
|
324 |
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"
|
325 |
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
327 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
328 |
msgstr "Con <strong>drop-down</strong>: debe agregar todas las opciones en \"etiqueta\" por ejemplo: etiqueta/elemento1,elemento2,elemento3"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
331 |
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"
|
332 |
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"
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
335 |
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)"
|
336 |
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)"
|
337 |
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
339 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
340 |
msgstr "Con <strong>registration-date</strong>: <em>igual a</em> significa el formato de fecha y hora"
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
343 |
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"
|
344 |
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"
|
345 |
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
347 |
#, fuzzy
|
348 |
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"
|
349 |
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"
|
350 |
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
msgid "Name"
|
358 |
msgstr "Nombre"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
366 |
msgid "Value"
|
367 |
msgstr "Valor"
|
368 |
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
373 |
msgid "Type"
|
374 |
msgstr "Tipo"
|
375 |
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
378 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
msgid "Label"
|
381 |
msgstr "Etiqueta"
|
382 |
|
383 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
387 |
msgid "Description"
|
388 |
msgstr "Descripción"
|
389 |
|
390 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
392 |
msgid "Rules"
|
393 |
msgstr "Reglas"
|
394 |
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
msgid "Actions"
|
398 |
msgstr "Acciones"
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
msgid "Fieldset"
|
405 |
msgstr "Grupo de campos"
|
406 |
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
409 |
msgid "Can be empty"
|
410 |
msgstr "Puede estar vacío"
|
411 |
|
412 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
414 |
msgid "Check for E-mail syntax"
|
415 |
msgstr "Checar formato de e-mail"
|
416 |
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
418 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
419 |
msgid "Can be modified"
|
420 |
msgstr "Puede ser modificado"
|
421 |
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
424 |
msgid "Can be modified only if empty"
|
425 |
msgstr "Puede ser modificado solo si está vacío"
|
426 |
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
428 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
429 |
msgid "Can be modified only by admin"
|
430 |
msgstr "Puede ser modificado solo por el administrador"
|
431 |
|
432 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
433 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
434 |
msgid "Can be modified only by admin or if empty"
|
435 |
msgstr "Puede ser modificado solo por el administrador o si está vacío"
|
436 |
|
437 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
439 |
msgid "Cannot be modified"
|
440 |
msgstr "No puede ser modificado"
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
444 |
msgid "Should be equal TO"
|
445 |
msgstr "Debe ser igual a"
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
449 |
msgid "Case sensitive"
|
450 |
msgstr "Distinción mayúsculas y minúsculas"
|
451 |
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
454 |
msgid "Regular Expression"
|
455 |
msgstr "Expresión regular"
|
456 |
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
459 |
msgid "Show the field in the registration"
|
460 |
msgstr "Mostrar el campo en el registro"
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
464 |
msgid "Show the field in User's profile"
|
465 |
msgstr "Mostrar el campo en el perfil del usuario"
|
466 |
|
467 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
469 |
#, fuzzy
|
470 |
msgid "Show the field in Users Extended section"
|
471 |
msgstr "Mostrar el campo en el menú extendido de A&U"
|
472 |
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
474 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
475 |
#, fuzzy
|
476 |
msgid "Show the field in the search engine"
|
477 |
msgstr "Mostrar el campo en el registro"
|
478 |
|
479 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
480 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
481 |
#, fuzzy
|
482 |
msgid "Show the field in the blog"
|
483 |
msgstr "Mostrar el campo en el registro"
|
484 |
|
485 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
486 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
487 |
#, fuzzy
|
488 |
msgid "Show the field if the role is at least:"
|
489 |
msgstr "Mostrar el campo en el registro"
|
490 |
|
491 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
493 |
msgid "Anonymous"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
498 |
msgid "User has 'view_cimy_extra_fields' capability"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
503 |
msgid "Send an email to the admin if the user changes its value"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
508 |
#, fuzzy
|
509 |
msgid "Advanced options"
|
510 |
msgstr "Acciones"
|
511 |
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
513 |
msgid "Clear"
|
514 |
msgstr "Vaciar"
|
515 |
|
516 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
517 |
msgid "Invert selection"
|
518 |
msgstr "Invertir Selección"
|
519 |
|
520 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
521 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
522 |
msgstr "&lquot;Está seguro de que quiere borrar los campos y todos los datos insertados por los usuarios?"
|
523 |
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
525 |
msgid "WordPress Fields"
|
526 |
msgstr "Campos WordPress"
|
527 |
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
531 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
532 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
534 |
msgid "Extra Fields"
|
535 |
msgstr "Campos Adicionales"
|
536 |
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
538 |
msgid "None!"
|
539 |
msgstr "Ninguno!"
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
542 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
543 |
msgid "Order"
|
544 |
msgstr "Orden"
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
547 |
msgid "Reset"
|
548 |
msgstr "Reestablecer"
|
549 |
|
550 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
552 |
msgid "SUCCESSFUL"
|
553 |
msgstr "EXITOSO"
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
557 |
#, fuzzy
|
558 |
msgid "select"
|
559 |
msgstr "Borrar"
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
563 |
msgid "Users per page"
|
564 |
msgstr "Usuarios por página"
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
567 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
568 |
msgid "Apply"
|
569 |
msgstr "Aplicar"
|
570 |
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
572 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
573 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
574 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
@@ -576,69 +577,69 @@ msgstr "Aplicar"
|
|
576 |
msgid "Users Extended"
|
577 |
msgstr "Usuarios extendido"
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
580 |
#, php-format
|
581 |
msgid "Search results for “%s”"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
585 |
#, php-format
|
586 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
590 |
msgid "Search Users"
|
591 |
msgstr "Buscar Usuarios"
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
595 |
msgid "Role"
|
596 |
msgstr "Rol"
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
601 |
msgid "Website"
|
602 |
msgstr "Sitio Web"
|
603 |
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
605 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
606 |
msgid "Posts"
|
607 |
msgstr "Entradas"
|
608 |
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
610 |
msgid "View posts by this author"
|
611 |
msgstr "Ver entradas de este autor"
|
612 |
|
613 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
614 |
msgid "Super Admin"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
618 |
#, php-format
|
619 |
msgid "e-mail: %s"
|
620 |
msgstr "correo electrónico: %s"
|
621 |
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
623 |
#, fuzzy
|
624 |
msgid "Change"
|
625 |
msgstr "Cambiar orden"
|
626 |
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
628 |
#, fuzzy
|
629 |
msgid "Update selected users"
|
630 |
msgstr "Borrar campos seleccionados"
|
631 |
|
632 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
633 |
#, fuzzy
|
634 |
msgid "Update"
|
635 |
msgstr "Actualizar campo"
|
636 |
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
638 |
msgid "OK"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
642 |
msgid "Cancel"
|
643 |
msgstr ""
|
644 |
|
@@ -648,9 +649,9 @@ msgid "New user registration on your site %s:"
|
|
648 |
msgstr ""
|
649 |
|
650 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
651 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
652 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
653 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
654 |
#, fuzzy, php-format
|
655 |
msgid "Username: %s"
|
656 |
msgstr "Nombre de usuario"
|
@@ -670,15 +671,15 @@ msgstr ""
|
|
670 |
msgid "[%s] Your username and password"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
674 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
675 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
676 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
677 |
#, php-format
|
678 |
msgid "%s: %s"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
682 |
#, php-format
|
683 |
msgid ""
|
684 |
"To activate your user, please click the following link:\n"
|
@@ -689,52 +690,52 @@ msgid ""
|
|
689 |
"\n"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
693 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
694 |
msgid "Your account is now active!"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
698 |
#, php-format
|
699 |
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>."
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
703 |
msgid "An error occurred during the activation"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
707 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
708 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
709 |
#, fuzzy, php-format
|
710 |
msgid "Password: %s"
|
711 |
msgstr "Contraseña"
|
712 |
|
713 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
714 |
msgid "Invalid activation key."
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
718 |
msgid "The site is already active."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
722 |
msgid "Could not create user"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
726 |
msgid "That username is already activated."
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
730 |
msgid "That username is currently reserved but may be available in a couple of days."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
734 |
msgid "username and email used"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
738 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
739 |
msgstr ""
|
740 |
|
@@ -753,7 +754,7 @@ msgid "Update the file"
|
|
753 |
msgstr "Actualizar la imagen"
|
754 |
|
755 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
756 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
757 |
msgid "Delete the picture"
|
758 |
msgstr "Borrar la imagen"
|
759 |
|
@@ -776,333 +777,342 @@ msgid "%s (%s) has changed one or more fields"
|
|
776 |
msgstr ""
|
777 |
|
778 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
779 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
780 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
781 |
msgid "Options"
|
782 |
msgstr "Opciones"
|
783 |
|
784 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
785 |
msgid "WordPress Fields table emptied"
|
786 |
msgstr "Tabla de Campos WordPress vaciada"
|
787 |
|
788 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
789 |
msgid "WordPress Fields table deleted"
|
790 |
msgstr "Tabla de Campos WordPress borrada"
|
791 |
|
792 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
793 |
msgid "Extra Fields table emptied"
|
794 |
msgstr "Tabla de Campos Adicionales vaciada"
|
795 |
|
796 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
797 |
msgid "Extra Fields table deleted"
|
798 |
msgstr "Tabla de Campos Adicionales borrada"
|
799 |
|
800 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
801 |
msgid "Users Data table emptied"
|
802 |
msgstr "Tabla de Datos de Usuarios vaciada"
|
803 |
|
804 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
805 |
msgid "Users Data table deleted"
|
806 |
msgstr "Tabla de Datos de Usuarios borrada"
|
807 |
|
808 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
809 |
msgid "Options set to default values"
|
810 |
msgstr "Opciones asignadas los valores por defecto"
|
811 |
|
812 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
813 |
msgid "Options deleted"
|
814 |
msgstr "Opciones borradas"
|
815 |
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
817 |
msgid "Options changed"
|
818 |
msgstr "Opciones cambiadas"
|
819 |
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
821 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
822 |
msgstr "Esta operación creará/actualizará todas las opciones/tablas faltantes ¿Desea continuar?"
|
823 |
|
824 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
825 |
msgid "Support the Cimy Project"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
829 |
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!"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
833 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
834 |
msgid "Save Changes"
|
835 |
msgstr "Salvar cambios"
|
836 |
|
837 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
838 |
msgid "General"
|
839 |
msgstr "General"
|
840 |
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
842 |
msgid "installed is"
|
843 |
msgstr "instalada es"
|
844 |
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
846 |
msgid "OPTIONS DELETED!"
|
847 |
msgstr "OPCIONES BORRADAS!"
|
848 |
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
850 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
851 |
msgid "Fix the problem"
|
852 |
msgstr "Arreglar el problema"
|
853 |
|
854 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
855 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
856 |
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..."
|
857 |
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
859 |
msgid "Picture/Avatar upload"
|
860 |
msgstr "Subida de foto/avatar"
|
861 |
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
863 |
msgid "is created and writable"
|
864 |
msgstr "existe y tiene permisos de escritura"
|
865 |
|
866 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
867 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
868 |
msgstr "no está creado o el servidor web no tiene permisos de escritura"
|
869 |
|
870 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
871 |
#, fuzzy
|
872 |
msgid "Show all fields in the welcome email"
|
873 |
msgstr "Mostrar el campo en el registro"
|
874 |
|
875 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
876 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
880 |
msgid "Enable email confirmation"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
884 |
msgid "user that registers should confirm its email address via a link click"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
888 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
892 |
msgid "Enable form confirmation"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
896 |
msgid "a summary of the registration form will be presented to the user"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
900 |
msgid "Customize welcome email sent to the new user"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
904 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
908 |
msgid "Redirect to the source"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
912 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
916 |
msgid "No captcha"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
920 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
924 |
msgid "Public KEY"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
928 |
msgid "Private KEY"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
932 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
936 |
msgid "This captcha is probably weaker, but is easier for users"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
940 |
#, php-format
|
941 |
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>"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
945 |
msgid "Change login/registration page logo"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
949 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
953 |
msgid "Database"
|
954 |
msgstr "Base de Datos"
|
955 |
|
956 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
960 |
msgid "select action"
|
961 |
msgstr "seleccione acción"
|
962 |
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
964 |
msgid "Default values"
|
965 |
msgstr "Valores por defecto"
|
966 |
|
967 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
970 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
971 |
msgid "Delete"
|
972 |
msgstr "Borrar"
|
973 |
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
978 |
msgid "NOT PRESENT"
|
979 |
msgstr "NO EXISTE"
|
980 |
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
982 |
msgid "WordPress Fields table"
|
983 |
msgstr "tabla de Campos WordPress"
|
984 |
|
985 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
988 |
msgid "Empty"
|
989 |
msgstr "Vacío"
|
990 |
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
992 |
msgid "Extra Fields table"
|
993 |
msgstr "Tabla de campos adicionales"
|
994 |
|
995 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
996 |
msgid "Users Data table"
|
997 |
msgstr "Tabla de datos del usuario"
|
998 |
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1000 |
msgid "all data inserted by users in all and only extra fields"
|
1001 |
msgstr "todos las datos insertados por los usuarios en todos (y unicamente) los campos adicionales"
|
1002 |
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1004 |
msgid "Force tables creation"
|
1005 |
msgstr "Forzar la creación de tablas"
|
1006 |
|
1007 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1008 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1009 |
msgstr "Equivalente a desactivar y activar el plug-in. No se realizará otra operación."
|
1010 |
|
1011 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1012 |
msgid "User Profile"
|
1013 |
msgstr "Perfil de usuario"
|
1014 |
|
1015 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1016 |
msgid "Extra Fields section title"
|
1017 |
msgstr "Título de la sección de campos adicionales"
|
1018 |
|
1019 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1020 |
msgid "Fieldset's titles, separates with comma"
|
1021 |
msgstr "Títulos de los grupos de campo, separar con coma"
|
1022 |
|
1023 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1024 |
msgid "example: title1,title2,title3"
|
1025 |
msgstr "ejemplo: título 1, título 2, título 3"
|
1026 |
|
1027 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1028 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1029 |
msgstr "<strong>nota:</strong> si cambia el orden o quita grupos de campos posiblemente deba reasignar todos los campos adicionales a su grupo correspondiente"
|
1030 |
|
1031 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1032 |
msgid "Authors & Users Extended"
|
1033 |
msgstr "Autores & Usuarios Extendido"
|
1034 |
|
1035 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1036 |
msgid "Hide username field"
|
1037 |
msgstr "Esconder campo de nombre de usuario"
|
1038 |
|
1039 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1040 |
msgid "Hide name field"
|
1041 |
msgstr "Esconder campo de nombre"
|
1042 |
|
1043 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1044 |
msgid "Hide email field"
|
1045 |
msgstr "Esconder campo de correo electrónico"
|
1046 |
|
1047 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1048 |
msgid "Hide role field"
|
1049 |
msgstr "Esconder campo de rol"
|
1050 |
|
1051 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1052 |
msgid "Hide website field"
|
1053 |
msgstr "Esconder el campo de sitio web"
|
1054 |
|
1055 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1056 |
msgid "Hide n. posts field"
|
1057 |
msgstr "Esconder el campo de n. entradas"
|
1058 |
|
1059 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1060 |
msgid "WordPress hidden fields"
|
1061 |
msgstr "Campos escondidos WordPress"
|
1062 |
|
1063 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1064 |
msgid "Show password"
|
1065 |
msgstr "Mostrar contraseña"
|
1066 |
|
1067 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1068 |
#, fuzzy
|
1069 |
msgid "Show confirmation password"
|
1070 |
msgstr "Mostrar contraseña"
|
1071 |
|
1072 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1073 |
#, fuzzy
|
1074 |
msgid "Show password strength meter"
|
1075 |
msgstr "Mostrar contraseña"
|
1076 |
|
1077 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1078 |
msgid "Show first name"
|
1079 |
msgstr "Mostrar primer nombre"
|
1080 |
|
1081 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1082 |
msgid "Show last name"
|
1083 |
msgstr "Mostrar apellido"
|
1084 |
|
1085 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1086 |
msgid "Show nickname"
|
1087 |
msgstr "Mostrar sobrenombre"
|
1088 |
|
1089 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1090 |
msgid "Show website"
|
1091 |
msgstr "Mostrar sitio web"
|
1092 |
|
1093 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1094 |
msgid "Show AIM"
|
1095 |
msgstr "Mostrar AIM"
|
1096 |
|
1097 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1098 |
msgid "Show Yahoo IM"
|
1099 |
msgstr "Mostrar mensajero Yahoo"
|
1100 |
|
1101 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1102 |
msgid "Show Jabber / Google Talk"
|
1103 |
msgstr "Mostrar Jabber / Google Talk"
|
1104 |
|
1105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1106 |
msgid "Show Biographical Info"
|
1107 |
msgstr "Mostrar información biográfica"
|
1108 |
|
@@ -1124,39 +1134,39 @@ msgstr "El archivo '%s' no es una imagen."
|
|
1124 |
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!"
|
1125 |
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!"
|
1126 |
|
1127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1128 |
msgid "Password"
|
1129 |
msgstr "Contraseña"
|
1130 |
|
1131 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1132 |
msgid "Password confirmation"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1136 |
msgid "First name"
|
1137 |
msgstr "Primer nombre"
|
1138 |
|
1139 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1140 |
msgid "Last name"
|
1141 |
msgstr "Apellido"
|
1142 |
|
1143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1144 |
msgid "Nickname"
|
1145 |
msgstr "Sobrenombre"
|
1146 |
|
1147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1148 |
msgid "AIM"
|
1149 |
msgstr "AIM"
|
1150 |
|
1151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1152 |
msgid "Yahoo IM"
|
1153 |
msgstr "Yahoo IM"
|
1154 |
|
1155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1156 |
msgid "Jabber / Google Talk"
|
1157 |
msgstr "Jabber / Google Talk"
|
1158 |
|
1159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1160 |
msgid "Biographical Info"
|
1161 |
msgstr "Información Biográfica"
|
1162 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:52-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:52-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
|
|
|
|
|
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
36 |
msgid "ERROR"
|
37 |
msgstr "ERROR"
|
38 |
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "no está en el formato correcto de e-mail. "
|
46 |
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "no puede estar vacío."
|
50 |
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
52 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "no es correcto"
|
55 |
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
59 |
msgid "YES"
|
60 |
msgstr "SI"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
65 |
msgid "NO"
|
66 |
msgstr "NO"
|
67 |
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
69 |
msgid "should be"
|
70 |
msgstr "no debe ser"
|
71 |
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
73 |
msgid "should be an image."
|
74 |
msgstr "no debe ser una imagen."
|
75 |
|
76 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "no puede tener un tamaño menor a"
|
83 |
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "no puede tener una longitud menor a"
|
87 |
|
88 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "no puede tener tamaño diferente a"
|
91 |
|
92 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "no puede tener longitud diferente a"
|
95 |
|
96 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "no puede tener tamaño mayor a"
|
99 |
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "no puede tener longitud mayor a"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Nombre de usuario"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
119 |
msgid "E-mail"
|
120 |
msgstr "Correo electrónico"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1007
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Cambiar orden"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1313
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
182 |
msgstr "Cambiar orden"
|
183 |
|
184 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
|
186 |
msgid "Min length"
|
187 |
msgstr "Longitud mínima"
|
188 |
|
189 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
191 |
msgid "Exact length"
|
192 |
msgstr "Longitud exacta"
|
193 |
|
194 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
196 |
msgid "Max length"
|
197 |
msgstr "Longitud máxima"
|
198 |
|
214 |
msgstr "No se puede poner un orden que se salte algunos números"
|
215 |
|
216 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
218 |
msgid "Nothing selected"
|
219 |
msgstr "Nada seleccionado"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
222 |
msgid "Field(s)"
|
223 |
msgstr "Campo(s)"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
226 |
msgid "deleted correctly"
|
227 |
msgstr "borrado correctamente"
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
231 |
msgid "Min size"
|
232 |
msgstr "Tamaño mínimo"
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
236 |
msgid "Exact size"
|
237 |
msgstr "Tamaño exacto"
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
241 |
msgid "Max size"
|
242 |
msgstr "Tamaño máximo"
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
245 |
msgid "Exact or Max size"
|
246 |
msgstr "Tamaño máximo o exacto"
|
247 |
|
248 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
249 |
msgid "Name not specified"
|
250 |
msgstr "Nombre no especificado"
|
251 |
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
253 |
msgid "Name cannot contains spaces"
|
254 |
msgstr "El nombre no puede contener espacios"
|
255 |
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
257 |
msgid "Label not specified"
|
258 |
msgstr "Etiqueta no especificada"
|
259 |
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
261 |
msgid "not selected (with this type is necessary)"
|
262 |
msgstr "no seleccionado (necesario para este tipo)"
|
263 |
|
264 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
265 |
msgid "If you select"
|
266 |
msgstr "Si usted selecciona"
|
267 |
|
268 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
269 |
msgid "you cannot select Min or Max"
|
270 |
msgstr "usted no puede seleccionar mínimo o máximo"
|
271 |
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
275 |
msgid "should be in the range of"
|
276 |
msgstr "debe estar en el rango de"
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
279 |
msgid "Equal TO not specified"
|
280 |
msgstr "Igual a no especificado"
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
283 |
msgid "With checkbox type Equal TO can only be"
|
284 |
msgstr "Con tipo casilla de verificación \"igual a\" solo puede ser"
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
287 |
msgid "With radio type Equal TO can only be"
|
288 |
msgstr "Con tipo radio \"igual a\" solo puede ser"
|
289 |
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
291 |
msgid "With checkbox type Value can only be"
|
292 |
msgstr "Con tipo casilla de verificación \"Valor\" solo puede ser"
|
293 |
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
295 |
msgid "With radio type Value can only be"
|
296 |
msgstr "Con tipo radio \"Valor\" solo puede ser"
|
297 |
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
299 |
msgid "Field inserted correctly"
|
300 |
msgstr "Campo insertado correctamente"
|
301 |
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
303 |
msgid "Field #"
|
304 |
msgstr "Campo #"
|
305 |
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
307 |
msgid "updated correctly"
|
308 |
msgstr "Actualizado correctamente"
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
311 |
msgid "Name inserted is just in the database, change to another one"
|
312 |
msgstr "El nombre insertado"
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
316 |
msgid "Add a new Field"
|
317 |
msgstr "Agregar un nuevo Campo"
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
320 |
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."
|
321 |
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."
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
324 |
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'"
|
325 |
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"
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
328 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
329 |
msgstr "Con <strong>drop-down</strong>: debe agregar todas las opciones en \"etiqueta\" por ejemplo: etiqueta/elemento1,elemento2,elemento3"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
332 |
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"
|
333 |
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"
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
336 |
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)"
|
337 |
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)"
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
340 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
341 |
msgstr "Con <strong>registration-date</strong>: <em>igual a</em> significa el formato de fecha y hora"
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
344 |
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"
|
345 |
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"
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
348 |
#, fuzzy
|
349 |
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"
|
350 |
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"
|
351 |
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
358 |
msgid "Name"
|
359 |
msgstr "Nombre"
|
360 |
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
367 |
msgid "Value"
|
368 |
msgstr "Valor"
|
369 |
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
374 |
msgid "Type"
|
375 |
msgstr "Tipo"
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
381 |
msgid "Label"
|
382 |
msgstr "Etiqueta"
|
383 |
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
388 |
msgid "Description"
|
389 |
msgstr "Descripción"
|
390 |
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
393 |
msgid "Rules"
|
394 |
msgstr "Reglas"
|
395 |
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
398 |
msgid "Actions"
|
399 |
msgstr "Acciones"
|
400 |
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
405 |
msgid "Fieldset"
|
406 |
msgstr "Grupo de campos"
|
407 |
|
408 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
410 |
msgid "Can be empty"
|
411 |
msgstr "Puede estar vacío"
|
412 |
|
413 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
415 |
msgid "Check for E-mail syntax"
|
416 |
msgstr "Checar formato de e-mail"
|
417 |
|
418 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
420 |
msgid "Can be modified"
|
421 |
msgstr "Puede ser modificado"
|
422 |
|
423 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
425 |
msgid "Can be modified only if empty"
|
426 |
msgstr "Puede ser modificado solo si está vacío"
|
427 |
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
430 |
msgid "Can be modified only by admin"
|
431 |
msgstr "Puede ser modificado solo por el administrador"
|
432 |
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
435 |
msgid "Can be modified only by admin or if empty"
|
436 |
msgstr "Puede ser modificado solo por el administrador o si está vacío"
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
440 |
msgid "Cannot be modified"
|
441 |
msgstr "No puede ser modificado"
|
442 |
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
444 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
445 |
msgid "Should be equal TO"
|
446 |
msgstr "Debe ser igual a"
|
447 |
|
448 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
449 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
450 |
msgid "Case sensitive"
|
451 |
msgstr "Distinción mayúsculas y minúsculas"
|
452 |
|
453 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
455 |
msgid "Regular Expression"
|
456 |
msgstr "Expresión regular"
|
457 |
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
460 |
msgid "Show the field in the registration"
|
461 |
msgstr "Mostrar el campo en el registro"
|
462 |
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
465 |
msgid "Show the field in User's profile"
|
466 |
msgstr "Mostrar el campo en el perfil del usuario"
|
467 |
|
468 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
470 |
#, fuzzy
|
471 |
msgid "Show the field in Users Extended section"
|
472 |
msgstr "Mostrar el campo en el menú extendido de A&U"
|
473 |
|
474 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
476 |
#, fuzzy
|
477 |
msgid "Show the field in the search engine"
|
478 |
msgstr "Mostrar el campo en el registro"
|
479 |
|
480 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
481 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
482 |
#, fuzzy
|
483 |
msgid "Show the field in the blog"
|
484 |
msgstr "Mostrar el campo en el registro"
|
485 |
|
486 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
488 |
#, fuzzy
|
489 |
msgid "Show the field if the role is at least:"
|
490 |
msgstr "Mostrar el campo en el registro"
|
491 |
|
492 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
494 |
msgid "Anonymous"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
499 |
msgid "User has 'view_cimy_extra_fields' capability"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
504 |
msgid "Send an email to the admin if the user changes its value"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
509 |
#, fuzzy
|
510 |
msgid "Advanced options"
|
511 |
msgstr "Acciones"
|
512 |
|
513 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
514 |
msgid "Clear"
|
515 |
msgstr "Vaciar"
|
516 |
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
518 |
msgid "Invert selection"
|
519 |
msgstr "Invertir Selección"
|
520 |
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
522 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
523 |
msgstr "&lquot;Está seguro de que quiere borrar los campos y todos los datos insertados por los usuarios?"
|
524 |
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
526 |
msgid "WordPress Fields"
|
527 |
msgstr "Campos WordPress"
|
528 |
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
533 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
535 |
msgid "Extra Fields"
|
536 |
msgstr "Campos Adicionales"
|
537 |
|
538 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
539 |
msgid "None!"
|
540 |
msgstr "Ninguno!"
|
541 |
|
542 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
543 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
544 |
msgid "Order"
|
545 |
msgstr "Orden"
|
546 |
|
547 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
548 |
msgid "Reset"
|
549 |
msgstr "Reestablecer"
|
550 |
|
551 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
553 |
msgid "SUCCESSFUL"
|
554 |
msgstr "EXITOSO"
|
555 |
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
558 |
#, fuzzy
|
559 |
msgid "select"
|
560 |
msgstr "Borrar"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
564 |
msgid "Users per page"
|
565 |
msgstr "Usuarios por página"
|
566 |
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
569 |
msgid "Apply"
|
570 |
msgstr "Aplicar"
|
571 |
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
573 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
574 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
577 |
msgid "Users Extended"
|
578 |
msgstr "Usuarios extendido"
|
579 |
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
581 |
#, php-format
|
582 |
msgid "Search results for “%s”"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
586 |
#, php-format
|
587 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
591 |
msgid "Search Users"
|
592 |
msgstr "Buscar Usuarios"
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
596 |
msgid "Role"
|
597 |
msgstr "Rol"
|
598 |
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
602 |
msgid "Website"
|
603 |
msgstr "Sitio Web"
|
604 |
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
607 |
msgid "Posts"
|
608 |
msgstr "Entradas"
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
611 |
msgid "View posts by this author"
|
612 |
msgstr "Ver entradas de este autor"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
615 |
msgid "Super Admin"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
619 |
#, php-format
|
620 |
msgid "e-mail: %s"
|
621 |
msgstr "correo electrónico: %s"
|
622 |
|
623 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
624 |
#, fuzzy
|
625 |
msgid "Change"
|
626 |
msgstr "Cambiar orden"
|
627 |
|
628 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
629 |
#, fuzzy
|
630 |
msgid "Update selected users"
|
631 |
msgstr "Borrar campos seleccionados"
|
632 |
|
633 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
634 |
#, fuzzy
|
635 |
msgid "Update"
|
636 |
msgstr "Actualizar campo"
|
637 |
|
638 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
639 |
msgid "OK"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
643 |
msgid "Cancel"
|
644 |
msgstr ""
|
645 |
|
649 |
msgstr ""
|
650 |
|
651 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
652 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
653 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
654 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
655 |
#, fuzzy, php-format
|
656 |
msgid "Username: %s"
|
657 |
msgstr "Nombre de usuario"
|
671 |
msgid "[%s] Your username and password"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
675 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
676 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
677 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
678 |
#, php-format
|
679 |
msgid "%s: %s"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
683 |
#, php-format
|
684 |
msgid ""
|
685 |
"To activate your user, please click the following link:\n"
|
690 |
"\n"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
694 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
695 |
msgid "Your account is now active!"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
699 |
#, php-format
|
700 |
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>."
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
704 |
msgid "An error occurred during the activation"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
708 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
709 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
710 |
#, fuzzy, php-format
|
711 |
msgid "Password: %s"
|
712 |
msgstr "Contraseña"
|
713 |
|
714 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
715 |
msgid "Invalid activation key."
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
719 |
msgid "The site is already active."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
723 |
msgid "Could not create user"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
727 |
msgid "That username is already activated."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
731 |
msgid "That username is currently reserved but may be available in a couple of days."
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
735 |
msgid "username and email used"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
739 |
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."
|
740 |
msgstr ""
|
741 |
|
754 |
msgstr "Actualizar la imagen"
|
755 |
|
756 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
758 |
msgid "Delete the picture"
|
759 |
msgstr "Borrar la imagen"
|
760 |
|
777 |
msgstr ""
|
778 |
|
779 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
781 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
782 |
msgid "Options"
|
783 |
msgstr "Opciones"
|
784 |
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
786 |
msgid "WordPress Fields table emptied"
|
787 |
msgstr "Tabla de Campos WordPress vaciada"
|
788 |
|
789 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
790 |
msgid "WordPress Fields table deleted"
|
791 |
msgstr "Tabla de Campos WordPress borrada"
|
792 |
|
793 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
794 |
msgid "Extra Fields table emptied"
|
795 |
msgstr "Tabla de Campos Adicionales vaciada"
|
796 |
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
798 |
msgid "Extra Fields table deleted"
|
799 |
msgstr "Tabla de Campos Adicionales borrada"
|
800 |
|
801 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
802 |
msgid "Users Data table emptied"
|
803 |
msgstr "Tabla de Datos de Usuarios vaciada"
|
804 |
|
805 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
806 |
msgid "Users Data table deleted"
|
807 |
msgstr "Tabla de Datos de Usuarios borrada"
|
808 |
|
809 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
810 |
msgid "Options set to default values"
|
811 |
msgstr "Opciones asignadas los valores por defecto"
|
812 |
|
813 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
814 |
msgid "Options deleted"
|
815 |
msgstr "Opciones borradas"
|
816 |
|
817 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
818 |
msgid "Options changed"
|
819 |
msgstr "Opciones cambiadas"
|
820 |
|
821 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
822 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
823 |
msgstr "Esta operación creará/actualizará todas las opciones/tablas faltantes ¿Desea continuar?"
|
824 |
|
825 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
826 |
msgid "Support the Cimy Project"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
830 |
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!"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
834 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
835 |
msgid "Save Changes"
|
836 |
msgstr "Salvar cambios"
|
837 |
|
838 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
839 |
msgid "General"
|
840 |
msgstr "General"
|
841 |
|
842 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
843 |
msgid "installed is"
|
844 |
msgstr "instalada es"
|
845 |
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
847 |
msgid "OPTIONS DELETED!"
|
848 |
msgstr "OPCIONES BORRADAS!"
|
849 |
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
852 |
msgid "Fix the problem"
|
853 |
msgstr "Arreglar el problema"
|
854 |
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
856 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
857 |
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..."
|
858 |
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
860 |
msgid "Picture/Avatar upload"
|
861 |
msgstr "Subida de foto/avatar"
|
862 |
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
864 |
msgid "is created and writable"
|
865 |
msgstr "existe y tiene permisos de escritura"
|
866 |
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
868 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
869 |
msgstr "no está creado o el servidor web no tiene permisos de escritura"
|
870 |
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
872 |
#, fuzzy
|
873 |
msgid "Show all fields in the welcome email"
|
874 |
msgstr "Mostrar el campo en el registro"
|
875 |
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
877 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
881 |
msgid "Enable email confirmation"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
885 |
msgid "user that registers should confirm its email address via a link click"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
889 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
893 |
msgid "Enable form confirmation"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
897 |
msgid "a summary of the registration form will be presented to the user"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
901 |
msgid "Customize welcome email sent to the new user"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
905 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
909 |
msgid "Redirect to the source"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
913 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
917 |
msgid "No captcha"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
921 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
925 |
msgid "Public KEY"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
929 |
msgid "Private KEY"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
933 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
937 |
msgid "This captcha is probably weaker, but is easier for users"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
941 |
#, php-format
|
942 |
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>"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
946 |
msgid "Change login/registration page logo"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
950 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
954 |
msgid "Database"
|
955 |
msgstr "Base de Datos"
|
956 |
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
961 |
msgid "select action"
|
962 |
msgstr "seleccione acción"
|
963 |
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
965 |
msgid "Default values"
|
966 |
msgstr "Valores por defecto"
|
967 |
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
972 |
msgid "Delete"
|
973 |
msgstr "Borrar"
|
974 |
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
979 |
msgid "NOT PRESENT"
|
980 |
msgstr "NO EXISTE"
|
981 |
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
983 |
msgid "WordPress Fields table"
|
984 |
msgstr "tabla de Campos WordPress"
|
985 |
|
986 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
987 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
989 |
msgid "Empty"
|
990 |
msgstr "Vacío"
|
991 |
|
992 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
993 |
msgid "Extra Fields table"
|
994 |
msgstr "Tabla de campos adicionales"
|
995 |
|
996 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
997 |
msgid "Users Data table"
|
998 |
msgstr "Tabla de datos del usuario"
|
999 |
|
1000 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
1001 |
msgid "all data inserted by users in all and only extra fields"
|
1002 |
msgstr "todos las datos insertados por los usuarios en todos (y unicamente) los campos adicionales"
|
1003 |
|
1004 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
1005 |
msgid "Force tables creation"
|
1006 |
msgstr "Forzar la creación de tablas"
|
1007 |
|
1008 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
1009 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1010 |
msgstr "Equivalente a desactivar y activar el plug-in. No se realizará otra operación."
|
1011 |
|
1012 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1013 |
msgid "User Profile"
|
1014 |
msgstr "Perfil de usuario"
|
1015 |
|
1016 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1017 |
msgid "Extra Fields section title"
|
1018 |
msgstr "Título de la sección de campos adicionales"
|
1019 |
|
1020 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1021 |
msgid "Fieldset's titles, separates with comma"
|
1022 |
msgstr "Títulos de los grupos de campo, separar con coma"
|
1023 |
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1025 |
msgid "example: title1,title2,title3"
|
1026 |
msgstr "ejemplo: título 1, título 2, título 3"
|
1027 |
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1029 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1030 |
msgstr "<strong>nota:</strong> si cambia el orden o quita grupos de campos posiblemente deba reasignar todos los campos adicionales a su grupo correspondiente"
|
1031 |
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1033 |
msgid "Authors & Users Extended"
|
1034 |
msgstr "Autores & Usuarios Extendido"
|
1035 |
|
1036 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1037 |
msgid "Hide username field"
|
1038 |
msgstr "Esconder campo de nombre de usuario"
|
1039 |
|
1040 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1041 |
msgid "Hide name field"
|
1042 |
msgstr "Esconder campo de nombre"
|
1043 |
|
1044 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1045 |
msgid "Hide email field"
|
1046 |
msgstr "Esconder campo de correo electrónico"
|
1047 |
|
1048 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1049 |
msgid "Hide role field"
|
1050 |
msgstr "Esconder campo de rol"
|
1051 |
|
1052 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:671
|
1053 |
msgid "Hide website field"
|
1054 |
msgstr "Esconder el campo de sitio web"
|
1055 |
|
1056 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1057 |
msgid "Hide n. posts field"
|
1058 |
msgstr "Esconder el campo de n. entradas"
|
1059 |
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
1061 |
msgid "WordPress hidden fields"
|
1062 |
msgstr "Campos escondidos WordPress"
|
1063 |
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
1065 |
+
#, fuzzy
|
1066 |
+
msgid "Show username"
|
1067 |
+
msgstr "Mostrar apellido"
|
1068 |
+
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
|
1070 |
+
msgid "when unchecked the email address will be used as username"
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
1074 |
msgid "Show password"
|
1075 |
msgstr "Mostrar contraseña"
|
1076 |
|
1077 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
1078 |
#, fuzzy
|
1079 |
msgid "Show confirmation password"
|
1080 |
msgstr "Mostrar contraseña"
|
1081 |
|
1082 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
1083 |
#, fuzzy
|
1084 |
msgid "Show password strength meter"
|
1085 |
msgstr "Mostrar contraseña"
|
1086 |
|
1087 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
1088 |
msgid "Show first name"
|
1089 |
msgstr "Mostrar primer nombre"
|
1090 |
|
1091 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
1092 |
msgid "Show last name"
|
1093 |
msgstr "Mostrar apellido"
|
1094 |
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
|
1096 |
msgid "Show nickname"
|
1097 |
msgstr "Mostrar sobrenombre"
|
1098 |
|
1099 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
1100 |
msgid "Show website"
|
1101 |
msgstr "Mostrar sitio web"
|
1102 |
|
1103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
1104 |
msgid "Show AIM"
|
1105 |
msgstr "Mostrar AIM"
|
1106 |
|
1107 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:721
|
1108 |
msgid "Show Yahoo IM"
|
1109 |
msgstr "Mostrar mensajero Yahoo"
|
1110 |
|
1111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
1112 |
msgid "Show Jabber / Google Talk"
|
1113 |
msgstr "Mostrar Jabber / Google Talk"
|
1114 |
|
1115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:729
|
1116 |
msgid "Show Biographical Info"
|
1117 |
msgstr "Mostrar información biográfica"
|
1118 |
|
1134 |
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!"
|
1135 |
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!"
|
1136 |
|
1137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
|
1138 |
msgid "Password"
|
1139 |
msgstr "Contraseña"
|
1140 |
|
1141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:236
|
1142 |
msgid "Password confirmation"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:258
|
1146 |
msgid "First name"
|
1147 |
msgstr "Primer nombre"
|
1148 |
|
1149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
1150 |
msgid "Last name"
|
1151 |
msgstr "Apellido"
|
1152 |
|
1153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
1154 |
msgid "Nickname"
|
1155 |
msgstr "Sobrenombre"
|
1156 |
|
1157 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:346
|
1158 |
msgid "AIM"
|
1159 |
msgstr "AIM"
|
1160 |
|
1161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:368
|
1162 |
msgid "Yahoo IM"
|
1163 |
msgstr "Yahoo IM"
|
1164 |
|
1165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:390
|
1166 |
msgid "Jabber / Google Talk"
|
1167 |
msgstr "Jabber / Google Talk"
|
1168 |
|
1169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:412
|
1170 |
msgid "Biographical Info"
|
1171 |
msgstr "Información Biográfica"
|
1172 |
|
langs/cimy_uef-fr_FR.mo
CHANGED
Binary file
|
langs/cimy_uef-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -17,146 +17,147 @@ msgstr ""
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
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/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
35 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
36 |
msgid "ERROR"
|
37 |
msgstr "ERREUR"
|
38 |
|
39 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
40 |
msgid "does not match."
|
41 |
msgstr "ne correspondent pas."
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "n'a pas une syntaxe e-mail correcte"
|
46 |
|
47 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "ne peut pas être vide."
|
50 |
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "n'est pas correct"
|
55 |
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "OUI"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NON"
|
67 |
|
68 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
69 |
msgid "should be"
|
70 |
msgstr "devrait être"
|
71 |
|
72 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
73 |
msgid "should be an image."
|
74 |
msgstr "devrait être une image."
|
75 |
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "ne pouvait pas avoir une taille inférieure à"
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "ne pouvait pas avoir une longueur inférieur à"
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "ne pouvais pas avoir une taille différente de"
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "ne pouvait pas avoir une longueur différente de"
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "ne pouvait pas avoir une taille supérieure à"
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "ne pouvait pas avoir une longueur supérieure à"
|
103 |
|
104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
105 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
106 |
#, fuzzy
|
107 |
msgid "Typed code is not correct."
|
108 |
msgstr "Le code saisi est incorrect."
|
109 |
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
112 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
113 |
msgid "Username"
|
114 |
msgstr "Identifiant"
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
119 |
msgid "E-mail"
|
120 |
msgstr "Courriel"
|
121 |
|
122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Veuillez téléchargez un fichier avec l'une des extensions suivantes"
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "S'il vous plait, téléchargez une image avec l'une des extensions suivantes"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
134 |
msgid "Strength indicator"
|
135 |
msgstr "Indicateur de sûreté"
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
138 |
#, fuzzy
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr "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 ! \\\" ? $ % ^ & )."
|
141 |
|
142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
143 |
msgid "Change image"
|
144 |
msgstr "Changer l'image"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
147 |
msgid "Insert the code:"
|
148 |
msgstr "Insérer le code :"
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
@@ -181,17 +182,17 @@ msgid "Change order"
|
|
181 |
msgstr "Changer l'ordre"
|
182 |
|
183 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
185 |
msgid "Min length"
|
186 |
msgstr "Longueur min"
|
187 |
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
msgid "Exact length"
|
191 |
msgstr "Longueur exacte"
|
192 |
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
195 |
msgid "Max length"
|
196 |
msgstr "Longueur max"
|
197 |
|
@@ -213,425 +214,425 @@ msgid "You cannot give an order that misses some numbers"
|
|
213 |
msgstr "Vous ne pouvez pas donner un ordre qui manque des nombres"
|
214 |
|
215 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
216 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
217 |
msgid "Nothing selected"
|
218 |
msgstr "Rien n'est sélectionné"
|
219 |
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Field(s)"
|
222 |
msgstr "Champ(s)"
|
223 |
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
225 |
msgid "deleted correctly"
|
226 |
msgstr "supprmé(e) correctement"
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
230 |
msgid "Min size"
|
231 |
msgstr "Taille min"
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
234 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
235 |
msgid "Exact size"
|
236 |
msgstr "Taille exacte"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
240 |
msgid "Max size"
|
241 |
msgstr "Taille max"
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
244 |
msgid "Exact or Max size"
|
245 |
msgstr "Taille exacte ou Max"
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Name not specified"
|
249 |
msgstr "Nom non spécifié"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Name cannot contains spaces"
|
253 |
msgstr "Le nom ne peut pas contenir d'espace"
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "Label not specified"
|
257 |
msgstr "Étiquette non spécifié"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
msgid "not selected (with this type is necessary)"
|
261 |
msgstr "non sélectionné (avec ce type, c'est nécessaire)"
|
262 |
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
264 |
msgid "If you select"
|
265 |
msgstr "Si vous sélectionnez"
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
268 |
msgid "you cannot select Min or Max"
|
269 |
msgstr "vous ne pouvez pas sélectionner Min ou Max"
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
274 |
msgid "should be in the range of"
|
275 |
msgstr "devrait être compris entre"
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
278 |
msgid "Equal TO not specified"
|
279 |
msgstr "Égal À non spécifié"
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
282 |
msgid "With checkbox type Equal TO can only be"
|
283 |
msgstr "Avec le type checkbox, Égal À ne peut être que"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
286 |
msgid "With radio type Equal TO can only be"
|
287 |
msgstr "Avec le type radio, Égal À ne peut être que"
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
290 |
msgid "With checkbox type Value can only be"
|
291 |
msgstr "Avec le type checkbox, la valeur ne peut être que"
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
294 |
msgid "With radio type Value can only be"
|
295 |
msgstr "Avec le type radio, la valeur ne peut être que"
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
298 |
msgid "Field inserted correctly"
|
299 |
msgstr "Champ inséré correctement"
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
302 |
msgid "Field #"
|
303 |
msgstr "Champ #"
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
306 |
msgid "updated correctly"
|
307 |
msgstr "mis à jour correctement"
|
308 |
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Name inserted is just in the database, change to another one"
|
311 |
msgstr "Le nom est déjà dans la base de données; veuillez le changer"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
315 |
msgid "Add a new Field"
|
316 |
msgstr "Ajouter un nouveau champ"
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
319 |
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."
|
320 |
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."
|
321 |
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
323 |
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'"
|
324 |
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é'"
|
325 |
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
327 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
328 |
msgstr "Avec le type <strong>drop-down</strong> : vous devez ajouter toutes les options dans l'étiquette, par exemple: étiquette/item1,item2,item3"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
331 |
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"
|
332 |
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"
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
335 |
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)"
|
336 |
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)"
|
337 |
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
339 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
340 |
msgstr "Avec le type <strong>registration-date</strong> : <em>égal À</em> indique un format date et heure"
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
343 |
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"
|
344 |
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"
|
345 |
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
347 |
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"
|
348 |
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"
|
349 |
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
msgid "Name"
|
357 |
msgstr "Nom"
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
msgid "Value"
|
366 |
msgstr "Valeur"
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
msgid "Type"
|
373 |
msgstr "Type"
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
378 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
379 |
msgid "Label"
|
380 |
msgstr "Étiquette"
|
381 |
|
382 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
383 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
386 |
msgid "Description"
|
387 |
msgstr "Description"
|
388 |
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
390 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
391 |
msgid "Rules"
|
392 |
msgstr "Règles"
|
393 |
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
396 |
msgid "Actions"
|
397 |
msgstr "Actions"
|
398 |
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
msgid "Fieldset"
|
404 |
msgstr "Regroupements"
|
405 |
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
408 |
msgid "Can be empty"
|
409 |
msgstr "Peut être vide"
|
410 |
|
411 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
412 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
413 |
msgid "Check for E-mail syntax"
|
414 |
msgstr "Vérifier la syntaxe du courriel"
|
415 |
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
418 |
msgid "Can be modified"
|
419 |
msgstr "Peut être modifié"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
423 |
msgid "Can be modified only if empty"
|
424 |
msgstr "Ne peut être modifié que s'il est vide"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
428 |
msgid "Can be modified only by admin"
|
429 |
msgstr "Ne peut être modifié que par un admin"
|
430 |
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
432 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
433 |
msgid "Can be modified only by admin or if empty"
|
434 |
msgstr "Ne peut être modifié que par un admin ou s'il est vide"
|
435 |
|
436 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
437 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
438 |
msgid "Cannot be modified"
|
439 |
msgstr "Ne peut pas être modifié"
|
440 |
|
441 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
443 |
msgid "Should be equal TO"
|
444 |
msgstr "Devrait être égal À"
|
445 |
|
446 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
448 |
msgid "Case sensitive"
|
449 |
msgstr "Tenir compte de la case (majuscule/minuscule)"
|
450 |
|
451 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
453 |
msgid "Regular Expression"
|
454 |
msgstr "Expression régulière"
|
455 |
|
456 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
458 |
msgid "Show the field in the registration"
|
459 |
msgstr "Montrer le champ lors de l'inscription"
|
460 |
|
461 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
463 |
msgid "Show the field in User's profile"
|
464 |
msgstr "Montrer le champ dans le profil de l'utilisateur"
|
465 |
|
466 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
467 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
468 |
#, fuzzy
|
469 |
msgid "Show the field in Users Extended section"
|
470 |
msgstr "Montrer le champ dans le menu A&U Étendu"
|
471 |
|
472 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
474 |
msgid "Show the field in the search engine"
|
475 |
msgstr "Montrer le champ dans les moteurs de recherche"
|
476 |
|
477 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
479 |
msgid "Show the field in the blog"
|
480 |
msgstr "Montrer le champ dans le blogue"
|
481 |
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
484 |
msgid "Show the field if the role is at least:"
|
485 |
msgstr "Montrer le champ si le rôle est au moins :"
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
msgid "Anonymous"
|
490 |
msgstr "Anonyme"
|
491 |
|
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 "User has 'view_cimy_extra_fields' capability"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
499 |
msgid "Send an email to the admin if the user changes its value"
|
500 |
msgstr "Envoyer un courriel à l'administrateur si l'utilisateur modifie la valeur de ce champ"
|
501 |
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
504 |
#, fuzzy
|
505 |
msgid "Advanced options"
|
506 |
msgstr "Actions"
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
509 |
msgid "Clear"
|
510 |
msgstr "Vider (RAZ)"
|
511 |
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
513 |
msgid "Invert selection"
|
514 |
msgstr "Inverser la sélection"
|
515 |
|
516 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
517 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
518 |
msgstr "Êtes-vous certain de vouloir supprimer ce(s) champ(s) et toutes les données insérées par vos utilisateurs?"
|
519 |
|
520 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
521 |
msgid "WordPress Fields"
|
522 |
msgstr "Champs WordPress"
|
523 |
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
525 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
528 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
530 |
msgid "Extra Fields"
|
531 |
msgstr "Champs Supplémentaires"
|
532 |
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
534 |
msgid "None!"
|
535 |
msgstr "Aucun!"
|
536 |
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
539 |
msgid "Order"
|
540 |
msgstr "Ordre"
|
541 |
|
542 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
543 |
msgid "Reset"
|
544 |
msgstr "Réinitialiser"
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
547 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
548 |
msgid "SUCCESSFUL"
|
549 |
msgstr "SUCCÈS"
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
553 |
#, fuzzy
|
554 |
msgid "select"
|
555 |
msgstr "sélectionnez"
|
556 |
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
559 |
msgid "Users per page"
|
560 |
msgstr "Utilisateurs par page"
|
561 |
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
msgid "Apply"
|
565 |
msgstr "Appliquer"
|
566 |
|
567 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
568 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
569 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
570 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
571 |
msgid "Users Extended"
|
572 |
msgstr "Utilisateurs Étendus"
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
575 |
#, php-format
|
576 |
msgid "Search results for “%s”"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
580 |
#, php-format
|
581 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
582 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
585 |
msgid "Search Users"
|
586 |
msgstr "Chercher des utilisateurs"
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
590 |
msgid "Role"
|
591 |
msgstr "Rôle"
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
596 |
msgid "Website"
|
597 |
msgstr "Site Web"
|
598 |
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
601 |
msgid "Posts"
|
602 |
msgstr "Articles"
|
603 |
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
605 |
msgid "View posts by this author"
|
606 |
msgstr "Voir les articles de cet auteur"
|
607 |
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
609 |
msgid "Super Admin"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
613 |
#, php-format
|
614 |
msgid "e-mail: %s"
|
615 |
msgstr "courriel : %s"
|
616 |
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
618 |
#, fuzzy
|
619 |
msgid "Change"
|
620 |
msgstr "Changer l'image"
|
621 |
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
623 |
msgid "Update selected users"
|
624 |
msgstr "Mettre à jour les utilisateurs sélectionnés"
|
625 |
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
627 |
msgid "Update"
|
628 |
msgstr "Mettre à jour"
|
629 |
|
630 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
631 |
msgid "OK"
|
632 |
msgstr "OK"
|
633 |
|
634 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
635 |
msgid "Cancel"
|
636 |
msgstr "Annuler"
|
637 |
|
@@ -641,9 +642,9 @@ msgid "New user registration on your site %s:"
|
|
641 |
msgstr "Inscription d'un nouvel utilisateur sur votre site %s :"
|
642 |
|
643 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
644 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
645 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
646 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
647 |
#, php-format
|
648 |
msgid "Username: %s"
|
649 |
msgstr "Identifiant : %s"
|
@@ -663,15 +664,15 @@ msgstr "[%s] Inscription d'un nouvel utilisateur"
|
|
663 |
msgid "[%s] Your username and password"
|
664 |
msgstr "[%s] Votre identifiant et mot de passe"
|
665 |
|
666 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
667 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
668 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
669 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
670 |
#, php-format
|
671 |
msgid "%s: %s"
|
672 |
msgstr "%s : %s"
|
673 |
|
674 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
675 |
#, php-format
|
676 |
msgid ""
|
677 |
"To activate your user, please click the following link:\n"
|
@@ -687,52 +688,52 @@ msgstr ""
|
|
687 |
"\n"
|
688 |
"Après l'activation, vous recevrez un *autre courriel* avec votre identifiant.\n"
|
689 |
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
692 |
msgid "Your account is now active!"
|
693 |
msgstr "Votre compte est maintenant actif!"
|
694 |
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
696 |
#, php-format
|
697 |
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>."
|
698 |
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>."
|
699 |
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
701 |
msgid "An error occurred during the activation"
|
702 |
msgstr "Une erreur est survenue durant l'activation"
|
703 |
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
705 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
707 |
#, php-format
|
708 |
msgid "Password: %s"
|
709 |
msgstr "Mot de passe : %s"
|
710 |
|
711 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
712 |
msgid "Invalid activation key."
|
713 |
msgstr "Clef d'activation invalide."
|
714 |
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
716 |
msgid "The site is already active."
|
717 |
msgstr "Le compte est déjà actif."
|
718 |
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
720 |
msgid "Could not create user"
|
721 |
msgstr "N'a pu créer l'utilisateur"
|
722 |
|
723 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
724 |
msgid "That username is already activated."
|
725 |
msgstr "Cet identifiant est déjà actif."
|
726 |
|
727 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
728 |
msgid "That username is currently reserved but may be available in a couple of days."
|
729 |
msgstr "Cet identifiant est actuellement réservé, mais peut être disponible d'ici quelques jours."
|
730 |
|
731 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
732 |
msgid "username and email used"
|
733 |
msgstr "identifiant et courriel utilisé"
|
734 |
|
735 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
736 |
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."
|
737 |
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."
|
738 |
|
@@ -749,7 +750,7 @@ msgid "Update the file"
|
|
749 |
msgstr "Mettre à jour le fichier"
|
750 |
|
751 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
752 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
753 |
msgid "Delete the picture"
|
754 |
msgstr "Supprimer l'image"
|
755 |
|
@@ -772,332 +773,341 @@ msgid "%s (%s) has changed one or more fields"
|
|
772 |
msgstr "%s (%s) a modifié un ou plusieurs champs"
|
773 |
|
774 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
775 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
776 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
777 |
msgid "Options"
|
778 |
msgstr "Options"
|
779 |
|
780 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
781 |
msgid "WordPress Fields table emptied"
|
782 |
msgstr "Table des champs WordPress vidée"
|
783 |
|
784 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
785 |
msgid "WordPress Fields table deleted"
|
786 |
msgstr "Table des champs WordPress supprimée"
|
787 |
|
788 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
789 |
msgid "Extra Fields table emptied"
|
790 |
msgstr "Table des champs supplémentaires vidée"
|
791 |
|
792 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
793 |
msgid "Extra Fields table deleted"
|
794 |
msgstr "Table des champs supplémentaires supprimée"
|
795 |
|
796 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
797 |
msgid "Users Data table emptied"
|
798 |
msgstr "Table des données utilsateurs vidée"
|
799 |
|
800 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
801 |
msgid "Users Data table deleted"
|
802 |
msgstr "Table des données utilsateurs supprimée"
|
803 |
|
804 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
805 |
msgid "Options set to default values"
|
806 |
msgstr "Options réinitialisées avec les valeurs par défaut"
|
807 |
|
808 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
809 |
msgid "Options deleted"
|
810 |
msgstr "Options supprimées"
|
811 |
|
812 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
813 |
msgid "Options changed"
|
814 |
msgstr "Options changées"
|
815 |
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
817 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
818 |
msgstr "Cette opération créera ou mettra à jour toutes les tables et options manquantes. Voulez-vous continuer?"
|
819 |
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
821 |
msgid "Support the Cimy Project"
|
822 |
msgstr "Supportez le <em>Cimy Project</em>"
|
823 |
|
824 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
825 |
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!"
|
826 |
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!"
|
827 |
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
829 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
830 |
msgid "Save Changes"
|
831 |
msgstr "Enregistrer les changements"
|
832 |
|
833 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
834 |
msgid "General"
|
835 |
msgstr "Général"
|
836 |
|
837 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
838 |
#, fuzzy
|
839 |
msgid "installed is"
|
840 |
msgstr "installé"
|
841 |
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
843 |
msgid "OPTIONS DELETED!"
|
844 |
msgstr "OPTIONS SUPPRIMÉES!"
|
845 |
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
848 |
msgid "Fix the problem"
|
849 |
msgstr "Corriger le problème"
|
850 |
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
852 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
853 |
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..."
|
854 |
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
856 |
msgid "Picture/Avatar upload"
|
857 |
msgstr "Téléchargement de photo ou d'avatar"
|
858 |
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
860 |
msgid "is created and writable"
|
861 |
msgstr "est créé et en écriture"
|
862 |
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
864 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
865 |
msgstr "N'est PAS créé ou le serveur Web N'a PAS les permissions pour l'écrire"
|
866 |
|
867 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
868 |
msgid "Show all fields in the welcome email"
|
869 |
msgstr "Montrer tous les champs dans le courriel de bienvenue"
|
870 |
|
871 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
872 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
873 |
msgstr "le courriel envoyé aux administrateurs et à l'utilisateur lors de l'inscription contiendra tous les champs"
|
874 |
|
875 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
876 |
msgid "Enable email confirmation"
|
877 |
msgstr "Activer la confirmation par courriel"
|
878 |
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
880 |
msgid "user that registers should confirm its email address via a link click"
|
881 |
msgstr "les utilisateurs qui s'inscrivent doivent confirmer leur adresse courriel grâce à un lien à cliquer"
|
882 |
|
883 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
884 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
885 |
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"
|
886 |
|
887 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
888 |
#, fuzzy
|
889 |
msgid "Enable form confirmation"
|
890 |
msgstr "Activer la confirmation par courriel"
|
891 |
|
892 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
893 |
msgid "a summary of the registration form will be presented to the user"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
897 |
msgid "Customize welcome email sent to the new user"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
901 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
905 |
msgid "Redirect to the source"
|
906 |
msgstr "Rediriger au référant"
|
907 |
|
908 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
909 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
910 |
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"
|
911 |
|
912 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
913 |
msgid "No captcha"
|
914 |
msgstr "Pas de captcha"
|
915 |
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
917 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
918 |
msgstr "Activer <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
919 |
|
920 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
921 |
msgid "Public KEY"
|
922 |
msgstr "Public KEY"
|
923 |
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
925 |
msgid "Private KEY"
|
926 |
msgstr "Private KEY"
|
927 |
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
929 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
930 |
msgstr "Activer <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
931 |
|
932 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
933 |
msgid "This captcha is probably weaker, but is easier for users"
|
934 |
msgstr "Ce captcha est probablement plus faible, mais plus facile d'utilisation pour les utilisateurs"
|
935 |
|
936 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
937 |
#, php-format
|
938 |
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>"
|
939 |
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>"
|
940 |
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
942 |
msgid "Change login/registration page logo"
|
943 |
msgstr "Changer le logo de la page de connexion et d'inscription"
|
944 |
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
946 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
947 |
msgstr "La largeur maximum recommandé est de 328px, mais n'importe quelle hauteur devrait fonctionner."
|
948 |
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
950 |
msgid "Database"
|
951 |
msgstr "Base de données"
|
952 |
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
956 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
957 |
msgid "select action"
|
958 |
msgstr "sélectionner une action"
|
959 |
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
961 |
msgid "Default values"
|
962 |
msgstr "Valeurs par défaut"
|
963 |
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
966 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
967 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
968 |
msgid "Delete"
|
969 |
msgstr "Supprimer"
|
970 |
|
971 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
975 |
msgid "NOT PRESENT"
|
976 |
msgstr "NON PRESENT"
|
977 |
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
979 |
msgid "WordPress Fields table"
|
980 |
msgstr "Table des champs WordPress"
|
981 |
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
983 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
984 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
985 |
msgid "Empty"
|
986 |
msgstr "Vider"
|
987 |
|
988 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
989 |
msgid "Extra Fields table"
|
990 |
msgstr "Table des champs supplémentaires"
|
991 |
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
993 |
msgid "Users Data table"
|
994 |
msgstr "Table des données utilisateurs"
|
995 |
|
996 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
997 |
msgid "all data inserted by users in all and only extra fields"
|
998 |
msgstr "toutes les données insérées par les utilisateurs dans les champs supplémentaires seulement"
|
999 |
|
1000 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1001 |
msgid "Force tables creation"
|
1002 |
msgstr "Forcer la création des tables"
|
1003 |
|
1004 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1005 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1006 |
msgstr "équivalent à désactiver et activer le plug-in; aucune autre opération ne sera effectuée"
|
1007 |
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1009 |
msgid "User Profile"
|
1010 |
msgstr "Profil utilisateur"
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1013 |
msgid "Extra Fields section title"
|
1014 |
msgstr "Titre de la section des champs supplémentaires"
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1017 |
msgid "Fieldset's titles, separates with comma"
|
1018 |
msgstr "Titres des regroupements, séparés par des virgules"
|
1019 |
|
1020 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1021 |
msgid "example: title1,title2,title3"
|
1022 |
msgstr "exemple : titre1,titre2,titre3"
|
1023 |
|
1024 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1025 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1026 |
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"
|
1027 |
|
1028 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1029 |
msgid "Authors & Users Extended"
|
1030 |
msgstr "Auteurs & Utilisateurs Étendus"
|
1031 |
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1033 |
msgid "Hide username field"
|
1034 |
msgstr "Cacher le champ nom d'utilisateur"
|
1035 |
|
1036 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1037 |
msgid "Hide name field"
|
1038 |
msgstr "Cacher le champ nom"
|
1039 |
|
1040 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1041 |
msgid "Hide email field"
|
1042 |
msgstr "Cacher le champ courriel"
|
1043 |
|
1044 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1045 |
msgid "Hide role field"
|
1046 |
msgstr "Cacher le champ rôle"
|
1047 |
|
1048 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1049 |
msgid "Hide website field"
|
1050 |
msgstr "Cacher le champ du site Web"
|
1051 |
|
1052 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1053 |
msgid "Hide n. posts field"
|
1054 |
msgstr "Cacher le champ nbre d'articles"
|
1055 |
|
1056 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1057 |
msgid "WordPress hidden fields"
|
1058 |
msgstr "Champs WordPress cachés"
|
1059 |
|
1060 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgid "Show password"
|
1062 |
msgstr "Montrer le mot de passe"
|
1063 |
|
1064 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1065 |
msgid "Show confirmation password"
|
1066 |
msgstr "Montrer la confirmation du mot de passe"
|
1067 |
|
1068 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1069 |
msgid "Show password strength meter"
|
1070 |
msgstr "Montrer l'indicateur de sûreté"
|
1071 |
|
1072 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1073 |
msgid "Show first name"
|
1074 |
msgstr "Montrer le prénom"
|
1075 |
|
1076 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1077 |
msgid "Show last name"
|
1078 |
msgstr "Montrer le nom"
|
1079 |
|
1080 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1081 |
msgid "Show nickname"
|
1082 |
msgstr "Montrer le surnom"
|
1083 |
|
1084 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1085 |
msgid "Show website"
|
1086 |
msgstr "Montrer le site web"
|
1087 |
|
1088 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1089 |
msgid "Show AIM"
|
1090 |
msgstr "Montrer AIM"
|
1091 |
|
1092 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1093 |
msgid "Show Yahoo IM"
|
1094 |
msgstr "Montrer Yahoo IM"
|
1095 |
|
1096 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1097 |
msgid "Show Jabber / Google Talk"
|
1098 |
msgstr "Montrer Jabber / Google Talk"
|
1099 |
|
1100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1101 |
msgid "Show Biographical Info"
|
1102 |
msgstr "Afficher les renseignements biographiques"
|
1103 |
|
@@ -1119,39 +1129,39 @@ msgstr "Le fichier '%s' n'est pas une image."
|
|
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>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!"
|
1121 |
|
1122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1123 |
msgid "Password"
|
1124 |
msgstr "Mot de passe"
|
1125 |
|
1126 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1127 |
msgid "Password confirmation"
|
1128 |
msgstr "Confirmation du mot de passe"
|
1129 |
|
1130 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1131 |
msgid "First name"
|
1132 |
msgstr "Prénom"
|
1133 |
|
1134 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1135 |
msgid "Last name"
|
1136 |
msgstr "Nom"
|
1137 |
|
1138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1139 |
msgid "Nickname"
|
1140 |
msgstr "Pseudonyme"
|
1141 |
|
1142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1143 |
msgid "AIM"
|
1144 |
msgstr "AIM"
|
1145 |
|
1146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1147 |
msgid "Yahoo IM"
|
1148 |
msgstr "Yahoo IM"
|
1149 |
|
1150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1151 |
msgid "Jabber / Google Talk"
|
1152 |
msgstr "Jabber / Google Talk"
|
1153 |
|
1154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1155 |
msgid "Biographical Info"
|
1156 |
msgstr "Renseignements biographiques"
|
1157 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:52-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:52-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
|
|
|
|
|
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
36 |
msgid "ERROR"
|
37 |
msgstr "ERREUR"
|
38 |
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
40 |
msgid "does not match."
|
41 |
msgstr "ne correspondent pas."
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "n'a pas une syntaxe e-mail correcte"
|
46 |
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "ne peut pas être vide."
|
50 |
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
52 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "n'est pas correct"
|
55 |
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
59 |
msgid "YES"
|
60 |
msgstr "OUI"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
65 |
msgid "NO"
|
66 |
msgstr "NON"
|
67 |
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
69 |
msgid "should be"
|
70 |
msgstr "devrait être"
|
71 |
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
73 |
msgid "should be an image."
|
74 |
msgstr "devrait être une image."
|
75 |
|
76 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "ne pouvait pas avoir une taille inférieure à"
|
83 |
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "ne pouvait pas avoir une longueur inférieur à"
|
87 |
|
88 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "ne pouvais pas avoir une taille différente de"
|
91 |
|
92 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "ne pouvait pas avoir une longueur différente de"
|
95 |
|
96 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "ne pouvait pas avoir une taille supérieure à"
|
99 |
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "ne pouvait pas avoir une longueur supérieure à"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
106 |
#, fuzzy
|
107 |
msgid "Typed code is not correct."
|
108 |
msgstr "Le code saisi est incorrect."
|
109 |
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
113 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
114 |
msgid "Username"
|
115 |
msgstr "Identifiant"
|
116 |
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
120 |
msgid "E-mail"
|
121 |
msgstr "Courriel"
|
122 |
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
124 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Veuillez téléchargez un fichier avec l'une des extensions suivantes"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1007
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "S'il vous plait, téléchargez une image avec l'une des extensions suivantes"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
135 |
msgid "Strength indicator"
|
136 |
msgstr "Indicateur de sûreté"
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
139 |
#, fuzzy
|
140 |
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 ! \" ? $ % ^ & )."
|
141 |
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 ! \\\" ? $ % ^ & )."
|
142 |
|
143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
144 |
msgid "Change image"
|
145 |
msgstr "Changer l'image"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
148 |
msgid "Insert the code:"
|
149 |
msgstr "Insérer le code :"
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1313
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
182 |
msgstr "Changer l'ordre"
|
183 |
|
184 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
|
186 |
msgid "Min length"
|
187 |
msgstr "Longueur min"
|
188 |
|
189 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
191 |
msgid "Exact length"
|
192 |
msgstr "Longueur exacte"
|
193 |
|
194 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
196 |
msgid "Max length"
|
197 |
msgstr "Longueur max"
|
198 |
|
214 |
msgstr "Vous ne pouvez pas donner un ordre qui manque des nombres"
|
215 |
|
216 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
218 |
msgid "Nothing selected"
|
219 |
msgstr "Rien n'est sélectionné"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
222 |
msgid "Field(s)"
|
223 |
msgstr "Champ(s)"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
226 |
msgid "deleted correctly"
|
227 |
msgstr "supprmé(e) correctement"
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
231 |
msgid "Min size"
|
232 |
msgstr "Taille min"
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
236 |
msgid "Exact size"
|
237 |
msgstr "Taille exacte"
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
241 |
msgid "Max size"
|
242 |
msgstr "Taille max"
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
245 |
msgid "Exact or Max size"
|
246 |
msgstr "Taille exacte ou Max"
|
247 |
|
248 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
249 |
msgid "Name not specified"
|
250 |
msgstr "Nom non spécifié"
|
251 |
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
253 |
msgid "Name cannot contains spaces"
|
254 |
msgstr "Le nom ne peut pas contenir d'espace"
|
255 |
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
257 |
msgid "Label not specified"
|
258 |
msgstr "Étiquette non spécifié"
|
259 |
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
261 |
msgid "not selected (with this type is necessary)"
|
262 |
msgstr "non sélectionné (avec ce type, c'est nécessaire)"
|
263 |
|
264 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
265 |
msgid "If you select"
|
266 |
msgstr "Si vous sélectionnez"
|
267 |
|
268 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
269 |
msgid "you cannot select Min or Max"
|
270 |
msgstr "vous ne pouvez pas sélectionner Min ou Max"
|
271 |
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
275 |
msgid "should be in the range of"
|
276 |
msgstr "devrait être compris entre"
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
279 |
msgid "Equal TO not specified"
|
280 |
msgstr "Égal À non spécifié"
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
283 |
msgid "With checkbox type Equal TO can only be"
|
284 |
msgstr "Avec le type checkbox, Égal À ne peut être que"
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
287 |
msgid "With radio type Equal TO can only be"
|
288 |
msgstr "Avec le type radio, Égal À ne peut être que"
|
289 |
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
291 |
msgid "With checkbox type Value can only be"
|
292 |
msgstr "Avec le type checkbox, la valeur ne peut être que"
|
293 |
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
295 |
msgid "With radio type Value can only be"
|
296 |
msgstr "Avec le type radio, la valeur ne peut être que"
|
297 |
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
299 |
msgid "Field inserted correctly"
|
300 |
msgstr "Champ inséré correctement"
|
301 |
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
303 |
msgid "Field #"
|
304 |
msgstr "Champ #"
|
305 |
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
307 |
msgid "updated correctly"
|
308 |
msgstr "mis à jour correctement"
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
311 |
msgid "Name inserted is just in the database, change to another one"
|
312 |
msgstr "Le nom est déjà dans la base de données; veuillez le changer"
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
316 |
msgid "Add a new Field"
|
317 |
msgstr "Ajouter un nouveau champ"
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
320 |
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."
|
321 |
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."
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
324 |
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'"
|
325 |
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é'"
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
328 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
329 |
msgstr "Avec le type <strong>drop-down</strong> : vous devez ajouter toutes les options dans l'étiquette, par exemple: étiquette/item1,item2,item3"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
332 |
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"
|
333 |
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"
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
336 |
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)"
|
337 |
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)"
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
340 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
341 |
msgstr "Avec le type <strong>registration-date</strong> : <em>égal À</em> indique un format date et heure"
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
344 |
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"
|
345 |
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"
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
348 |
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"
|
349 |
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"
|
350 |
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
357 |
msgid "Name"
|
358 |
msgstr "Nom"
|
359 |
|
360 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
366 |
msgid "Value"
|
367 |
msgstr "Valeur"
|
368 |
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
373 |
msgid "Type"
|
374 |
msgstr "Type"
|
375 |
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
380 |
msgid "Label"
|
381 |
msgstr "Étiquette"
|
382 |
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
387 |
msgid "Description"
|
388 |
msgstr "Description"
|
389 |
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
392 |
msgid "Rules"
|
393 |
msgstr "Règles"
|
394 |
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
397 |
msgid "Actions"
|
398 |
msgstr "Actions"
|
399 |
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
404 |
msgid "Fieldset"
|
405 |
msgstr "Regroupements"
|
406 |
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
408 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
409 |
msgid "Can be empty"
|
410 |
msgstr "Peut être vide"
|
411 |
|
412 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
413 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
414 |
msgid "Check for E-mail syntax"
|
415 |
msgstr "Vérifier la syntaxe du courriel"
|
416 |
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
418 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
419 |
msgid "Can be modified"
|
420 |
msgstr "Peut être modifié"
|
421 |
|
422 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
423 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
424 |
msgid "Can be modified only if empty"
|
425 |
msgstr "Ne peut être modifié que s'il est vide"
|
426 |
|
427 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
429 |
msgid "Can be modified only by admin"
|
430 |
msgstr "Ne peut être modifié que par un admin"
|
431 |
|
432 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
434 |
msgid "Can be modified only by admin or if empty"
|
435 |
msgstr "Ne peut être modifié que par un admin ou s'il est vide"
|
436 |
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
439 |
msgid "Cannot be modified"
|
440 |
msgstr "Ne peut pas être modifié"
|
441 |
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
444 |
msgid "Should be equal TO"
|
445 |
msgstr "Devrait être égal À"
|
446 |
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
448 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
449 |
msgid "Case sensitive"
|
450 |
msgstr "Tenir compte de la case (majuscule/minuscule)"
|
451 |
|
452 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
453 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
454 |
msgid "Regular Expression"
|
455 |
msgstr "Expression régulière"
|
456 |
|
457 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
459 |
msgid "Show the field in the registration"
|
460 |
msgstr "Montrer le champ lors de l'inscription"
|
461 |
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
464 |
msgid "Show the field in User's profile"
|
465 |
msgstr "Montrer le champ dans le profil de l'utilisateur"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
468 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
469 |
#, fuzzy
|
470 |
msgid "Show the field in Users Extended section"
|
471 |
msgstr "Montrer le champ dans le menu A&U Étendu"
|
472 |
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
474 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
475 |
msgid "Show the field in the search engine"
|
476 |
msgstr "Montrer le champ dans les moteurs de recherche"
|
477 |
|
478 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
479 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
480 |
msgid "Show the field in the blog"
|
481 |
msgstr "Montrer le champ dans le blogue"
|
482 |
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
484 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
485 |
msgid "Show the field if the role is at least:"
|
486 |
msgstr "Montrer le champ si le rôle est au moins :"
|
487 |
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
490 |
msgid "Anonymous"
|
491 |
msgstr "Anonyme"
|
492 |
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
495 |
msgid "User has 'view_cimy_extra_fields' capability"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
500 |
msgid "Send an email to the admin if the user changes its value"
|
501 |
msgstr "Envoyer un courriel à l'administrateur si l'utilisateur modifie la valeur de ce champ"
|
502 |
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
505 |
#, fuzzy
|
506 |
msgid "Advanced options"
|
507 |
msgstr "Actions"
|
508 |
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
510 |
msgid "Clear"
|
511 |
msgstr "Vider (RAZ)"
|
512 |
|
513 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
514 |
msgid "Invert selection"
|
515 |
msgstr "Inverser la sélection"
|
516 |
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
518 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
519 |
msgstr "Êtes-vous certain de vouloir supprimer ce(s) champ(s) et toutes les données insérées par vos utilisateurs?"
|
520 |
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
522 |
msgid "WordPress Fields"
|
523 |
msgstr "Champs WordPress"
|
524 |
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
528 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
529 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
531 |
msgid "Extra Fields"
|
532 |
msgstr "Champs Supplémentaires"
|
533 |
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
535 |
msgid "None!"
|
536 |
msgstr "Aucun!"
|
537 |
|
538 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
539 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
540 |
msgid "Order"
|
541 |
msgstr "Ordre"
|
542 |
|
543 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
544 |
msgid "Reset"
|
545 |
msgstr "Réinitialiser"
|
546 |
|
547 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
549 |
msgid "SUCCESSFUL"
|
550 |
msgstr "SUCCÈS"
|
551 |
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
554 |
#, fuzzy
|
555 |
msgid "select"
|
556 |
msgstr "sélectionnez"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
560 |
msgid "Users per page"
|
561 |
msgstr "Utilisateurs par page"
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
565 |
msgid "Apply"
|
566 |
msgstr "Appliquer"
|
567 |
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
569 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
570 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
571 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
572 |
msgid "Users Extended"
|
573 |
msgstr "Utilisateurs Étendus"
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
576 |
#, php-format
|
577 |
msgid "Search results for “%s”"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
581 |
#, php-format
|
582 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
583 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
584 |
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
586 |
msgid "Search Users"
|
587 |
msgstr "Chercher des utilisateurs"
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
591 |
msgid "Role"
|
592 |
msgstr "Rôle"
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
597 |
msgid "Website"
|
598 |
msgstr "Site Web"
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
602 |
msgid "Posts"
|
603 |
msgstr "Articles"
|
604 |
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
606 |
msgid "View posts by this author"
|
607 |
msgstr "Voir les articles de cet auteur"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
610 |
msgid "Super Admin"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
614 |
#, php-format
|
615 |
msgid "e-mail: %s"
|
616 |
msgstr "courriel : %s"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
619 |
#, fuzzy
|
620 |
msgid "Change"
|
621 |
msgstr "Changer l'image"
|
622 |
|
623 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
624 |
msgid "Update selected users"
|
625 |
msgstr "Mettre à jour les utilisateurs sélectionnés"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
628 |
msgid "Update"
|
629 |
msgstr "Mettre à jour"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
632 |
msgid "OK"
|
633 |
msgstr "OK"
|
634 |
|
635 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
636 |
msgid "Cancel"
|
637 |
msgstr "Annuler"
|
638 |
|
642 |
msgstr "Inscription d'un nouvel utilisateur sur votre site %s :"
|
643 |
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
646 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
648 |
#, php-format
|
649 |
msgid "Username: %s"
|
650 |
msgstr "Identifiant : %s"
|
664 |
msgid "[%s] Your username and password"
|
665 |
msgstr "[%s] Votre identifiant et mot de passe"
|
666 |
|
667 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
668 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
669 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
670 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
671 |
#, php-format
|
672 |
msgid "%s: %s"
|
673 |
msgstr "%s : %s"
|
674 |
|
675 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
676 |
#, php-format
|
677 |
msgid ""
|
678 |
"To activate your user, please click the following link:\n"
|
688 |
"\n"
|
689 |
"Après l'activation, vous recevrez un *autre courriel* avec votre identifiant.\n"
|
690 |
|
691 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
692 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
693 |
msgid "Your account is now active!"
|
694 |
msgstr "Votre compte est maintenant actif!"
|
695 |
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
697 |
#, php-format
|
698 |
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>."
|
699 |
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>."
|
700 |
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
702 |
msgid "An error occurred during the activation"
|
703 |
msgstr "Une erreur est survenue durant l'activation"
|
704 |
|
705 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
706 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
708 |
#, php-format
|
709 |
msgid "Password: %s"
|
710 |
msgstr "Mot de passe : %s"
|
711 |
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
713 |
msgid "Invalid activation key."
|
714 |
msgstr "Clef d'activation invalide."
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
717 |
msgid "The site is already active."
|
718 |
msgstr "Le compte est déjà actif."
|
719 |
|
720 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
721 |
msgid "Could not create user"
|
722 |
msgstr "N'a pu créer l'utilisateur"
|
723 |
|
724 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
725 |
msgid "That username is already activated."
|
726 |
msgstr "Cet identifiant est déjà actif."
|
727 |
|
728 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
729 |
msgid "That username is currently reserved but may be available in a couple of days."
|
730 |
msgstr "Cet identifiant est actuellement réservé, mais peut être disponible d'ici quelques jours."
|
731 |
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
733 |
msgid "username and email used"
|
734 |
msgstr "identifiant et courriel utilisé"
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
737 |
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."
|
738 |
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."
|
739 |
|
750 |
msgstr "Mettre à jour le fichier"
|
751 |
|
752 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
753 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
754 |
msgid "Delete the picture"
|
755 |
msgstr "Supprimer l'image"
|
756 |
|
773 |
msgstr "%s (%s) a modifié un ou plusieurs champs"
|
774 |
|
775 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
777 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
778 |
msgid "Options"
|
779 |
msgstr "Options"
|
780 |
|
781 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
782 |
msgid "WordPress Fields table emptied"
|
783 |
msgstr "Table des champs WordPress vidée"
|
784 |
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
786 |
msgid "WordPress Fields table deleted"
|
787 |
msgstr "Table des champs WordPress supprimée"
|
788 |
|
789 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
790 |
msgid "Extra Fields table emptied"
|
791 |
msgstr "Table des champs supplémentaires vidée"
|
792 |
|
793 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
794 |
msgid "Extra Fields table deleted"
|
795 |
msgstr "Table des champs supplémentaires supprimée"
|
796 |
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
798 |
msgid "Users Data table emptied"
|
799 |
msgstr "Table des données utilsateurs vidée"
|
800 |
|
801 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
802 |
msgid "Users Data table deleted"
|
803 |
msgstr "Table des données utilsateurs supprimée"
|
804 |
|
805 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
806 |
msgid "Options set to default values"
|
807 |
msgstr "Options réinitialisées avec les valeurs par défaut"
|
808 |
|
809 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
810 |
msgid "Options deleted"
|
811 |
msgstr "Options supprimées"
|
812 |
|
813 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
814 |
msgid "Options changed"
|
815 |
msgstr "Options changées"
|
816 |
|
817 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
818 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
819 |
msgstr "Cette opération créera ou mettra à jour toutes les tables et options manquantes. Voulez-vous continuer?"
|
820 |
|
821 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
822 |
msgid "Support the Cimy Project"
|
823 |
msgstr "Supportez le <em>Cimy Project</em>"
|
824 |
|
825 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
826 |
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!"
|
827 |
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!"
|
828 |
|
829 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
830 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
831 |
msgid "Save Changes"
|
832 |
msgstr "Enregistrer les changements"
|
833 |
|
834 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
835 |
msgid "General"
|
836 |
msgstr "Général"
|
837 |
|
838 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
839 |
#, fuzzy
|
840 |
msgid "installed is"
|
841 |
msgstr "installé"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
844 |
msgid "OPTIONS DELETED!"
|
845 |
msgstr "OPTIONS SUPPRIMÉES!"
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
849 |
msgid "Fix the problem"
|
850 |
msgstr "Corriger le problème"
|
851 |
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
853 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
854 |
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..."
|
855 |
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
857 |
msgid "Picture/Avatar upload"
|
858 |
msgstr "Téléchargement de photo ou d'avatar"
|
859 |
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
861 |
msgid "is created and writable"
|
862 |
msgstr "est créé et en écriture"
|
863 |
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
865 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
866 |
msgstr "N'est PAS créé ou le serveur Web N'a PAS les permissions pour l'écrire"
|
867 |
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
869 |
msgid "Show all fields in the welcome email"
|
870 |
msgstr "Montrer tous les champs dans le courriel de bienvenue"
|
871 |
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
873 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
874 |
msgstr "le courriel envoyé aux administrateurs et à l'utilisateur lors de l'inscription contiendra tous les champs"
|
875 |
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
877 |
msgid "Enable email confirmation"
|
878 |
msgstr "Activer la confirmation par courriel"
|
879 |
|
880 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
881 |
msgid "user that registers should confirm its email address via a link click"
|
882 |
msgstr "les utilisateurs qui s'inscrivent doivent confirmer leur adresse courriel grâce à un lien à cliquer"
|
883 |
|
884 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
885 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
886 |
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"
|
887 |
|
888 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
889 |
#, fuzzy
|
890 |
msgid "Enable form confirmation"
|
891 |
msgstr "Activer la confirmation par courriel"
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
894 |
msgid "a summary of the registration form will be presented to the user"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
898 |
msgid "Customize welcome email sent to the new user"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
902 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
906 |
msgid "Redirect to the source"
|
907 |
msgstr "Rediriger au référant"
|
908 |
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
910 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
911 |
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"
|
912 |
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
914 |
msgid "No captcha"
|
915 |
msgstr "Pas de captcha"
|
916 |
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
918 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
919 |
msgstr "Activer <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
920 |
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
922 |
msgid "Public KEY"
|
923 |
msgstr "Public KEY"
|
924 |
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
926 |
msgid "Private KEY"
|
927 |
msgstr "Private KEY"
|
928 |
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
930 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
931 |
msgstr "Activer <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
932 |
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
934 |
msgid "This captcha is probably weaker, but is easier for users"
|
935 |
msgstr "Ce captcha est probablement plus faible, mais plus facile d'utilisation pour les utilisateurs"
|
936 |
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
938 |
#, php-format
|
939 |
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>"
|
940 |
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>"
|
941 |
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
943 |
msgid "Change login/registration page logo"
|
944 |
msgstr "Changer le logo de la page de connexion et d'inscription"
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
947 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
948 |
msgstr "La largeur maximum recommandé est de 328px, mais n'importe quelle hauteur devrait fonctionner."
|
949 |
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
951 |
msgid "Database"
|
952 |
msgstr "Base de données"
|
953 |
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
958 |
msgid "select action"
|
959 |
msgstr "sélectionner une action"
|
960 |
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
962 |
msgid "Default values"
|
963 |
msgstr "Valeurs par défaut"
|
964 |
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
969 |
msgid "Delete"
|
970 |
msgstr "Supprimer"
|
971 |
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
976 |
msgid "NOT PRESENT"
|
977 |
msgstr "NON PRESENT"
|
978 |
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
980 |
msgid "WordPress Fields table"
|
981 |
msgstr "Table des champs WordPress"
|
982 |
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
986 |
msgid "Empty"
|
987 |
msgstr "Vider"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
990 |
msgid "Extra Fields table"
|
991 |
msgstr "Table des champs supplémentaires"
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
994 |
msgid "Users Data table"
|
995 |
msgstr "Table des données utilisateurs"
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
998 |
msgid "all data inserted by users in all and only extra fields"
|
999 |
msgstr "toutes les données insérées par les utilisateurs dans les champs supplémentaires seulement"
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
1002 |
msgid "Force tables creation"
|
1003 |
msgstr "Forcer la création des tables"
|
1004 |
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
1006 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1007 |
msgstr "équivalent à désactiver et activer le plug-in; aucune autre opération ne sera effectuée"
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1010 |
msgid "User Profile"
|
1011 |
msgstr "Profil utilisateur"
|
1012 |
|
1013 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1014 |
msgid "Extra Fields section title"
|
1015 |
msgstr "Titre de la section des champs supplémentaires"
|
1016 |
|
1017 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1018 |
msgid "Fieldset's titles, separates with comma"
|
1019 |
msgstr "Titres des regroupements, séparés par des virgules"
|
1020 |
|
1021 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1022 |
msgid "example: title1,title2,title3"
|
1023 |
msgstr "exemple : titre1,titre2,titre3"
|
1024 |
|
1025 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1026 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1027 |
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"
|
1028 |
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1030 |
msgid "Authors & Users Extended"
|
1031 |
msgstr "Auteurs & Utilisateurs Étendus"
|
1032 |
|
1033 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1034 |
msgid "Hide username field"
|
1035 |
msgstr "Cacher le champ nom d'utilisateur"
|
1036 |
|
1037 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1038 |
msgid "Hide name field"
|
1039 |
msgstr "Cacher le champ nom"
|
1040 |
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1042 |
msgid "Hide email field"
|
1043 |
msgstr "Cacher le champ courriel"
|
1044 |
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1046 |
msgid "Hide role field"
|
1047 |
msgstr "Cacher le champ rôle"
|
1048 |
|
1049 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:671
|
1050 |
msgid "Hide website field"
|
1051 |
msgstr "Cacher le champ du site Web"
|
1052 |
|
1053 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1054 |
msgid "Hide n. posts field"
|
1055 |
msgstr "Cacher le champ nbre d'articles"
|
1056 |
|
1057 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
1058 |
msgid "WordPress hidden fields"
|
1059 |
msgstr "Champs WordPress cachés"
|
1060 |
|
1061 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
1062 |
+
#, fuzzy
|
1063 |
+
msgid "Show username"
|
1064 |
+
msgstr "Montrer le nom"
|
1065 |
+
|
1066 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
|
1067 |
+
msgid "when unchecked the email address will be used as username"
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
1071 |
msgid "Show password"
|
1072 |
msgstr "Montrer le mot de passe"
|
1073 |
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
1075 |
msgid "Show confirmation password"
|
1076 |
msgstr "Montrer la confirmation du mot de passe"
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
1079 |
msgid "Show password strength meter"
|
1080 |
msgstr "Montrer l'indicateur de sûreté"
|
1081 |
|
1082 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
1083 |
msgid "Show first name"
|
1084 |
msgstr "Montrer le prénom"
|
1085 |
|
1086 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
1087 |
msgid "Show last name"
|
1088 |
msgstr "Montrer le nom"
|
1089 |
|
1090 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
|
1091 |
msgid "Show nickname"
|
1092 |
msgstr "Montrer le surnom"
|
1093 |
|
1094 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
1095 |
msgid "Show website"
|
1096 |
msgstr "Montrer le site web"
|
1097 |
|
1098 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
1099 |
msgid "Show AIM"
|
1100 |
msgstr "Montrer AIM"
|
1101 |
|
1102 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:721
|
1103 |
msgid "Show Yahoo IM"
|
1104 |
msgstr "Montrer Yahoo IM"
|
1105 |
|
1106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
1107 |
msgid "Show Jabber / Google Talk"
|
1108 |
msgstr "Montrer Jabber / Google Talk"
|
1109 |
|
1110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:729
|
1111 |
msgid "Show Biographical Info"
|
1112 |
msgstr "Afficher les renseignements biographiques"
|
1113 |
|
1129 |
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!"
|
1130 |
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!"
|
1131 |
|
1132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
|
1133 |
msgid "Password"
|
1134 |
msgstr "Mot de passe"
|
1135 |
|
1136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:236
|
1137 |
msgid "Password confirmation"
|
1138 |
msgstr "Confirmation du mot de passe"
|
1139 |
|
1140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:258
|
1141 |
msgid "First name"
|
1142 |
msgstr "Prénom"
|
1143 |
|
1144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
1145 |
msgid "Last name"
|
1146 |
msgstr "Nom"
|
1147 |
|
1148 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
1149 |
msgid "Nickname"
|
1150 |
msgstr "Pseudonyme"
|
1151 |
|
1152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:346
|
1153 |
msgid "AIM"
|
1154 |
msgstr "AIM"
|
1155 |
|
1156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:368
|
1157 |
msgid "Yahoo IM"
|
1158 |
msgstr "Yahoo IM"
|
1159 |
|
1160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:390
|
1161 |
msgid "Jabber / Google Talk"
|
1162 |
msgstr "Jabber / Google Talk"
|
1163 |
|
1164 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:412
|
1165 |
msgid "Biographical Info"
|
1166 |
msgstr "Renseignements biographiques"
|
1167 |
|
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 |
"Language: \n"
|
@@ -17,145 +17,146 @@ msgstr ""
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
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/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
35 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
36 |
msgid "ERROR"
|
37 |
msgstr "ERRORE"
|
38 |
|
39 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
40 |
msgid "does not match."
|
41 |
msgstr "non corrisponde."
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "non ha una sintassi email corretta."
|
46 |
|
47 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "non può essere vuoto."
|
50 |
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "non è corretto"
|
55 |
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "SI"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NO"
|
67 |
|
68 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
69 |
msgid "should be"
|
70 |
msgstr "deve essere"
|
71 |
|
72 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
73 |
msgid "should be an image."
|
74 |
msgstr "deve essere una immagine."
|
75 |
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr "non accetta questo tipo di file."
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "non può avere dimensione minore di"
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "non può avere lunghezza minore di"
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "non può avere dimensione diversa da"
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "non può avere lunghezza diversa da"
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "non può avere dimensione maggiore di"
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "non può avere lunghezza maggiore di"
|
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_register.php:
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr "Il codice inserito non è corretto."
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
112 |
msgid "Username"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
msgid "E-mail"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
msgid "Please upload a file with one of the following extensions"
|
124 |
msgstr "Per favore spedisci un file con una delle seguenti estensioni"
|
125 |
|
126 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
127 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
129 |
msgid "Please upload an image with one of the following extensions"
|
130 |
msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
|
131 |
|
132 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
133 |
msgid "Strength indicator"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
137 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
141 |
#, fuzzy
|
142 |
msgid "Change image"
|
143 |
msgstr "Cambia ordine"
|
144 |
|
145 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
146 |
msgid "Insert the code:"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
msgid "Confirm your registration"
|
152 |
msgstr "Conferma la registrazione"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
155 |
msgid "A password will be e-mailed to you."
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
159 |
msgid "← Back"
|
160 |
msgstr "← Indietro"
|
161 |
|
@@ -180,17 +181,17 @@ msgid "Change order"
|
|
180 |
msgstr "Cambia ordine"
|
181 |
|
182 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
184 |
msgid "Min length"
|
185 |
msgstr "Lunghezza Min"
|
186 |
|
187 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
189 |
msgid "Exact length"
|
190 |
msgstr "Lunghezza Esatta"
|
191 |
|
192 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
194 |
msgid "Max length"
|
195 |
msgstr "Lunghezza Max"
|
196 |
|
@@ -212,424 +213,424 @@ msgid "You cannot give an order that misses some numbers"
|
|
212 |
msgstr "Non puoi dare un ordine dove mancano alcuni numeri"
|
213 |
|
214 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
216 |
msgid "Nothing selected"
|
217 |
msgstr "Nessun campo selezionato"
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
220 |
msgid "Field(s)"
|
221 |
msgstr "Campo(i)"
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
224 |
msgid "deleted correctly"
|
225 |
msgstr "cancellato(i) correttamente"
|
226 |
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
229 |
msgid "Min size"
|
230 |
msgstr "Dimensione Min"
|
231 |
|
232 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
234 |
msgid "Exact size"
|
235 |
msgstr "Dimensione Esatta"
|
236 |
|
237 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
msgid "Max size"
|
240 |
msgstr "Dimensione Max"
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
243 |
msgid "Exact or Max size"
|
244 |
msgstr "Dimensione Esatta o Max"
|
245 |
|
246 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
247 |
msgid "Name not specified"
|
248 |
msgstr "Nome non specificato"
|
249 |
|
250 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
251 |
msgid "Name cannot contains spaces"
|
252 |
msgstr "Il Nome non può contenere spazi"
|
253 |
|
254 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
255 |
msgid "Label not specified"
|
256 |
msgstr "Etichetta non specificata"
|
257 |
|
258 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
259 |
msgid "not selected (with this type is necessary)"
|
260 |
msgstr "non selezionata (con questo tipo è necessario)"
|
261 |
|
262 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
263 |
msgid "If you select"
|
264 |
msgstr "Se selezioni"
|
265 |
|
266 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
267 |
msgid "you cannot select Min or Max"
|
268 |
msgstr "non puoi selezionare Min o Max"
|
269 |
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
273 |
msgid "should be in the range of"
|
274 |
msgstr "deve essere compreso tra"
|
275 |
|
276 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
277 |
msgid "Equal TO not specified"
|
278 |
msgstr "Uguale A non specificato"
|
279 |
|
280 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
281 |
msgid "With checkbox type Equal TO can only be"
|
282 |
msgstr "Con il tipo checkbox Uguale A può essere solo"
|
283 |
|
284 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
285 |
msgid "With radio type Equal TO can only be"
|
286 |
msgstr "Con il tipo radio Uguale A può essere solo"
|
287 |
|
288 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
289 |
msgid "With checkbox type Value can only be"
|
290 |
msgstr "Con il tipo checkbox Valore può essere solo"
|
291 |
|
292 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
293 |
msgid "With radio type Value can only be"
|
294 |
msgstr "Con il tipo radio Valore può essere solo"
|
295 |
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
297 |
msgid "Field inserted correctly"
|
298 |
msgstr "Campo inserito correttamente"
|
299 |
|
300 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
301 |
msgid "Field #"
|
302 |
msgstr "Campo #"
|
303 |
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
305 |
msgid "updated correctly"
|
306 |
msgstr "aggiornato correttamente"
|
307 |
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
309 |
msgid "Name inserted is just in the database, change to another one"
|
310 |
msgstr "Il Nome inserito è già nel database, cambialo con un altro"
|
311 |
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
314 |
msgid "Add a new Field"
|
315 |
msgstr "Aggiungi un campo"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
318 |
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."
|
319 |
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."
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
322 |
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'"
|
323 |
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'"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
326 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
327 |
msgstr "Con <strong>drop-down</strong>: devi aggiungere tutte le opzioni nell'etichetta per esempio: etichetta/oggetto1,oggetto2,oggetto3"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
330 |
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"
|
331 |
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"
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
334 |
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)"
|
335 |
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)"
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
338 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
339 |
msgstr "Con <strong>registration-date</strong>: <em>uguale A</em> significa il formato della data e dell'ora"
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
342 |
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"
|
343 |
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"
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
346 |
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"
|
347 |
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"
|
348 |
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
msgid "Name"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
msgid "Value"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
371 |
msgid "Type"
|
372 |
msgstr "Tipo"
|
373 |
|
374 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
378 |
msgid "Label"
|
379 |
msgstr "Etichetta"
|
380 |
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
382 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
383 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
msgid "Description"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
390 |
msgid "Rules"
|
391 |
msgstr "Regole"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
395 |
msgid "Actions"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
msgid "Fieldset"
|
403 |
msgstr "Raggruppamento"
|
404 |
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
407 |
msgid "Can be empty"
|
408 |
msgstr "Può essere vuoto"
|
409 |
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
412 |
msgid "Check for E-mail syntax"
|
413 |
msgstr "Controlla la sintassi dell'E-mail"
|
414 |
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
417 |
msgid "Can be modified"
|
418 |
msgstr "Può essere modificato"
|
419 |
|
420 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
422 |
msgid "Can be modified only if empty"
|
423 |
msgstr "Può essere modificato solo se vuoto"
|
424 |
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
427 |
msgid "Can be modified only by admin"
|
428 |
msgstr "Può essere modificato solo dall'admin"
|
429 |
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
432 |
msgid "Can be modified only by admin or if empty"
|
433 |
msgstr "Può essere modificato solo dall'admin o se vuoto"
|
434 |
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
436 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
437 |
msgid "Cannot be modified"
|
438 |
msgstr "Non può essere modificato"
|
439 |
|
440 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
441 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
442 |
msgid "Should be equal TO"
|
443 |
msgstr "Deve essere uguale A"
|
444 |
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
446 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
447 |
msgid "Case sensitive"
|
448 |
msgstr "Distinguere le maiuscole"
|
449 |
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
451 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
452 |
msgid "Regular Expression"
|
453 |
msgstr "Espressione Regolare"
|
454 |
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
456 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
457 |
msgid "Show the field in the registration"
|
458 |
msgstr "Mostra il campo nella registrazione"
|
459 |
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
461 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
462 |
msgid "Show the field in User's profile"
|
463 |
msgstr "Mostra il campo nel profilo dell'utente"
|
464 |
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
466 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
467 |
msgid "Show the field in Users Extended section"
|
468 |
msgstr "Mostra il campo nella sezione Utenti estesa"
|
469 |
|
470 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
471 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
472 |
msgid "Show the field in the search engine"
|
473 |
msgstr "Mostra il campo nel motore di ricerca"
|
474 |
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
476 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
477 |
msgid "Show the field in the blog"
|
478 |
msgstr "Mostra il campo nel blog"
|
479 |
|
480 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
481 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
482 |
msgid "Show the field if the role is at least:"
|
483 |
msgstr "Mostra il campo se il ruolo è almeno:"
|
484 |
|
485 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
486 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
487 |
msgid "Anonymous"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
491 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
492 |
msgid "User has 'view_cimy_extra_fields' capability"
|
493 |
msgstr "L'utente ha la capacità 'view_cimy_extra_fields'"
|
494 |
|
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 "Send an email to the admin if the user changes its value"
|
498 |
msgstr "Invia una email all'amministratore quando l'utente cambia il contenuto"
|
499 |
|
500 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
501 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
502 |
msgid "Advanced options"
|
503 |
msgstr "Opzioni avanzate"
|
504 |
|
505 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
506 |
msgid "Clear"
|
507 |
msgstr "Pulisci"
|
508 |
|
509 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
510 |
msgid "Invert selection"
|
511 |
msgstr "Inverti selezione"
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
514 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
515 |
msgstr "Sei sicuro di volere cancellare il(i) campo(i) e tutti i relativi dati inseriti dagli utenti?"
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
518 |
msgid "WordPress Fields"
|
519 |
msgstr "Campi WordPress"
|
520 |
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
525 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
527 |
msgid "Extra Fields"
|
528 |
msgstr "Campi Extra"
|
529 |
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
531 |
msgid "None!"
|
532 |
msgstr "Nessuno!"
|
533 |
|
534 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
535 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
536 |
msgid "Order"
|
537 |
msgstr "Ordine"
|
538 |
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
540 |
msgid "Reset"
|
541 |
msgstr "Reset"
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
545 |
msgid "SUCCESSFUL"
|
546 |
msgstr "SUCCESSO"
|
547 |
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
549 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
550 |
msgid "select"
|
551 |
msgstr "seleziona"
|
552 |
|
553 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
554 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
555 |
msgid "Users per page"
|
556 |
msgstr "Utenti per pagina"
|
557 |
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
msgid "Apply"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
565 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
566 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
567 |
msgid "Users Extended"
|
568 |
msgstr "Utenti Estesa"
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
571 |
#, php-format
|
572 |
msgid "Search results for “%s”"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
576 |
#, php-format
|
577 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
581 |
msgid "Search Users"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
585 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
586 |
#, fuzzy
|
587 |
msgid "Role"
|
588 |
msgstr "Regole"
|
589 |
|
590 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
593 |
msgid "Website"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
msgid "Posts"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
602 |
msgid "View posts by this author"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
606 |
msgid "Super Admin"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
610 |
#, php-format
|
611 |
msgid "e-mail: %s"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
615 |
#, fuzzy
|
616 |
msgid "Change"
|
617 |
msgstr "Cambia ordine"
|
618 |
|
619 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
620 |
msgid "Update selected users"
|
621 |
msgstr "Aggiorna gli utenti selezionati"
|
622 |
|
623 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
624 |
#, fuzzy
|
625 |
msgid "Update"
|
626 |
msgstr "Aggiorna campo"
|
627 |
|
628 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
629 |
msgid "OK"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
633 |
msgid "Cancel"
|
634 |
msgstr ""
|
635 |
|
@@ -639,9 +640,9 @@ msgid "New user registration on your site %s:"
|
|
639 |
msgstr ""
|
640 |
|
641 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
642 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
643 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
644 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
645 |
#, php-format
|
646 |
msgid "Username: %s"
|
647 |
msgstr ""
|
@@ -661,15 +662,15 @@ msgstr ""
|
|
661 |
msgid "[%s] Your username and password"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
665 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
666 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
667 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
668 |
#, php-format
|
669 |
msgid "%s: %s"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
673 |
#, php-format
|
674 |
msgid ""
|
675 |
"To activate your user, please click the following link:\n"
|
@@ -686,52 +687,52 @@ msgstr ""
|
|
686 |
"Dopo l’attivazione, si riceverà *un’altra email* con i dati di login.\n"
|
687 |
"\n"
|
688 |
|
689 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
691 |
msgid "Your account is now active!"
|
692 |
msgstr "Il tuo account è ora attivo!"
|
693 |
|
694 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
695 |
#, php-format
|
696 |
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>."
|
697 |
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>"
|
698 |
|
699 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
700 |
msgid "An error occurred during the activation"
|
701 |
msgstr "Si è verificato un errore durante l'attivazione"
|
702 |
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
704 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
706 |
#, fuzzy, php-format
|
707 |
msgid "Password: %s"
|
708 |
msgstr "Mostra password"
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
711 |
msgid "Invalid activation key."
|
712 |
msgstr "Chiave di attivazione non valida."
|
713 |
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
715 |
msgid "The site is already active."
|
716 |
msgstr "Il sito è già attivo."
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
719 |
msgid "Could not create user"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
723 |
msgid "That username is already activated."
|
724 |
msgstr "Il nome utente è già stato attivato."
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
727 |
msgid "That username is currently reserved but may be available in a couple of days."
|
728 |
msgstr "Il nome utente è attualmente riservato ma potrebbe rendersi disponibile in un paio di giorni."
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
731 |
msgid "username and email used"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
735 |
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."
|
736 |
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."
|
737 |
|
@@ -748,7 +749,7 @@ msgid "Update the file"
|
|
748 |
msgstr "Aggiorna il file"
|
749 |
|
750 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
751 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
752 |
msgid "Delete the picture"
|
753 |
msgstr "Cancella l'immagine"
|
754 |
|
@@ -771,330 +772,338 @@ msgid "%s (%s) has changed one or more fields"
|
|
771 |
msgstr "%s (%s) ha cambiato uno o più campi"
|
772 |
|
773 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
775 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
776 |
msgid "Options"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
780 |
msgid "WordPress Fields table emptied"
|
781 |
msgstr "Tabella Campi WordPress svuotata"
|
782 |
|
783 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
784 |
msgid "WordPress Fields table deleted"
|
785 |
msgstr "Tabella Campi WordPress cancellata"
|
786 |
|
787 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
788 |
msgid "Extra Fields table emptied"
|
789 |
msgstr "Tabella Campi Extra svuotata"
|
790 |
|
791 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
792 |
msgid "Extra Fields table deleted"
|
793 |
msgstr "Tabella Campi Extra cancellata"
|
794 |
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
796 |
msgid "Users Data table emptied"
|
797 |
msgstr "Tabella Dati degli Utenti svuotata"
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
800 |
msgid "Users Data table deleted"
|
801 |
msgstr "Tabella Dati degli Utenti cancellata"
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
804 |
msgid "Options set to default values"
|
805 |
msgstr "Opzioni settate ai valori di default"
|
806 |
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
808 |
msgid "Options deleted"
|
809 |
msgstr "Opzioni cancellate"
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
812 |
msgid "Options changed"
|
813 |
msgstr "Opzioni cambiate"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
816 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
817 |
msgstr "Questa operazione creerà/aggiornerà tutte le tabelle/opzioni mancanti, vuoi procedere?"
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
820 |
msgid "Support the Cimy Project"
|
821 |
msgstr "Supporta il progetto Cimy"
|
822 |
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
824 |
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!"
|
825 |
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!"
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
829 |
msgid "Save Changes"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
833 |
msgid "General"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
837 |
msgid "installed is"
|
838 |
msgstr "installata"
|
839 |
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
841 |
msgid "OPTIONS DELETED!"
|
842 |
msgstr "OPZIONI CANCELLATE!"
|
843 |
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
846 |
msgid "Fix the problem"
|
847 |
msgstr "Aggiusta il problema"
|
848 |
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
850 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
851 |
msgstr "VERSIONI NON CORRISPONDENTI! Avviene quando non hai disattivato e riattivato il plug-in dopo l'aggiornamento! Questo può dare dei problemi..."
|
852 |
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
854 |
msgid "Picture/Avatar upload"
|
855 |
msgstr "Picture/Avatar upload"
|
856 |
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
858 |
msgid "is created and writable"
|
859 |
msgstr "è creata e scrivibile"
|
860 |
|
861 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
862 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
863 |
msgstr "NON è stata creata o il webserver NON ha il permesso di scrittura su di essa"
|
864 |
|
865 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
866 |
msgid "Show all fields in the welcome email"
|
867 |
msgstr "Mostra tutti i campi nella email di benvenuto"
|
868 |
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
870 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
871 |
msgstr "l'email spedita all'amministratore e all'utente al momento della registrazione avrà tutti i campi"
|
872 |
|
873 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
874 |
msgid "Enable email confirmation"
|
875 |
msgstr "Abilita la conferma dell'email"
|
876 |
|
877 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
878 |
msgid "user that registers should confirm its email address via a link click"
|
879 |
msgstr "gli utenti che si registrano devono confermare il loro indirizzo email cliccando su un link"
|
880 |
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
882 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
883 |
msgstr "<strong>nota:</strong> abilitando questa opzione verranno disabilitati (solo durante la registrazione) tutti i campi di upload: file, picture, avatar"
|
884 |
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
886 |
msgid "Enable form confirmation"
|
887 |
msgstr "Abilita la conferma della registrazione"
|
888 |
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
890 |
msgid "a summary of the registration form will be presented to the user"
|
891 |
msgstr "un riassunto del form di registrazione sarà presentato all'utente"
|
892 |
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
894 |
msgid "Customize welcome email sent to the new user"
|
895 |
msgstr "Personalizza la email di benvenuto inviata al nuovo utente"
|
896 |
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
898 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
899 |
msgstr "se vengono cambiati o rimossi i segnaposti l'email non avrà le corrette informazioni"
|
900 |
|
901 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
902 |
msgid "Redirect to the source"
|
903 |
msgstr "Ridireziona alla fonte"
|
904 |
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
906 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
907 |
msgstr "dopo la registrazione o la conferma l'utente verrà redirezionato all'indirizzo dov'era esattamente prima di cliccare sul link della registrazione"
|
908 |
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
910 |
msgid "No captcha"
|
911 |
msgstr "Nessun captcha"
|
912 |
|
913 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
914 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
915 |
msgstr "Abilita <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
916 |
|
917 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
918 |
msgid "Public KEY"
|
919 |
msgstr "Chiave pubblica"
|
920 |
|
921 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
922 |
msgid "Private KEY"
|
923 |
msgstr "Chiave privata"
|
924 |
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
926 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
927 |
msgstr "Abilita <a href=\"http://www.phpcaptcha.org\" target=\"_blank\">Securimage Captcha</a>"
|
928 |
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
930 |
msgid "This captcha is probably weaker, but is easier for users"
|
931 |
msgstr "Questo captcha è probabilmente più debole, ma più facile da usare per gli utenti"
|
932 |
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
934 |
#, php-format
|
935 |
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>"
|
936 |
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>"
|
937 |
|
938 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
939 |
msgid "Change login/registration page logo"
|
940 |
msgstr "Cambia il logo nella pagina di login/registrazione"
|
941 |
|
942 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
943 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
944 |
msgstr "La larghezza massima raccomandata del logo è 328 pixel, qualsiasi altezza dovrebbe funzionare."
|
945 |
|
946 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
947 |
msgid "Database"
|
948 |
msgstr "Database"
|
949 |
|
950 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
951 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
952 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
954 |
msgid "select action"
|
955 |
msgstr "seleziona una azione"
|
956 |
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
958 |
msgid "Default values"
|
959 |
msgstr "Valori di default"
|
960 |
|
961 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
962 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
965 |
msgid "Delete"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
970 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
971 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
972 |
msgid "NOT PRESENT"
|
973 |
msgstr "NON PRESENTE"
|
974 |
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
976 |
msgid "WordPress Fields table"
|
977 |
msgstr "Tabella Campi WordPress"
|
978 |
|
979 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
980 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
982 |
msgid "Empty"
|
983 |
msgstr "Svuota"
|
984 |
|
985 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
986 |
msgid "Extra Fields table"
|
987 |
msgstr "Tabella Campi Extra"
|
988 |
|
989 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
990 |
msgid "Users Data table"
|
991 |
msgstr "Tabella Dati degli Utenti"
|
992 |
|
993 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
994 |
msgid "all data inserted by users in all and only extra fields"
|
995 |
msgstr "tutti i dati inseriti dagli utenti in tutti e soli i campi extra"
|
996 |
|
997 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
998 |
msgid "Force tables creation"
|
999 |
msgstr "Forza la creazione delle tabelle"
|
1000 |
|
1001 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1002 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1003 |
msgstr "equivalente a disattivare e attivare il plug-in; nessun'altra operazione sarà effettuata"
|
1004 |
|
1005 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1006 |
msgid "User Profile"
|
1007 |
msgstr "Profilo utente"
|
1008 |
|
1009 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1010 |
msgid "Extra Fields section title"
|
1011 |
msgstr "Titolo della sezione Campi Extra"
|
1012 |
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1014 |
msgid "Fieldset's titles, separates with comma"
|
1015 |
msgstr "Titoli dei raggruppamenti, separati dalla virgola"
|
1016 |
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1018 |
msgid "example: title1,title2,title3"
|
1019 |
msgstr "esempio: titolo1, titolo2, titolo3"
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1022 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1023 |
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"
|
1024 |
|
1025 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1026 |
msgid "Authors & Users Extended"
|
1027 |
msgstr "Autori & Utenti Estesa"
|
1028 |
|
1029 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1030 |
msgid "Hide username field"
|
1031 |
msgstr "Nascondi il campo nome utente"
|
1032 |
|
1033 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1034 |
msgid "Hide name field"
|
1035 |
msgstr "Nascondi il campo nome"
|
1036 |
|
1037 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1038 |
msgid "Hide email field"
|
1039 |
msgstr "Nascondi il campo email"
|
1040 |
|
1041 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1042 |
msgid "Hide role field"
|
1043 |
msgstr "Nascondi il campo ruolo"
|
1044 |
|
1045 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1046 |
msgid "Hide website field"
|
1047 |
msgstr "Nascondi il campo sito web"
|
1048 |
|
1049 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1050 |
msgid "Hide n. posts field"
|
1051 |
msgstr "Nascondi il campo n. di post"
|
1052 |
|
1053 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1054 |
msgid "WordPress hidden fields"
|
1055 |
msgstr "Campi nascosti di WordPress"
|
1056 |
|
1057 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1058 |
msgid "Show password"
|
1059 |
msgstr "Mostra password"
|
1060 |
|
1061 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1062 |
msgid "Show confirmation password"
|
1063 |
msgstr "Mostra conferma della password"
|
1064 |
|
1065 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1066 |
msgid "Show password strength meter"
|
1067 |
msgstr "Mostra indicatore di forza della password"
|
1068 |
|
1069 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1070 |
msgid "Show first name"
|
1071 |
msgstr "Mostra nome"
|
1072 |
|
1073 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1074 |
msgid "Show last name"
|
1075 |
msgstr "Mostra cognome"
|
1076 |
|
1077 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1078 |
msgid "Show nickname"
|
1079 |
msgstr "Mostra nickname"
|
1080 |
|
1081 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1082 |
msgid "Show website"
|
1083 |
msgstr "Mostra sito web"
|
1084 |
|
1085 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1086 |
msgid "Show AIM"
|
1087 |
msgstr "Mostra AIM"
|
1088 |
|
1089 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1090 |
msgid "Show Yahoo IM"
|
1091 |
msgstr "Mostra Yahoo IM"
|
1092 |
|
1093 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1094 |
msgid "Show Jabber / Google Talk"
|
1095 |
msgstr "Mostra Jabber / Google Talk"
|
1096 |
|
1097 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1098 |
msgid "Show Biographical Info"
|
1099 |
msgstr "Mostra informazioni biografiche"
|
1100 |
|
@@ -1116,45 +1125,45 @@ msgstr ""
|
|
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 "<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!"
|
1118 |
|
1119 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1120 |
#, fuzzy
|
1121 |
msgid "Password"
|
1122 |
msgstr "Mostra password"
|
1123 |
|
1124 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1125 |
msgid "Password confirmation"
|
1126 |
msgstr "Conferma password"
|
1127 |
|
1128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1129 |
#, fuzzy
|
1130 |
msgid "First name"
|
1131 |
msgstr "Mostra nome"
|
1132 |
|
1133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1134 |
#, fuzzy
|
1135 |
msgid "Last name"
|
1136 |
msgstr "Mostra cognome"
|
1137 |
|
1138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1139 |
#, fuzzy
|
1140 |
msgid "Nickname"
|
1141 |
msgstr "Mostra nickname"
|
1142 |
|
1143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1144 |
msgid "AIM"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1148 |
#, fuzzy
|
1149 |
msgid "Yahoo IM"
|
1150 |
msgstr "Mostra Yahoo IM"
|
1151 |
|
1152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1153 |
#, fuzzy
|
1154 |
msgid "Jabber / Google Talk"
|
1155 |
msgstr "Mostra Jabber / Google Talk"
|
1156 |
|
1157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1158 |
msgid "Biographical Info"
|
1159 |
msgstr ""
|
1160 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:52-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:56-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
|
|
|
|
|
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
36 |
msgid "ERROR"
|
37 |
msgstr "ERRORE"
|
38 |
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
40 |
msgid "does not match."
|
41 |
msgstr "non corrisponde."
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "non ha una sintassi email corretta."
|
46 |
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "non può essere vuoto."
|
50 |
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
52 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "non è corretto"
|
55 |
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
59 |
msgid "YES"
|
60 |
msgstr "SI"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
65 |
msgid "NO"
|
66 |
msgstr "NO"
|
67 |
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
69 |
msgid "should be"
|
70 |
msgstr "deve essere"
|
71 |
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
73 |
msgid "should be an image."
|
74 |
msgstr "deve essere una immagine."
|
75 |
|
76 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr "non accetta questo tipo di file."
|
79 |
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "non può avere dimensione minore di"
|
83 |
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "non può avere lunghezza minore di"
|
87 |
|
88 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "non può avere dimensione diversa da"
|
91 |
|
92 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "non può avere lunghezza diversa da"
|
95 |
|
96 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "non può avere dimensione maggiore di"
|
99 |
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "non può avere lunghezza maggiore di"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr "Il codice inserito non è corretto."
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
119 |
msgid "E-mail"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Per favore spedisci un file con una delle seguenti estensioni"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1007
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
134 |
msgid "Strength indicator"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
138 |
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 ! \" ? $ % ^ & )."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
142 |
#, fuzzy
|
143 |
msgid "Change image"
|
144 |
msgstr "Cambia ordine"
|
145 |
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
147 |
msgid "Insert the code:"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr "Conferma la registrazione"
|
154 |
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1313
|
160 |
msgid "← Back"
|
161 |
msgstr "← Indietro"
|
162 |
|
181 |
msgstr "Cambia ordine"
|
182 |
|
183 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
|
185 |
msgid "Min length"
|
186 |
msgstr "Lunghezza Min"
|
187 |
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
190 |
msgid "Exact length"
|
191 |
msgstr "Lunghezza Esatta"
|
192 |
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
194 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
195 |
msgid "Max length"
|
196 |
msgstr "Lunghezza Max"
|
197 |
|
213 |
msgstr "Non puoi dare un ordine dove mancano alcuni numeri"
|
214 |
|
215 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
216 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
217 |
msgid "Nothing selected"
|
218 |
msgstr "Nessun campo selezionato"
|
219 |
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
221 |
msgid "Field(s)"
|
222 |
msgstr "Campo(i)"
|
223 |
|
224 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
225 |
msgid "deleted correctly"
|
226 |
msgstr "cancellato(i) correttamente"
|
227 |
|
228 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
230 |
msgid "Min size"
|
231 |
msgstr "Dimensione Min"
|
232 |
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
235 |
msgid "Exact size"
|
236 |
msgstr "Dimensione Esatta"
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
240 |
msgid "Max size"
|
241 |
msgstr "Dimensione Max"
|
242 |
|
243 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
244 |
msgid "Exact or Max size"
|
245 |
msgstr "Dimensione Esatta o Max"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
248 |
msgid "Name not specified"
|
249 |
msgstr "Nome non specificato"
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
252 |
msgid "Name cannot contains spaces"
|
253 |
msgstr "Il Nome non può contenere spazi"
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
256 |
msgid "Label not specified"
|
257 |
msgstr "Etichetta non specificata"
|
258 |
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
260 |
msgid "not selected (with this type is necessary)"
|
261 |
msgstr "non selezionata (con questo tipo è necessario)"
|
262 |
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
264 |
msgid "If you select"
|
265 |
msgstr "Se selezioni"
|
266 |
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
268 |
msgid "you cannot select Min or Max"
|
269 |
msgstr "non puoi selezionare Min o Max"
|
270 |
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
274 |
msgid "should be in the range of"
|
275 |
msgstr "deve essere compreso tra"
|
276 |
|
277 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
278 |
msgid "Equal TO not specified"
|
279 |
msgstr "Uguale A non specificato"
|
280 |
|
281 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
282 |
msgid "With checkbox type Equal TO can only be"
|
283 |
msgstr "Con il tipo checkbox Uguale A può essere solo"
|
284 |
|
285 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
286 |
msgid "With radio type Equal TO can only be"
|
287 |
msgstr "Con il tipo radio Uguale A può essere solo"
|
288 |
|
289 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
290 |
msgid "With checkbox type Value can only be"
|
291 |
msgstr "Con il tipo checkbox Valore può essere solo"
|
292 |
|
293 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
294 |
msgid "With radio type Value can only be"
|
295 |
msgstr "Con il tipo radio Valore può essere solo"
|
296 |
|
297 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
298 |
msgid "Field inserted correctly"
|
299 |
msgstr "Campo inserito correttamente"
|
300 |
|
301 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
302 |
msgid "Field #"
|
303 |
msgstr "Campo #"
|
304 |
|
305 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
306 |
msgid "updated correctly"
|
307 |
msgstr "aggiornato correttamente"
|
308 |
|
309 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
310 |
msgid "Name inserted is just in the database, change to another one"
|
311 |
msgstr "Il Nome inserito è già nel database, cambialo con un altro"
|
312 |
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
315 |
msgid "Add a new Field"
|
316 |
msgstr "Aggiungi un campo"
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
319 |
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."
|
320 |
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."
|
321 |
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
323 |
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'"
|
324 |
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'"
|
325 |
|
326 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
327 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
328 |
msgstr "Con <strong>drop-down</strong>: devi aggiungere tutte le opzioni nell'etichetta per esempio: etichetta/oggetto1,oggetto2,oggetto3"
|
329 |
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
331 |
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"
|
332 |
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"
|
333 |
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
335 |
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)"
|
336 |
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)"
|
337 |
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
339 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
340 |
msgstr "Con <strong>registration-date</strong>: <em>uguale A</em> significa il formato della data e dell'ora"
|
341 |
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
343 |
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"
|
344 |
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"
|
345 |
|
346 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
347 |
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"
|
348 |
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"
|
349 |
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
356 |
msgid "Name"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
360 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
365 |
msgid "Value"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
372 |
msgid "Type"
|
373 |
msgstr "Tipo"
|
374 |
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
379 |
msgid "Label"
|
380 |
msgstr "Etichetta"
|
381 |
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
386 |
msgid "Description"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
391 |
msgid "Rules"
|
392 |
msgstr "Regole"
|
393 |
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
396 |
msgid "Actions"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
403 |
msgid "Fieldset"
|
404 |
msgstr "Raggruppamento"
|
405 |
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
408 |
msgid "Can be empty"
|
409 |
msgstr "Può essere vuoto"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
412 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
413 |
msgid "Check for E-mail syntax"
|
414 |
msgstr "Controlla la sintassi dell'E-mail"
|
415 |
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
418 |
msgid "Can be modified"
|
419 |
msgstr "Può essere modificato"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
422 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
423 |
msgid "Can be modified only if empty"
|
424 |
msgstr "Può essere modificato solo se vuoto"
|
425 |
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
427 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
428 |
msgid "Can be modified only by admin"
|
429 |
msgstr "Può essere modificato solo dall'admin"
|
430 |
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
432 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
433 |
msgid "Can be modified only by admin or if empty"
|
434 |
msgstr "Può essere modificato solo dall'admin o se vuoto"
|
435 |
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
438 |
msgid "Cannot be modified"
|
439 |
msgstr "Non può essere modificato"
|
440 |
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
443 |
msgid "Should be equal TO"
|
444 |
msgstr "Deve essere uguale A"
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
448 |
msgid "Case sensitive"
|
449 |
msgstr "Distinguere le maiuscole"
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
452 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
453 |
msgid "Regular Expression"
|
454 |
msgstr "Espressione Regolare"
|
455 |
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
457 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
458 |
msgid "Show the field in the registration"
|
459 |
msgstr "Mostra il campo nella registrazione"
|
460 |
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
463 |
msgid "Show the field in User's profile"
|
464 |
msgstr "Mostra il campo nel profilo dell'utente"
|
465 |
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
468 |
msgid "Show the field in Users Extended section"
|
469 |
msgstr "Mostra il campo nella sezione Utenti estesa"
|
470 |
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
472 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
473 |
msgid "Show the field in the search engine"
|
474 |
msgstr "Mostra il campo nel motore di ricerca"
|
475 |
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
478 |
msgid "Show the field in the blog"
|
479 |
msgstr "Mostra il campo nel blog"
|
480 |
|
481 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
483 |
msgid "Show the field if the role is at least:"
|
484 |
msgstr "Mostra il campo se il ruolo è almeno:"
|
485 |
|
486 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
488 |
msgid "Anonymous"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
492 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
493 |
msgid "User has 'view_cimy_extra_fields' capability"
|
494 |
msgstr "L'utente ha la capacità 'view_cimy_extra_fields'"
|
495 |
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
498 |
msgid "Send an email to the admin if the user changes its value"
|
499 |
msgstr "Invia una email all'amministratore quando l'utente cambia il contenuto"
|
500 |
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
503 |
msgid "Advanced options"
|
504 |
msgstr "Opzioni avanzate"
|
505 |
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
507 |
msgid "Clear"
|
508 |
msgstr "Pulisci"
|
509 |
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
511 |
msgid "Invert selection"
|
512 |
msgstr "Inverti selezione"
|
513 |
|
514 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
515 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
516 |
msgstr "Sei sicuro di volere cancellare il(i) campo(i) e tutti i relativi dati inseriti dagli utenti?"
|
517 |
|
518 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
519 |
msgid "WordPress Fields"
|
520 |
msgstr "Campi WordPress"
|
521 |
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
526 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
528 |
msgid "Extra Fields"
|
529 |
msgstr "Campi Extra"
|
530 |
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
532 |
msgid "None!"
|
533 |
msgstr "Nessuno!"
|
534 |
|
535 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
536 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
537 |
msgid "Order"
|
538 |
msgstr "Ordine"
|
539 |
|
540 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
541 |
msgid "Reset"
|
542 |
msgstr "Reset"
|
543 |
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
545 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
546 |
msgid "SUCCESSFUL"
|
547 |
msgstr "SUCCESSO"
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
550 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
551 |
msgid "select"
|
552 |
msgstr "seleziona"
|
553 |
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
555 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
556 |
msgid "Users per page"
|
557 |
msgstr "Utenti per pagina"
|
558 |
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
560 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
561 |
msgid "Apply"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
565 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
566 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
567 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
568 |
msgid "Users Extended"
|
569 |
msgstr "Utenti Estesa"
|
570 |
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
572 |
#, php-format
|
573 |
msgid "Search results for “%s”"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
577 |
#, php-format
|
578 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
582 |
msgid "Search Users"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
587 |
#, fuzzy
|
588 |
msgid "Role"
|
589 |
msgstr "Regole"
|
590 |
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
594 |
msgid "Website"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
599 |
msgid "Posts"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
603 |
msgid "View posts by this author"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
607 |
msgid "Super Admin"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
611 |
#, php-format
|
612 |
msgid "e-mail: %s"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
616 |
#, fuzzy
|
617 |
msgid "Change"
|
618 |
msgstr "Cambia ordine"
|
619 |
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
621 |
msgid "Update selected users"
|
622 |
msgstr "Aggiorna gli utenti selezionati"
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
625 |
#, fuzzy
|
626 |
msgid "Update"
|
627 |
msgstr "Aggiorna campo"
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
630 |
msgid "OK"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
634 |
msgid "Cancel"
|
635 |
msgstr ""
|
636 |
|
640 |
msgstr ""
|
641 |
|
642 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
646 |
#, php-format
|
647 |
msgid "Username: %s"
|
648 |
msgstr ""
|
662 |
msgid "[%s] Your username and password"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
666 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
667 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
668 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
669 |
#, php-format
|
670 |
msgid "%s: %s"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
674 |
#, php-format
|
675 |
msgid ""
|
676 |
"To activate your user, please click the following link:\n"
|
687 |
"Dopo l’attivazione, si riceverà *un’altra email* con i dati di login.\n"
|
688 |
"\n"
|
689 |
|
690 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
691 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
692 |
msgid "Your account is now active!"
|
693 |
msgstr "Il tuo account è ora attivo!"
|
694 |
|
695 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
696 |
#, php-format
|
697 |
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>."
|
698 |
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>"
|
699 |
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
701 |
msgid "An error occurred during the activation"
|
702 |
msgstr "Si è verificato un errore durante l'attivazione"
|
703 |
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
705 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
706 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
707 |
#, fuzzy, php-format
|
708 |
msgid "Password: %s"
|
709 |
msgstr "Mostra password"
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
712 |
msgid "Invalid activation key."
|
713 |
msgstr "Chiave di attivazione non valida."
|
714 |
|
715 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
716 |
msgid "The site is already active."
|
717 |
msgstr "Il sito è già attivo."
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
720 |
msgid "Could not create user"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
724 |
msgid "That username is already activated."
|
725 |
msgstr "Il nome utente è già stato attivato."
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
728 |
msgid "That username is currently reserved but may be available in a couple of days."
|
729 |
msgstr "Il nome utente è attualmente riservato ma potrebbe rendersi disponibile in un paio di giorni."
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
732 |
msgid "username and email used"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
736 |
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."
|
737 |
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."
|
738 |
|
749 |
msgstr "Aggiorna il file"
|
750 |
|
751 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
753 |
msgid "Delete the picture"
|
754 |
msgstr "Cancella l'immagine"
|
755 |
|
772 |
msgstr "%s (%s) ha cambiato uno o più campi"
|
773 |
|
774 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
777 |
msgid "Options"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
781 |
msgid "WordPress Fields table emptied"
|
782 |
msgstr "Tabella Campi WordPress svuotata"
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
785 |
msgid "WordPress Fields table deleted"
|
786 |
msgstr "Tabella Campi WordPress cancellata"
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
789 |
msgid "Extra Fields table emptied"
|
790 |
msgstr "Tabella Campi Extra svuotata"
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
793 |
msgid "Extra Fields table deleted"
|
794 |
msgstr "Tabella Campi Extra cancellata"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
797 |
msgid "Users Data table emptied"
|
798 |
msgstr "Tabella Dati degli Utenti svuotata"
|
799 |
|
800 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
801 |
msgid "Users Data table deleted"
|
802 |
msgstr "Tabella Dati degli Utenti cancellata"
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
805 |
msgid "Options set to default values"
|
806 |
msgstr "Opzioni settate ai valori di default"
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
809 |
msgid "Options deleted"
|
810 |
msgstr "Opzioni cancellate"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
813 |
msgid "Options changed"
|
814 |
msgstr "Opzioni cambiate"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
817 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
818 |
msgstr "Questa operazione creerà/aggiornerà tutte le tabelle/opzioni mancanti, vuoi procedere?"
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
821 |
msgid "Support the Cimy Project"
|
822 |
msgstr "Supporta il progetto Cimy"
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
825 |
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!"
|
826 |
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!"
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
829 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
830 |
msgid "Save Changes"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
834 |
msgid "General"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
838 |
msgid "installed is"
|
839 |
msgstr "installata"
|
840 |
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
842 |
msgid "OPTIONS DELETED!"
|
843 |
msgstr "OPZIONI CANCELLATE!"
|
844 |
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
847 |
msgid "Fix the problem"
|
848 |
msgstr "Aggiusta il problema"
|
849 |
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
851 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
852 |
msgstr "VERSIONI NON CORRISPONDENTI! Avviene quando non hai disattivato e riattivato il plug-in dopo l'aggiornamento! Questo può dare dei problemi..."
|
853 |
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
855 |
msgid "Picture/Avatar upload"
|
856 |
msgstr "Picture/Avatar upload"
|
857 |
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
859 |
msgid "is created and writable"
|
860 |
msgstr "è creata e scrivibile"
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
863 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
864 |
msgstr "NON è stata creata o il webserver NON ha il permesso di scrittura su di essa"
|
865 |
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
867 |
msgid "Show all fields in the welcome email"
|
868 |
msgstr "Mostra tutti i campi nella email di benvenuto"
|
869 |
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
871 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
872 |
msgstr "l'email spedita all'amministratore e all'utente al momento della registrazione avrà tutti i campi"
|
873 |
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
875 |
msgid "Enable email confirmation"
|
876 |
msgstr "Abilita la conferma dell'email"
|
877 |
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
879 |
msgid "user that registers should confirm its email address via a link click"
|
880 |
msgstr "gli utenti che si registrano devono confermare il loro indirizzo email cliccando su un link"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
883 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
884 |
msgstr "<strong>nota:</strong> abilitando questa opzione verranno disabilitati (solo durante la registrazione) tutti i campi di upload: file, picture, avatar"
|
885 |
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
887 |
msgid "Enable form confirmation"
|
888 |
msgstr "Abilita la conferma della registrazione"
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
891 |
msgid "a summary of the registration form will be presented to the user"
|
892 |
msgstr "un riassunto del form di registrazione sarà presentato all'utente"
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
895 |
msgid "Customize welcome email sent to the new user"
|
896 |
msgstr "Personalizza la email di benvenuto inviata al nuovo utente"
|
897 |
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
899 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
900 |
msgstr "se vengono cambiati o rimossi i segnaposti l'email non avrà le corrette informazioni"
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
903 |
msgid "Redirect to the source"
|
904 |
msgstr "Ridireziona alla fonte"
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
907 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
908 |
msgstr "dopo la registrazione o la conferma l'utente verrà redirezionato all'indirizzo dov'era esattamente prima di cliccare sul link della registrazione"
|
909 |
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
911 |
msgid "No captcha"
|
912 |
msgstr "Nessun captcha"
|
913 |
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
915 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
916 |
msgstr "Abilita <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
917 |
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
919 |
msgid "Public KEY"
|
920 |
msgstr "Chiave pubblica"
|
921 |
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
923 |
msgid "Private KEY"
|
924 |
msgstr "Chiave privata"
|
925 |
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
927 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
928 |
msgstr "Abilita <a href=\"http://www.phpcaptcha.org\" target=\"_blank\">Securimage Captcha</a>"
|
929 |
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
931 |
msgid "This captcha is probably weaker, but is easier for users"
|
932 |
msgstr "Questo captcha è probabilmente più debole, ma più facile da usare per gli utenti"
|
933 |
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
935 |
#, php-format
|
936 |
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>"
|
937 |
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>"
|
938 |
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
940 |
msgid "Change login/registration page logo"
|
941 |
msgstr "Cambia il logo nella pagina di login/registrazione"
|
942 |
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
944 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
945 |
msgstr "La larghezza massima raccomandata del logo è 328 pixel, qualsiasi altezza dovrebbe funzionare."
|
946 |
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
948 |
msgid "Database"
|
949 |
msgstr "Database"
|
950 |
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
952 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
955 |
msgid "select action"
|
956 |
msgstr "seleziona una azione"
|
957 |
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
959 |
msgid "Default values"
|
960 |
msgstr "Valori di default"
|
961 |
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
966 |
msgid "Delete"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
973 |
msgid "NOT PRESENT"
|
974 |
msgstr "NON PRESENTE"
|
975 |
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
977 |
msgid "WordPress Fields table"
|
978 |
msgstr "Tabella Campi WordPress"
|
979 |
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
983 |
msgid "Empty"
|
984 |
msgstr "Svuota"
|
985 |
|
986 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
987 |
msgid "Extra Fields table"
|
988 |
msgstr "Tabella Campi Extra"
|
989 |
|
990 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
991 |
msgid "Users Data table"
|
992 |
msgstr "Tabella Dati degli Utenti"
|
993 |
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
995 |
msgid "all data inserted by users in all and only extra fields"
|
996 |
msgstr "tutti i dati inseriti dagli utenti in tutti e soli i campi extra"
|
997 |
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
999 |
msgid "Force tables creation"
|
1000 |
msgstr "Forza la creazione delle tabelle"
|
1001 |
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
1003 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1004 |
msgstr "equivalente a disattivare e attivare il plug-in; nessun'altra operazione sarà effettuata"
|
1005 |
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1007 |
msgid "User Profile"
|
1008 |
msgstr "Profilo utente"
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1011 |
msgid "Extra Fields section title"
|
1012 |
msgstr "Titolo della sezione Campi Extra"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1015 |
msgid "Fieldset's titles, separates with comma"
|
1016 |
msgstr "Titoli dei raggruppamenti, separati dalla virgola"
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1019 |
msgid "example: title1,title2,title3"
|
1020 |
msgstr "esempio: titolo1, titolo2, titolo3"
|
1021 |
|
1022 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1023 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1024 |
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"
|
1025 |
|
1026 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1027 |
msgid "Authors & Users Extended"
|
1028 |
msgstr "Autori & Utenti Estesa"
|
1029 |
|
1030 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1031 |
msgid "Hide username field"
|
1032 |
msgstr "Nascondi il campo nome utente"
|
1033 |
|
1034 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1035 |
msgid "Hide name field"
|
1036 |
msgstr "Nascondi il campo nome"
|
1037 |
|
1038 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1039 |
msgid "Hide email field"
|
1040 |
msgstr "Nascondi il campo email"
|
1041 |
|
1042 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1043 |
msgid "Hide role field"
|
1044 |
msgstr "Nascondi il campo ruolo"
|
1045 |
|
1046 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:671
|
1047 |
msgid "Hide website field"
|
1048 |
msgstr "Nascondi il campo sito web"
|
1049 |
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1051 |
msgid "Hide n. posts field"
|
1052 |
msgstr "Nascondi il campo n. di post"
|
1053 |
|
1054 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
1055 |
msgid "WordPress hidden fields"
|
1056 |
msgstr "Campi nascosti di WordPress"
|
1057 |
|
1058 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
1059 |
+
msgid "Show username"
|
1060 |
+
msgstr "Mostra il nome utente"
|
1061 |
+
|
1062 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
|
1063 |
+
msgid "when unchecked the email address will be used as username"
|
1064 |
+
msgstr "quando deselezionato, l'indirizzo email sarà usato al posto del nome utente"
|
1065 |
+
|
1066 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
1067 |
msgid "Show password"
|
1068 |
msgstr "Mostra password"
|
1069 |
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
1071 |
msgid "Show confirmation password"
|
1072 |
msgstr "Mostra conferma della password"
|
1073 |
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
1075 |
msgid "Show password strength meter"
|
1076 |
msgstr "Mostra indicatore di forza della password"
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
1079 |
msgid "Show first name"
|
1080 |
msgstr "Mostra nome"
|
1081 |
|
1082 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
1083 |
msgid "Show last name"
|
1084 |
msgstr "Mostra cognome"
|
1085 |
|
1086 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
|
1087 |
msgid "Show nickname"
|
1088 |
msgstr "Mostra nickname"
|
1089 |
|
1090 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
1091 |
msgid "Show website"
|
1092 |
msgstr "Mostra sito web"
|
1093 |
|
1094 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
1095 |
msgid "Show AIM"
|
1096 |
msgstr "Mostra AIM"
|
1097 |
|
1098 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:721
|
1099 |
msgid "Show Yahoo IM"
|
1100 |
msgstr "Mostra Yahoo IM"
|
1101 |
|
1102 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
1103 |
msgid "Show Jabber / Google Talk"
|
1104 |
msgstr "Mostra Jabber / Google Talk"
|
1105 |
|
1106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:729
|
1107 |
msgid "Show Biographical Info"
|
1108 |
msgstr "Mostra informazioni biografiche"
|
1109 |
|
1125 |
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!"
|
1126 |
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!"
|
1127 |
|
1128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
|
1129 |
#, fuzzy
|
1130 |
msgid "Password"
|
1131 |
msgstr "Mostra password"
|
1132 |
|
1133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:236
|
1134 |
msgid "Password confirmation"
|
1135 |
msgstr "Conferma password"
|
1136 |
|
1137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:258
|
1138 |
#, fuzzy
|
1139 |
msgid "First name"
|
1140 |
msgstr "Mostra nome"
|
1141 |
|
1142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
1143 |
#, fuzzy
|
1144 |
msgid "Last name"
|
1145 |
msgstr "Mostra cognome"
|
1146 |
|
1147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
1148 |
#, fuzzy
|
1149 |
msgid "Nickname"
|
1150 |
msgstr "Mostra nickname"
|
1151 |
|
1152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:346
|
1153 |
msgid "AIM"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:368
|
1157 |
#, fuzzy
|
1158 |
msgid "Yahoo IM"
|
1159 |
msgstr "Mostra Yahoo IM"
|
1160 |
|
1161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:390
|
1162 |
#, fuzzy
|
1163 |
msgid "Jabber / Google Talk"
|
1164 |
msgstr "Mostra Jabber / Google Talk"
|
1165 |
|
1166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:412
|
1167 |
msgid "Biographical Info"
|
1168 |
msgstr ""
|
1169 |
|
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 |
"Language: \n"
|
@@ -17,145 +17,146 @@ msgstr ""
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
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/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
35 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
36 |
msgid "ERROR"
|
37 |
msgstr "BŁĄD"
|
38 |
|
39 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "nie jest prawidłowym adresem email."
|
46 |
|
47 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "nie może być pusty"
|
50 |
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "jest nieprawidłowy"
|
55 |
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "TAK"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NIE"
|
67 |
|
68 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
69 |
msgid "should be"
|
70 |
msgstr "powinien być"
|
71 |
|
72 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
73 |
msgid "should be an image."
|
74 |
msgstr "powinien być obrazkiem."
|
75 |
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "nie może być mniejszy niż"
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "nie może być krótszy niż"
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "musi mieć rozmiar"
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "musi mieć długość"
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "nie może być większy niż"
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "nie może być dłuższy niż"
|
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_register.php:
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
112 |
msgid "Username"
|
113 |
msgstr "Nazwa użytkownika"
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
msgid "E-mail"
|
119 |
msgstr "E-mail"
|
120 |
|
121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
msgid "Please upload a file with one of the following extensions"
|
124 |
msgstr "Wgraj plik w jednym z następujących formatów"
|
125 |
|
126 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
127 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
129 |
msgid "Please upload an image with one of the following extensions"
|
130 |
msgstr "Wgraj obrazek w jednym z następujących formatów"
|
131 |
|
132 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
133 |
msgid "Strength indicator"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
137 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
141 |
#, fuzzy
|
142 |
msgid "Change image"
|
143 |
msgstr "Zmień kolejność"
|
144 |
|
145 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
146 |
msgid "Insert the code:"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
msgid "Confirm your registration"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
155 |
msgid "A password will be e-mailed to you."
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
159 |
msgid "← Back"
|
160 |
msgstr ""
|
161 |
|
@@ -180,17 +181,17 @@ msgid "Change order"
|
|
180 |
msgstr "Zmień kolejność"
|
181 |
|
182 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
184 |
msgid "Min length"
|
185 |
msgstr "Długość min"
|
186 |
|
187 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
189 |
msgid "Exact length"
|
190 |
msgstr "Długość dokładna"
|
191 |
|
192 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
194 |
msgid "Max length"
|
195 |
msgstr "Długość max"
|
196 |
|
@@ -212,426 +213,426 @@ msgid "You cannot give an order that misses some numbers"
|
|
212 |
msgstr "Nie możesz podać kolejności która pomija część liczb"
|
213 |
|
214 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
216 |
msgid "Nothing selected"
|
217 |
msgstr "Nie wybrano niczego"
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
220 |
msgid "Field(s)"
|
221 |
msgstr "Pole(a)"
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
224 |
msgid "deleted correctly"
|
225 |
msgstr "wykasowano prawidłowo"
|
226 |
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
229 |
msgid "Min size"
|
230 |
msgstr "Rozmiar min"
|
231 |
|
232 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
234 |
msgid "Exact size"
|
235 |
msgstr "Rozmiar dokładny"
|
236 |
|
237 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
msgid "Max size"
|
240 |
msgstr "Rozmiar max"
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
243 |
msgid "Exact or Max size"
|
244 |
msgstr "Rozmiar dokładny lub max"
|
245 |
|
246 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
247 |
msgid "Name not specified"
|
248 |
msgstr "Nazwa nie określona"
|
249 |
|
250 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
251 |
msgid "Name cannot contains spaces"
|
252 |
msgstr "Nazwa nie może zawierać spacji"
|
253 |
|
254 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
255 |
msgid "Label not specified"
|
256 |
msgstr "Etykieta nie określona"
|
257 |
|
258 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
259 |
msgid "not selected (with this type is necessary)"
|
260 |
msgstr "nie wybrano (niezbędne dla tego typu)"
|
261 |
|
262 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
263 |
msgid "If you select"
|
264 |
msgstr "Jeżeli wybierzesz"
|
265 |
|
266 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
267 |
msgid "you cannot select Min or Max"
|
268 |
msgstr "Nie możesz wybrać Min lub Max"
|
269 |
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
273 |
msgid "should be in the range of"
|
274 |
msgstr "powinien się mieścić w zakresie"
|
275 |
|
276 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
277 |
msgid "Equal TO not specified"
|
278 |
msgstr "równość (=) nie określona"
|
279 |
|
280 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
281 |
msgid "With checkbox type Equal TO can only be"
|
282 |
msgstr "Dla <strong>checkbox</strong> może być tylko równość"
|
283 |
|
284 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
285 |
msgid "With radio type Equal TO can only be"
|
286 |
msgstr "Dla <strong>radio</strong> może być tylko równość"
|
287 |
|
288 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
289 |
msgid "With checkbox type Value can only be"
|
290 |
msgstr "Dla <strong>checkbox</strong> wartość może być tylko"
|
291 |
|
292 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
293 |
msgid "With radio type Value can only be"
|
294 |
msgstr "Dla <strong>radio</strong> wartość może być tylko"
|
295 |
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
297 |
msgid "Field inserted correctly"
|
298 |
msgstr "Pole wstawione poprawnie"
|
299 |
|
300 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
301 |
msgid "Field #"
|
302 |
msgstr "Pole #"
|
303 |
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
305 |
msgid "updated correctly"
|
306 |
msgstr "zaktualizowane prawidłowo"
|
307 |
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
309 |
msgid "Name inserted is just in the database, change to another one"
|
310 |
msgstr "Podana nazwa już jest w bazie danych, zmień na inną"
|
311 |
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
314 |
msgid "Add a new Field"
|
315 |
msgstr "Dodaj nowe pole"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
318 |
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."
|
319 |
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."
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
322 |
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'"
|
323 |
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."
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
326 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
327 |
msgstr "Dla <strong>listy (drop-down)</strong>: musisz podać wszystkie opcje w etykiecie. Np.: etykieta/wartość1,wartość2,wartość3. "
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
330 |
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"
|
331 |
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."
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
334 |
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)"
|
335 |
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)."
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
338 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
339 |
msgstr "Dla <strong>daty rejestracji</strong>: <em>równe</em> oznacza datę i czas rejestracji."
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
342 |
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"
|
343 |
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."
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
346 |
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"
|
347 |
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"
|
348 |
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
msgid "Name"
|
356 |
msgstr "Nazwa"
|
357 |
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
msgid "Value"
|
365 |
msgstr "Wartość"
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
371 |
msgid "Type"
|
372 |
msgstr "Typ"
|
373 |
|
374 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
378 |
msgid "Label"
|
379 |
msgstr "Etykieta"
|
380 |
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
382 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
383 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
msgid "Description"
|
386 |
msgstr "Opis"
|
387 |
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
390 |
msgid "Rules"
|
391 |
msgstr "Reguły"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
395 |
msgid "Actions"
|
396 |
msgstr "Działania"
|
397 |
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
msgid "Fieldset"
|
403 |
msgstr "Grupa pól"
|
404 |
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
407 |
msgid "Can be empty"
|
408 |
msgstr "Może być puste"
|
409 |
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
412 |
msgid "Check for E-mail syntax"
|
413 |
msgstr "Sprawdzaj poprawność adresu email"
|
414 |
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
417 |
msgid "Can be modified"
|
418 |
msgstr "Może być zmieniane"
|
419 |
|
420 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
422 |
msgid "Can be modified only if empty"
|
423 |
msgstr "Może być zmienione tylko jeśli jest puste"
|
424 |
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
427 |
msgid "Can be modified only by admin"
|
428 |
msgstr "Może być modyfikowane tylko przez administratora"
|
429 |
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
432 |
msgid "Can be modified only by admin or if empty"
|
433 |
msgstr "Może być modyfikowane tylko przez administratora jeśli jest puste"
|
434 |
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
436 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
437 |
msgid "Cannot be modified"
|
438 |
msgstr "Nie może być zmieniane"
|
439 |
|
440 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
441 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
442 |
msgid "Should be equal TO"
|
443 |
msgstr "Powinno być równe"
|
444 |
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
446 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
447 |
msgid "Case sensitive"
|
448 |
msgstr "Rozróżnia wielkość liter"
|
449 |
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
451 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
452 |
msgid "Regular Expression"
|
453 |
msgstr "Wyrażenie regularne"
|
454 |
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
456 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
457 |
msgid "Show the field in the registration"
|
458 |
msgstr "Pokaż pole podczas rejestracji"
|
459 |
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
461 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
462 |
msgid "Show the field in User's profile"
|
463 |
msgstr "Pokaż pole w profilu użytkownika"
|
464 |
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
466 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
467 |
#, fuzzy
|
468 |
msgid "Show the field in Users Extended section"
|
469 |
msgstr "Pokaż pole na rozszerzonej liście użytkowników"
|
470 |
|
471 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
472 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
473 |
msgid "Show the field in the search engine"
|
474 |
msgstr "Pokaż pole w profilu użytkownika"
|
475 |
|
476 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
477 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
478 |
msgid "Show the field in the blog"
|
479 |
msgstr "Pokaż pole na blogu"
|
480 |
|
481 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
483 |
msgid "Show the field if the role is at least:"
|
484 |
msgstr "Pokaż pole jeżeli rolą użytkownika jest przynajmniej:"
|
485 |
|
486 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
msgid "Anonymous"
|
489 |
msgstr "Anonim"
|
490 |
|
491 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
493 |
msgid "User has 'view_cimy_extra_fields' capability"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
498 |
msgid "Send an email to the admin if the user changes its value"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
503 |
#, fuzzy
|
504 |
msgid "Advanced options"
|
505 |
msgstr "Działania"
|
506 |
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
508 |
msgid "Clear"
|
509 |
msgstr "Wyczyść"
|
510 |
|
511 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
512 |
msgid "Invert selection"
|
513 |
msgstr "Odwróć wybór"
|
514 |
|
515 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
516 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
517 |
msgstr "Czy na pewno chcesz wykasować pola i wszystkie dane wprowadzone w nie przez użytkowników"
|
518 |
|
519 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
520 |
msgid "WordPress Fields"
|
521 |
msgstr "Pola Wordpressa"
|
522 |
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
525 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
527 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
529 |
msgid "Extra Fields"
|
530 |
msgstr "Pola dodatkowe"
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
msgid "None!"
|
534 |
msgstr "Brak!"
|
535 |
|
536 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
538 |
msgid "Order"
|
539 |
msgstr "Kolejność"
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
542 |
msgid "Reset"
|
543 |
msgstr "Wyczyść"
|
544 |
|
545 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
547 |
msgid "SUCCESSFUL"
|
548 |
msgstr "PRAWIDŁOWO"
|
549 |
|
550 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
552 |
msgid "select"
|
553 |
msgstr "- Wybierz -"
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
557 |
msgid "Users per page"
|
558 |
msgstr "Użytkowników na stronie"
|
559 |
|
560 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
562 |
msgid "Apply"
|
563 |
msgstr "Zastosuj"
|
564 |
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
566 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
567 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
568 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
569 |
msgid "Users Extended"
|
570 |
msgstr "Lista rozszerzona"
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
573 |
#, php-format
|
574 |
msgid "Search results for “%s”"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
578 |
#, php-format
|
579 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
msgid "Search Users"
|
584 |
msgstr "Szukaj użytkowników"
|
585 |
|
586 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
msgid "Role"
|
589 |
msgstr "Rola"
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
594 |
msgid "Website"
|
595 |
msgstr "Strona internetowa"
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
msgid "Posts"
|
600 |
msgstr "Wpisy"
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
603 |
msgid "View posts by this author"
|
604 |
msgstr "Zobacz wpisy tego autora"
|
605 |
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
607 |
msgid "Super Admin"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
611 |
#, php-format
|
612 |
msgid "e-mail: %s"
|
613 |
msgstr "e-mail: %s"
|
614 |
|
615 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
616 |
#, fuzzy
|
617 |
msgid "Change"
|
618 |
msgstr "Zmień kolejność"
|
619 |
|
620 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
621 |
#, fuzzy
|
622 |
msgid "Update selected users"
|
623 |
msgstr "Usuń wybrane pola"
|
624 |
|
625 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
626 |
#, fuzzy
|
627 |
msgid "Update"
|
628 |
msgstr "Zaktualizuj pole"
|
629 |
|
630 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
631 |
msgid "OK"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
635 |
msgid "Cancel"
|
636 |
msgstr ""
|
637 |
|
@@ -641,9 +642,9 @@ msgid "New user registration on your site %s:"
|
|
641 |
msgstr ""
|
642 |
|
643 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
644 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
645 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
646 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
647 |
#, fuzzy, php-format
|
648 |
msgid "Username: %s"
|
649 |
msgstr "Nazwa użytkownika"
|
@@ -663,15 +664,15 @@ msgstr ""
|
|
663 |
msgid "[%s] Your username and password"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
667 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
668 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
669 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
670 |
#, php-format
|
671 |
msgid "%s: %s"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
675 |
#, php-format
|
676 |
msgid ""
|
677 |
"To activate your user, please click the following link:\n"
|
@@ -682,52 +683,52 @@ msgid ""
|
|
682 |
"\n"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
687 |
msgid "Your account is now active!"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
691 |
#, php-format
|
692 |
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>."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
696 |
msgid "An error occurred during the activation"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
700 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
702 |
#, fuzzy, php-format
|
703 |
msgid "Password: %s"
|
704 |
msgstr "Hasło"
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
707 |
msgid "Invalid activation key."
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
711 |
msgid "The site is already active."
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
715 |
msgid "Could not create user"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
719 |
msgid "That username is already activated."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
723 |
msgid "That username is currently reserved but may be available in a couple of days."
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
727 |
msgid "username and email used"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
731 |
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."
|
732 |
msgstr ""
|
733 |
|
@@ -744,7 +745,7 @@ msgid "Update the file"
|
|
744 |
msgstr "Zaktualizuj plik"
|
745 |
|
746 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
747 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
748 |
msgid "Delete the picture"
|
749 |
msgstr "Usuń obrazek"
|
750 |
|
@@ -767,333 +768,342 @@ msgid "%s (%s) has changed one or more fields"
|
|
767 |
msgstr ""
|
768 |
|
769 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
770 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
771 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
772 |
msgid "Options"
|
773 |
msgstr "Opcje"
|
774 |
|
775 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
776 |
msgid "WordPress Fields table emptied"
|
777 |
msgstr "Pola wordpressa zostały wyczyszczone"
|
778 |
|
779 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
780 |
msgid "WordPress Fields table deleted"
|
781 |
msgstr "Tabele wordpressa zostały usunięte"
|
782 |
|
783 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
784 |
msgid "Extra Fields table emptied"
|
785 |
msgstr "Pola dodatkowe zostały wyczyszczone"
|
786 |
|
787 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
788 |
msgid "Extra Fields table deleted"
|
789 |
msgstr "Dodatkowe tabele zostały usunięte"
|
790 |
|
791 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
792 |
msgid "Users Data table emptied"
|
793 |
msgstr "Dane użytkowników zostały wyczyszczone"
|
794 |
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
796 |
msgid "Users Data table deleted"
|
797 |
msgstr "Tabela użytkowników została usunięta"
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
800 |
msgid "Options set to default values"
|
801 |
msgstr "Opcje zostały zmienione na domyślne"
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
804 |
msgid "Options deleted"
|
805 |
msgstr "Opcje zostały wykasowane"
|
806 |
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
808 |
msgid "Options changed"
|
809 |
msgstr "Opcje zostały zmienione"
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
812 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
813 |
msgstr "Ta operacja stworzy/zaktualizuje wszystkie brakujące tabele/opcje, kontynuować?"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
816 |
msgid "Support the Cimy Project"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
820 |
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!"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
824 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
825 |
msgid "Save Changes"
|
826 |
msgstr "Zapisz zmiany"
|
827 |
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
829 |
msgid "General"
|
830 |
msgstr "Ogólne"
|
831 |
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
833 |
msgid "installed is"
|
834 |
msgstr "jest zainstalowany"
|
835 |
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
837 |
msgid "OPTIONS DELETED!"
|
838 |
msgstr "OPCJE USUNIĘTE!"
|
839 |
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
842 |
msgid "Fix the problem"
|
843 |
msgstr "Usuń problem"
|
844 |
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
846 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
847 |
msgstr "Wersja niekompatybilna! Nie deaktywowałeś a następnie nie reaktywowałeś wtyczki po aktualizacji wordpressa! To może spowodować problemy..."
|
848 |
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
850 |
msgid "Picture/Avatar upload"
|
851 |
msgstr "Wgrywanie obrazka/avatara"
|
852 |
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
854 |
msgid "is created and writable"
|
855 |
msgstr "jest utworzony i zapisywalny"
|
856 |
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
858 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
859 |
msgstr "NIE był wgrywany lub serwer nie ma możliwości zapisywania do niego"
|
860 |
|
861 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
862 |
#, fuzzy
|
863 |
msgid "Show all fields in the welcome email"
|
864 |
msgstr "Pokaż pole na blogu"
|
865 |
|
866 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
867 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
871 |
msgid "Enable email confirmation"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
875 |
msgid "user that registers should confirm its email address via a link click"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
879 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
883 |
msgid "Enable form confirmation"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
887 |
msgid "a summary of the registration form will be presented to the user"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
891 |
msgid "Customize welcome email sent to the new user"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
895 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
899 |
msgid "Redirect to the source"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
903 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
907 |
msgid "No captcha"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
911 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
915 |
msgid "Public KEY"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
919 |
msgid "Private KEY"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
923 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
927 |
msgid "This captcha is probably weaker, but is easier for users"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
931 |
#, php-format
|
932 |
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>"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
936 |
msgid "Change login/registration page logo"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
940 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
944 |
msgid "Database"
|
945 |
msgstr "Baza danych"
|
946 |
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
950 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
951 |
msgid "select action"
|
952 |
msgstr "wybór czynności"
|
953 |
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
955 |
msgid "Default values"
|
956 |
msgstr "Wartości domyślne"
|
957 |
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
961 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
962 |
msgid "Delete"
|
963 |
msgstr "Usuń"
|
964 |
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
966 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
967 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
969 |
msgid "NOT PRESENT"
|
970 |
msgstr "NIE OBECNA"
|
971 |
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
973 |
msgid "WordPress Fields table"
|
974 |
msgstr "Tabela pól Wordpressa"
|
975 |
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
979 |
msgid "Empty"
|
980 |
msgstr "Opróżnij"
|
981 |
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
983 |
msgid "Extra Fields table"
|
984 |
msgstr "Tabela pól dodatkowych"
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
987 |
msgid "Users Data table"
|
988 |
msgstr "Tabela danych użytkowników"
|
989 |
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
991 |
msgid "all data inserted by users in all and only extra fields"
|
992 |
msgstr "wszystkie dane wstawione przez użytkowników do pól dodatkowych"
|
993 |
|
994 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
995 |
msgid "Force tables creation"
|
996 |
msgstr "Wymuś utworzenie tabel"
|
997 |
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
999 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1000 |
msgstr "równoważne deaktywacji i ponownej reaktywacji wtyczki; żadne inne operacje nie zostaną wykonane"
|
1001 |
|
1002 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1003 |
msgid "User Profile"
|
1004 |
msgstr "Profil użytkownika"
|
1005 |
|
1006 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1007 |
msgid "Extra Fields section title"
|
1008 |
msgstr "Tytuł sekcji pól dodatkowych"
|
1009 |
|
1010 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1011 |
msgid "Fieldset's titles, separates with comma"
|
1012 |
msgstr "Tytuły grup pól, rozdziel przecinkami"
|
1013 |
|
1014 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1015 |
msgid "example: title1,title2,title3"
|
1016 |
msgstr "Przykład: tytuł1, tytuł2, tytuł3"
|
1017 |
|
1018 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1019 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1020 |
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"
|
1021 |
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1023 |
msgid "Authors & Users Extended"
|
1024 |
msgstr "Rozszerzenia kont"
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1027 |
msgid "Hide username field"
|
1028 |
msgstr "Ukryj pole z nazwą użytkownika"
|
1029 |
|
1030 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1031 |
msgid "Hide name field"
|
1032 |
msgstr "Ukryj nazwę"
|
1033 |
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1035 |
msgid "Hide email field"
|
1036 |
msgstr "Ukryj adres email"
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1039 |
msgid "Hide role field"
|
1040 |
msgstr "Ukryj rolę"
|
1041 |
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1043 |
msgid "Hide website field"
|
1044 |
msgstr "Ukryj pole witryna"
|
1045 |
|
1046 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1047 |
msgid "Hide n. posts field"
|
1048 |
msgstr "Ukryj liczbę wpisów"
|
1049 |
|
1050 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1051 |
msgid "WordPress hidden fields"
|
1052 |
msgstr "Ukryte pola Worpdressa"
|
1053 |
|
1054 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1055 |
msgid "Show password"
|
1056 |
msgstr "Pokaż hasło"
|
1057 |
|
1058 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1059 |
#, fuzzy
|
1060 |
msgid "Show confirmation password"
|
1061 |
msgstr "Pokaż hasło"
|
1062 |
|
1063 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1064 |
#, fuzzy
|
1065 |
msgid "Show password strength meter"
|
1066 |
msgstr "Pokaż hasło"
|
1067 |
|
1068 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1069 |
msgid "Show first name"
|
1070 |
msgstr "Pokaż imię"
|
1071 |
|
1072 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1073 |
msgid "Show last name"
|
1074 |
msgstr "Pokaż nazwisko"
|
1075 |
|
1076 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1077 |
msgid "Show nickname"
|
1078 |
msgstr "Pokaż pseudonim"
|
1079 |
|
1080 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1081 |
msgid "Show website"
|
1082 |
msgstr "pokaż witrynę"
|
1083 |
|
1084 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1085 |
msgid "Show AIM"
|
1086 |
msgstr "Pokaż \"AIM\""
|
1087 |
|
1088 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1089 |
msgid "Show Yahoo IM"
|
1090 |
msgstr "Pokaż \"Yahoo IM\""
|
1091 |
|
1092 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1093 |
msgid "Show Jabber / Google Talk"
|
1094 |
msgstr "Pokaż \"Jabber / Google Talk\""
|
1095 |
|
1096 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1097 |
msgid "Show Biographical Info"
|
1098 |
msgstr "Pokaż informacje dodatkowe"
|
1099 |
|
@@ -1115,39 +1125,39 @@ msgstr "Plik '%s' musi być obrazkiem"
|
|
1115 |
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!"
|
1116 |
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."
|
1117 |
|
1118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1119 |
msgid "Password"
|
1120 |
msgstr "Hasło"
|
1121 |
|
1122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1123 |
msgid "Password confirmation"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1127 |
msgid "First name"
|
1128 |
msgstr "Imię"
|
1129 |
|
1130 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1131 |
msgid "Last name"
|
1132 |
msgstr "Nazwisko"
|
1133 |
|
1134 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1135 |
msgid "Nickname"
|
1136 |
msgstr "Pseudonim"
|
1137 |
|
1138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1139 |
msgid "AIM"
|
1140 |
msgstr "AIM"
|
1141 |
|
1142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1143 |
msgid "Yahoo IM"
|
1144 |
msgstr "Yahoo IM"
|
1145 |
|
1146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1147 |
msgid "Jabber / Google Talk"
|
1148 |
msgstr "Jabber / Google Talk"
|
1149 |
|
1150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1151 |
msgid "Biographical Info"
|
1152 |
msgstr "Biografia"
|
1153 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:56-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:56-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <pik256@gmail.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
|
|
|
|
|
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
36 |
msgid "ERROR"
|
37 |
msgstr "BŁĄD"
|
38 |
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "nie jest prawidłowym adresem email."
|
46 |
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "nie może być pusty"
|
50 |
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
52 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "jest nieprawidłowy"
|
55 |
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
59 |
msgid "YES"
|
60 |
msgstr "TAK"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
65 |
msgid "NO"
|
66 |
msgstr "NIE"
|
67 |
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
69 |
msgid "should be"
|
70 |
msgstr "powinien być"
|
71 |
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
73 |
msgid "should be an image."
|
74 |
msgstr "powinien być obrazkiem."
|
75 |
|
76 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "nie może być mniejszy niż"
|
83 |
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "nie może być krótszy niż"
|
87 |
|
88 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "musi mieć rozmiar"
|
91 |
|
92 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "musi mieć długość"
|
95 |
|
96 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "nie może być większy niż"
|
99 |
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "nie może być dłuższy niż"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Nazwa użytkownika"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Wgraj plik w jednym z następujących formatów"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1007
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Wgraj obrazek w jednym z następujących formatów"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
134 |
msgid "Strength indicator"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
138 |
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 ! \" ? $ % ^ & )."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
142 |
#, fuzzy
|
143 |
msgid "Change image"
|
144 |
msgstr "Zmień kolejność"
|
145 |
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
147 |
msgid "Insert the code:"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1313
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
181 |
msgstr "Zmień kolejność"
|
182 |
|
183 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
|
185 |
msgid "Min length"
|
186 |
msgstr "Długość min"
|
187 |
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
190 |
msgid "Exact length"
|
191 |
msgstr "Długość dokładna"
|
192 |
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
194 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
195 |
msgid "Max length"
|
196 |
msgstr "Długość max"
|
197 |
|
213 |
msgstr "Nie możesz podać kolejności która pomija część liczb"
|
214 |
|
215 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
216 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
217 |
msgid "Nothing selected"
|
218 |
msgstr "Nie wybrano niczego"
|
219 |
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
221 |
msgid "Field(s)"
|
222 |
msgstr "Pole(a)"
|
223 |
|
224 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
225 |
msgid "deleted correctly"
|
226 |
msgstr "wykasowano prawidłowo"
|
227 |
|
228 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
230 |
msgid "Min size"
|
231 |
msgstr "Rozmiar min"
|
232 |
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
235 |
msgid "Exact size"
|
236 |
msgstr "Rozmiar dokładny"
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
240 |
msgid "Max size"
|
241 |
msgstr "Rozmiar max"
|
242 |
|
243 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
244 |
msgid "Exact or Max size"
|
245 |
msgstr "Rozmiar dokładny lub max"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
248 |
msgid "Name not specified"
|
249 |
msgstr "Nazwa nie określona"
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
252 |
msgid "Name cannot contains spaces"
|
253 |
msgstr "Nazwa nie może zawierać spacji"
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
256 |
msgid "Label not specified"
|
257 |
msgstr "Etykieta nie określona"
|
258 |
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
260 |
msgid "not selected (with this type is necessary)"
|
261 |
msgstr "nie wybrano (niezbędne dla tego typu)"
|
262 |
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
264 |
msgid "If you select"
|
265 |
msgstr "Jeżeli wybierzesz"
|
266 |
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
268 |
msgid "you cannot select Min or Max"
|
269 |
msgstr "Nie możesz wybrać Min lub Max"
|
270 |
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
274 |
msgid "should be in the range of"
|
275 |
msgstr "powinien się mieścić w zakresie"
|
276 |
|
277 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
278 |
msgid "Equal TO not specified"
|
279 |
msgstr "równość (=) nie określona"
|
280 |
|
281 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
282 |
msgid "With checkbox type Equal TO can only be"
|
283 |
msgstr "Dla <strong>checkbox</strong> może być tylko równość"
|
284 |
|
285 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
286 |
msgid "With radio type Equal TO can only be"
|
287 |
msgstr "Dla <strong>radio</strong> może być tylko równość"
|
288 |
|
289 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
290 |
msgid "With checkbox type Value can only be"
|
291 |
msgstr "Dla <strong>checkbox</strong> wartość może być tylko"
|
292 |
|
293 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
294 |
msgid "With radio type Value can only be"
|
295 |
msgstr "Dla <strong>radio</strong> wartość może być tylko"
|
296 |
|
297 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
298 |
msgid "Field inserted correctly"
|
299 |
msgstr "Pole wstawione poprawnie"
|
300 |
|
301 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
302 |
msgid "Field #"
|
303 |
msgstr "Pole #"
|
304 |
|
305 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
306 |
msgid "updated correctly"
|
307 |
msgstr "zaktualizowane prawidłowo"
|
308 |
|
309 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
310 |
msgid "Name inserted is just in the database, change to another one"
|
311 |
msgstr "Podana nazwa już jest w bazie danych, zmień na inną"
|
312 |
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
315 |
msgid "Add a new Field"
|
316 |
msgstr "Dodaj nowe pole"
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
319 |
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."
|
320 |
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."
|
321 |
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
323 |
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'"
|
324 |
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."
|
325 |
|
326 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
327 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
328 |
msgstr "Dla <strong>listy (drop-down)</strong>: musisz podać wszystkie opcje w etykiecie. Np.: etykieta/wartość1,wartość2,wartość3. "
|
329 |
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
331 |
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"
|
332 |
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."
|
333 |
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
335 |
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)"
|
336 |
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)."
|
337 |
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
339 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
340 |
msgstr "Dla <strong>daty rejestracji</strong>: <em>równe</em> oznacza datę i czas rejestracji."
|
341 |
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
343 |
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"
|
344 |
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."
|
345 |
|
346 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
347 |
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"
|
348 |
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"
|
349 |
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
356 |
msgid "Name"
|
357 |
msgstr "Nazwa"
|
358 |
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
360 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
365 |
msgid "Value"
|
366 |
msgstr "Wartość"
|
367 |
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
372 |
msgid "Type"
|
373 |
msgstr "Typ"
|
374 |
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
379 |
msgid "Label"
|
380 |
msgstr "Etykieta"
|
381 |
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
386 |
msgid "Description"
|
387 |
msgstr "Opis"
|
388 |
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
391 |
msgid "Rules"
|
392 |
msgstr "Reguły"
|
393 |
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
396 |
msgid "Actions"
|
397 |
msgstr "Działania"
|
398 |
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
403 |
msgid "Fieldset"
|
404 |
msgstr "Grupa pól"
|
405 |
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
408 |
msgid "Can be empty"
|
409 |
msgstr "Może być puste"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
412 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
413 |
msgid "Check for E-mail syntax"
|
414 |
msgstr "Sprawdzaj poprawność adresu email"
|
415 |
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
418 |
msgid "Can be modified"
|
419 |
msgstr "Może być zmieniane"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
422 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
423 |
msgid "Can be modified only if empty"
|
424 |
msgstr "Może być zmienione tylko jeśli jest puste"
|
425 |
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
427 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
428 |
msgid "Can be modified only by admin"
|
429 |
msgstr "Może być modyfikowane tylko przez administratora"
|
430 |
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
432 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
433 |
msgid "Can be modified only by admin or if empty"
|
434 |
msgstr "Może być modyfikowane tylko przez administratora jeśli jest puste"
|
435 |
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
438 |
msgid "Cannot be modified"
|
439 |
msgstr "Nie może być zmieniane"
|
440 |
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
443 |
msgid "Should be equal TO"
|
444 |
msgstr "Powinno być równe"
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
448 |
msgid "Case sensitive"
|
449 |
msgstr "Rozróżnia wielkość liter"
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
452 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
453 |
msgid "Regular Expression"
|
454 |
msgstr "Wyrażenie regularne"
|
455 |
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
457 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
458 |
msgid "Show the field in the registration"
|
459 |
msgstr "Pokaż pole podczas rejestracji"
|
460 |
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
463 |
msgid "Show the field in User's profile"
|
464 |
msgstr "Pokaż pole w profilu użytkownika"
|
465 |
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
468 |
#, fuzzy
|
469 |
msgid "Show the field in Users Extended section"
|
470 |
msgstr "Pokaż pole na rozszerzonej liście użytkowników"
|
471 |
|
472 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
474 |
msgid "Show the field in the search engine"
|
475 |
msgstr "Pokaż pole w profilu użytkownika"
|
476 |
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
478 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
479 |
msgid "Show the field in the blog"
|
480 |
msgstr "Pokaż pole na blogu"
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
484 |
msgid "Show the field if the role is at least:"
|
485 |
msgstr "Pokaż pole jeżeli rolą użytkownika jest przynajmniej:"
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
489 |
msgid "Anonymous"
|
490 |
msgstr "Anonim"
|
491 |
|
492 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
494 |
msgid "User has 'view_cimy_extra_fields' capability"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
499 |
msgid "Send an email to the admin if the user changes its value"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
504 |
#, fuzzy
|
505 |
msgid "Advanced options"
|
506 |
msgstr "Działania"
|
507 |
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
509 |
msgid "Clear"
|
510 |
msgstr "Wyczyść"
|
511 |
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
513 |
msgid "Invert selection"
|
514 |
msgstr "Odwróć wybór"
|
515 |
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
517 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
518 |
msgstr "Czy na pewno chcesz wykasować pola i wszystkie dane wprowadzone w nie przez użytkowników"
|
519 |
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
521 |
msgid "WordPress Fields"
|
522 |
msgstr "Pola Wordpressa"
|
523 |
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
528 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
530 |
msgid "Extra Fields"
|
531 |
msgstr "Pola dodatkowe"
|
532 |
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
534 |
msgid "None!"
|
535 |
msgstr "Brak!"
|
536 |
|
537 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
538 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
539 |
msgid "Order"
|
540 |
msgstr "Kolejność"
|
541 |
|
542 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
543 |
msgid "Reset"
|
544 |
msgstr "Wyczyść"
|
545 |
|
546 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
547 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
548 |
msgid "SUCCESSFUL"
|
549 |
msgstr "PRAWIDŁOWO"
|
550 |
|
551 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
553 |
msgid "select"
|
554 |
msgstr "- Wybierz -"
|
555 |
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
558 |
msgid "Users per page"
|
559 |
msgstr "Użytkowników na stronie"
|
560 |
|
561 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
563 |
msgid "Apply"
|
564 |
msgstr "Zastosuj"
|
565 |
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
567 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
568 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
569 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
570 |
msgid "Users Extended"
|
571 |
msgstr "Lista rozszerzona"
|
572 |
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
574 |
#, php-format
|
575 |
msgid "Search results for “%s”"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
579 |
#, php-format
|
580 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
584 |
msgid "Search Users"
|
585 |
msgstr "Szukaj użytkowników"
|
586 |
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
589 |
msgid "Role"
|
590 |
msgstr "Rola"
|
591 |
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
595 |
msgid "Website"
|
596 |
msgstr "Strona internetowa"
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
600 |
msgid "Posts"
|
601 |
msgstr "Wpisy"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
604 |
msgid "View posts by this author"
|
605 |
msgstr "Zobacz wpisy tego autora"
|
606 |
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
608 |
msgid "Super Admin"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
612 |
#, php-format
|
613 |
msgid "e-mail: %s"
|
614 |
msgstr "e-mail: %s"
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
617 |
#, fuzzy
|
618 |
msgid "Change"
|
619 |
msgstr "Zmień kolejność"
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
622 |
#, fuzzy
|
623 |
msgid "Update selected users"
|
624 |
msgstr "Usuń wybrane pola"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
627 |
#, fuzzy
|
628 |
msgid "Update"
|
629 |
msgstr "Zaktualizuj pole"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
632 |
msgid "OK"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
636 |
msgid "Cancel"
|
637 |
msgstr ""
|
638 |
|
642 |
msgstr ""
|
643 |
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
646 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
648 |
#, fuzzy, php-format
|
649 |
msgid "Username: %s"
|
650 |
msgstr "Nazwa użytkownika"
|
664 |
msgid "[%s] Your username and password"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
668 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
669 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
670 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
671 |
#, php-format
|
672 |
msgid "%s: %s"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
676 |
#, php-format
|
677 |
msgid ""
|
678 |
"To activate your user, please click the following link:\n"
|
683 |
"\n"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
687 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
688 |
msgid "Your account is now active!"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
692 |
#, php-format
|
693 |
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>."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
697 |
msgid "An error occurred during the activation"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
701 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
703 |
#, fuzzy, php-format
|
704 |
msgid "Password: %s"
|
705 |
msgstr "Hasło"
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
708 |
msgid "Invalid activation key."
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
712 |
msgid "The site is already active."
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
716 |
msgid "Could not create user"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
720 |
msgid "That username is already activated."
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
724 |
msgid "That username is currently reserved but may be available in a couple of days."
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
728 |
msgid "username and email used"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
732 |
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."
|
733 |
msgstr ""
|
734 |
|
745 |
msgstr "Zaktualizuj plik"
|
746 |
|
747 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
749 |
msgid "Delete the picture"
|
750 |
msgstr "Usuń obrazek"
|
751 |
|
768 |
msgstr ""
|
769 |
|
770 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
772 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
773 |
msgid "Options"
|
774 |
msgstr "Opcje"
|
775 |
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
777 |
msgid "WordPress Fields table emptied"
|
778 |
msgstr "Pola wordpressa zostały wyczyszczone"
|
779 |
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
781 |
msgid "WordPress Fields table deleted"
|
782 |
msgstr "Tabele wordpressa zostały usunięte"
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
785 |
msgid "Extra Fields table emptied"
|
786 |
msgstr "Pola dodatkowe zostały wyczyszczone"
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
789 |
msgid "Extra Fields table deleted"
|
790 |
msgstr "Dodatkowe tabele zostały usunięte"
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
793 |
msgid "Users Data table emptied"
|
794 |
msgstr "Dane użytkowników zostały wyczyszczone"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
797 |
msgid "Users Data table deleted"
|
798 |
msgstr "Tabela użytkowników została usunięta"
|
799 |
|
800 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
801 |
msgid "Options set to default values"
|
802 |
msgstr "Opcje zostały zmienione na domyślne"
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
805 |
msgid "Options deleted"
|
806 |
msgstr "Opcje zostały wykasowane"
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
809 |
msgid "Options changed"
|
810 |
msgstr "Opcje zostały zmienione"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
813 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
814 |
msgstr "Ta operacja stworzy/zaktualizuje wszystkie brakujące tabele/opcje, kontynuować?"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
817 |
msgid "Support the Cimy Project"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
821 |
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!"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
825 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
826 |
msgid "Save Changes"
|
827 |
msgstr "Zapisz zmiany"
|
828 |
|
829 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
830 |
msgid "General"
|
831 |
msgstr "Ogólne"
|
832 |
|
833 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
834 |
msgid "installed is"
|
835 |
msgstr "jest zainstalowany"
|
836 |
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
838 |
msgid "OPTIONS DELETED!"
|
839 |
msgstr "OPCJE USUNIĘTE!"
|
840 |
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
842 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
843 |
msgid "Fix the problem"
|
844 |
msgstr "Usuń problem"
|
845 |
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
847 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
848 |
msgstr "Wersja niekompatybilna! Nie deaktywowałeś a następnie nie reaktywowałeś wtyczki po aktualizacji wordpressa! To może spowodować problemy..."
|
849 |
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
851 |
msgid "Picture/Avatar upload"
|
852 |
msgstr "Wgrywanie obrazka/avatara"
|
853 |
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
855 |
msgid "is created and writable"
|
856 |
msgstr "jest utworzony i zapisywalny"
|
857 |
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
859 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
860 |
msgstr "NIE był wgrywany lub serwer nie ma możliwości zapisywania do niego"
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
863 |
#, fuzzy
|
864 |
msgid "Show all fields in the welcome email"
|
865 |
msgstr "Pokaż pole na blogu"
|
866 |
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
868 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
872 |
msgid "Enable email confirmation"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
876 |
msgid "user that registers should confirm its email address via a link click"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
880 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
884 |
msgid "Enable form confirmation"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
888 |
msgid "a summary of the registration form will be presented to the user"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
892 |
msgid "Customize welcome email sent to the new user"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
896 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
900 |
msgid "Redirect to the source"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
904 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
908 |
msgid "No captcha"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
912 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
916 |
msgid "Public KEY"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
920 |
msgid "Private KEY"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
924 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
928 |
msgid "This captcha is probably weaker, but is easier for users"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
932 |
#, php-format
|
933 |
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>"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
937 |
msgid "Change login/registration page logo"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
941 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
945 |
msgid "Database"
|
946 |
msgstr "Baza danych"
|
947 |
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
952 |
msgid "select action"
|
953 |
msgstr "wybór czynności"
|
954 |
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
956 |
msgid "Default values"
|
957 |
msgstr "Wartości domyślne"
|
958 |
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
963 |
msgid "Delete"
|
964 |
msgstr "Usuń"
|
965 |
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
970 |
msgid "NOT PRESENT"
|
971 |
msgstr "NIE OBECNA"
|
972 |
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
974 |
msgid "WordPress Fields table"
|
975 |
msgstr "Tabela pól Wordpressa"
|
976 |
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
979 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
980 |
msgid "Empty"
|
981 |
msgstr "Opróżnij"
|
982 |
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
984 |
msgid "Extra Fields table"
|
985 |
msgstr "Tabela pól dodatkowych"
|
986 |
|
987 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
988 |
msgid "Users Data table"
|
989 |
msgstr "Tabela danych użytkowników"
|
990 |
|
991 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
992 |
msgid "all data inserted by users in all and only extra fields"
|
993 |
msgstr "wszystkie dane wstawione przez użytkowników do pól dodatkowych"
|
994 |
|
995 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
996 |
msgid "Force tables creation"
|
997 |
msgstr "Wymuś utworzenie tabel"
|
998 |
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
1000 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1001 |
msgstr "równoważne deaktywacji i ponownej reaktywacji wtyczki; żadne inne operacje nie zostaną wykonane"
|
1002 |
|
1003 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1004 |
msgid "User Profile"
|
1005 |
msgstr "Profil użytkownika"
|
1006 |
|
1007 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1008 |
msgid "Extra Fields section title"
|
1009 |
msgstr "Tytuł sekcji pól dodatkowych"
|
1010 |
|
1011 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1012 |
msgid "Fieldset's titles, separates with comma"
|
1013 |
msgstr "Tytuły grup pól, rozdziel przecinkami"
|
1014 |
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1016 |
msgid "example: title1,title2,title3"
|
1017 |
msgstr "Przykład: tytuł1, tytuł2, tytuł3"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1020 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1021 |
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"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1024 |
msgid "Authors & Users Extended"
|
1025 |
msgstr "Rozszerzenia kont"
|
1026 |
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1028 |
msgid "Hide username field"
|
1029 |
msgstr "Ukryj pole z nazwą użytkownika"
|
1030 |
|
1031 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1032 |
msgid "Hide name field"
|
1033 |
msgstr "Ukryj nazwę"
|
1034 |
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1036 |
msgid "Hide email field"
|
1037 |
msgstr "Ukryj adres email"
|
1038 |
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1040 |
msgid "Hide role field"
|
1041 |
msgstr "Ukryj rolę"
|
1042 |
|
1043 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:671
|
1044 |
msgid "Hide website field"
|
1045 |
msgstr "Ukryj pole witryna"
|
1046 |
|
1047 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1048 |
msgid "Hide n. posts field"
|
1049 |
msgstr "Ukryj liczbę wpisów"
|
1050 |
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
1052 |
msgid "WordPress hidden fields"
|
1053 |
msgstr "Ukryte pola Worpdressa"
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
1056 |
+
#, fuzzy
|
1057 |
+
msgid "Show username"
|
1058 |
+
msgstr "Pokaż nazwisko"
|
1059 |
+
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
|
1061 |
+
msgid "when unchecked the email address will be used as username"
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
1065 |
msgid "Show password"
|
1066 |
msgstr "Pokaż hasło"
|
1067 |
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
1069 |
#, fuzzy
|
1070 |
msgid "Show confirmation password"
|
1071 |
msgstr "Pokaż hasło"
|
1072 |
|
1073 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
1074 |
#, fuzzy
|
1075 |
msgid "Show password strength meter"
|
1076 |
msgstr "Pokaż hasło"
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
1079 |
msgid "Show first name"
|
1080 |
msgstr "Pokaż imię"
|
1081 |
|
1082 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
1083 |
msgid "Show last name"
|
1084 |
msgstr "Pokaż nazwisko"
|
1085 |
|
1086 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
|
1087 |
msgid "Show nickname"
|
1088 |
msgstr "Pokaż pseudonim"
|
1089 |
|
1090 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
1091 |
msgid "Show website"
|
1092 |
msgstr "pokaż witrynę"
|
1093 |
|
1094 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
1095 |
msgid "Show AIM"
|
1096 |
msgstr "Pokaż \"AIM\""
|
1097 |
|
1098 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:721
|
1099 |
msgid "Show Yahoo IM"
|
1100 |
msgstr "Pokaż \"Yahoo IM\""
|
1101 |
|
1102 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
1103 |
msgid "Show Jabber / Google Talk"
|
1104 |
msgstr "Pokaż \"Jabber / Google Talk\""
|
1105 |
|
1106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:729
|
1107 |
msgid "Show Biographical Info"
|
1108 |
msgstr "Pokaż informacje dodatkowe"
|
1109 |
|
1125 |
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!"
|
1126 |
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."
|
1127 |
|
1128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
|
1129 |
msgid "Password"
|
1130 |
msgstr "Hasło"
|
1131 |
|
1132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:236
|
1133 |
msgid "Password confirmation"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:258
|
1137 |
msgid "First name"
|
1138 |
msgstr "Imię"
|
1139 |
|
1140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
1141 |
msgid "Last name"
|
1142 |
msgstr "Nazwisko"
|
1143 |
|
1144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
1145 |
msgid "Nickname"
|
1146 |
msgstr "Pseudonim"
|
1147 |
|
1148 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:346
|
1149 |
msgid "AIM"
|
1150 |
msgstr "AIM"
|
1151 |
|
1152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:368
|
1153 |
msgid "Yahoo IM"
|
1154 |
msgstr "Yahoo IM"
|
1155 |
|
1156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:390
|
1157 |
msgid "Jabber / Google Talk"
|
1158 |
msgstr "Jabber / Google Talk"
|
1159 |
|
1160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:412
|
1161 |
msgid "Biographical Info"
|
1162 |
msgstr "Biografia"
|
1163 |
|
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: Diana K. Cury <dianakac@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -17,145 +17,146 @@ msgstr ""
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
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/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
35 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
36 |
msgid "ERROR"
|
37 |
msgstr "ERRO"
|
38 |
|
39 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
40 |
msgid "does not match."
|
41 |
msgstr "não coincide."
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "não tem uma sintaxe de e-mail válida."
|
46 |
|
47 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "não pode estar vazio."
|
50 |
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "não está correto"
|
55 |
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "SIM"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NÃO"
|
67 |
|
68 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
69 |
msgid "should be"
|
70 |
msgstr "deve ser"
|
71 |
|
72 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
73 |
msgid "should be an image."
|
74 |
msgstr "deve ser uma imagem"
|
75 |
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "não pode ter tamanho inferior a"
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "não poder tamanho inferior a"
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "não pode ter tamanho diferrente de"
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "não pode ter comprimento diferente de"
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "não pode ter tamanho maior que"
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "não pode ter comprimento maior que"
|
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_register.php:
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr "Código digitado não está correto."
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
112 |
msgid "Username"
|
113 |
msgstr "Nome de Usuário"
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
msgid "E-mail"
|
119 |
msgstr "E-mail"
|
120 |
|
121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
msgid "Please upload a file with one of the following extensions"
|
124 |
msgstr "Por favor envie um arquivo com uma das seguintes extensões"
|
125 |
|
126 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
127 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
129 |
msgid "Please upload an image with one of the following extensions"
|
130 |
msgstr "Por favor envie uma imagem com uma das seguintes extensões"
|
131 |
|
132 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
133 |
msgid "Strength indicator"
|
134 |
msgstr "Indicador de força"
|
135 |
|
136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
137 |
#, fuzzy
|
138 |
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 ! \" ? $ % ^ & )."
|
139 |
msgstr "Dica: A senha deve ter ao menos sete caracteres. Para torná-la mais segura, use maiúsculas, minúsculas, números e simbolos como ! \\\" ? $ % ^ & )."
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
142 |
msgid "Change image"
|
143 |
msgstr "Mudar imagem"
|
144 |
|
145 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
146 |
msgid "Insert the code:"
|
147 |
msgstr "Inserir o código:"
|
148 |
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
msgid "Confirm your registration"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
155 |
msgid "A password will be e-mailed to you."
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
159 |
msgid "← Back"
|
160 |
msgstr ""
|
161 |
|
@@ -180,17 +181,17 @@ msgid "Change order"
|
|
180 |
msgstr "Mudar ordem"
|
181 |
|
182 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
184 |
msgid "Min length"
|
185 |
msgstr "Caracteres Mín."
|
186 |
|
187 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
189 |
msgid "Exact length"
|
190 |
msgstr "Caracteres Exatos"
|
191 |
|
192 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
194 |
msgid "Max length"
|
195 |
msgstr "Caracteres Máx."
|
196 |
|
@@ -212,424 +213,424 @@ msgid "You cannot give an order that misses some numbers"
|
|
212 |
msgstr "Você não pode dar uma ordem que precisa de alguns números"
|
213 |
|
214 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
216 |
msgid "Nothing selected"
|
217 |
msgstr "Nada selecionado"
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
220 |
msgid "Field(s)"
|
221 |
msgstr "Campo(s)"
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
224 |
msgid "deleted correctly"
|
225 |
msgstr "excluído(s)"
|
226 |
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
229 |
msgid "Min size"
|
230 |
msgstr "Tamanho Mín."
|
231 |
|
232 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
234 |
msgid "Exact size"
|
235 |
msgstr "Tamanho Exato"
|
236 |
|
237 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
msgid "Max size"
|
240 |
msgstr "Tamanho Máx."
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
243 |
msgid "Exact or Max size"
|
244 |
msgstr "Tamanho Máx. ou Exato"
|
245 |
|
246 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
247 |
msgid "Name not specified"
|
248 |
msgstr "Nome não especificado"
|
249 |
|
250 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
251 |
msgid "Name cannot contains spaces"
|
252 |
msgstr "Nome não pode conter espaços"
|
253 |
|
254 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
255 |
msgid "Label not specified"
|
256 |
msgstr "Rótulo não especificado"
|
257 |
|
258 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
259 |
msgid "not selected (with this type is necessary)"
|
260 |
msgstr "não selecionado (necessário neste tipo de campo)"
|
261 |
|
262 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
263 |
msgid "If you select"
|
264 |
msgstr "Se você selecionar"
|
265 |
|
266 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
267 |
msgid "you cannot select Min or Max"
|
268 |
msgstr "você não pode selecionar Mínimo ou Máximo"
|
269 |
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
273 |
msgid "should be in the range of"
|
274 |
msgstr "deve ser no limite de"
|
275 |
|
276 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
277 |
msgid "Equal TO not specified"
|
278 |
msgstr "<strong>Igual a</strong> não especificado"
|
279 |
|
280 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
281 |
msgid "With checkbox type Equal TO can only be"
|
282 |
msgstr "Com caixas de marcação <strong>Igual a</strong> só pode ser"
|
283 |
|
284 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
285 |
msgid "With radio type Equal TO can only be"
|
286 |
msgstr "Com botões de rádio <strong>Igual a</strong> só pode ser"
|
287 |
|
288 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
289 |
msgid "With checkbox type Value can only be"
|
290 |
msgstr "Com caixas de marcação <strong>Valor</strong> só pode ser"
|
291 |
|
292 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
293 |
msgid "With radio type Value can only be"
|
294 |
msgstr "Com botões de rádio <strong>valor</strong> só podeser"
|
295 |
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
297 |
msgid "Field inserted correctly"
|
298 |
msgstr "Campo inserido!"
|
299 |
|
300 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
301 |
msgid "Field #"
|
302 |
msgstr "Campo #"
|
303 |
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
305 |
msgid "updated correctly"
|
306 |
msgstr "atualizado!"
|
307 |
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
309 |
msgid "Name inserted is just in the database, change to another one"
|
310 |
msgstr "Nome inserido já está no banco de dados, escolha outro."
|
311 |
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
314 |
msgid "Add a new Field"
|
315 |
msgstr "Adicionar Novo Campo"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
318 |
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."
|
319 |
msgstr "Para adicionar um novo campo, você deve escolher o <strong>Tipo</strong> e o <strong>Rótulo</strong>, opcionalmente o <strong>Valor</strong> e <strong>Descrição</strong>. As <strong>Regras</strong> são aplicadas durante o registro."
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
322 |
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'"
|
323 |
msgstr "<strong>radio</strong> e <strong>checkbox: </strong><em>Valor</em> e <em>Igual A</em> pode ser 'Sim/Verdadeiro' ou 'Não/Falso' ou seja, 'selecionado' ou 'não selecionado'"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
326 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
327 |
msgstr "<strong>drop-down</strong>: Lista de opções. É necessário informar todos os rótulos. Ex. de sintaxe: Gênero/Masculino,Feminino"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
330 |
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"
|
331 |
msgstr "<strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à dimensão (altura ou largura) da miniatura."
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
334 |
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)"
|
335 |
msgstr "<strong>picture-url</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Item <em>Deve ser Igual a:</em> se refere à largura máxima da imagem, a altura será proporcional"
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
338 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
339 |
msgstr "<strong>registration-date</strong>: <em>Deve ser Igual a:</em> se refere a um formato de data."
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
342 |
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"
|
343 |
msgstr "<strong>avatar</strong>: <strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> é automaticamente definido em 512 pixels"
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
346 |
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"
|
347 |
msgstr "<strong>file</strong>: Permite carregar um arquivo informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à extensões de arquivo permitidas, separadas por vírgulas. Ex. de sintaxe: zip, pdf, doc"
|
348 |
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
msgid "Name"
|
356 |
msgstr "Nome"
|
357 |
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
msgid "Value"
|
365 |
msgstr "Valor"
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
371 |
msgid "Type"
|
372 |
msgstr "Tipo"
|
373 |
|
374 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
378 |
msgid "Label"
|
379 |
msgstr "Rótulo"
|
380 |
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
382 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
383 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
msgid "Description"
|
386 |
msgstr "Descrição"
|
387 |
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
390 |
msgid "Rules"
|
391 |
msgstr "Regras"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
395 |
msgid "Actions"
|
396 |
msgstr "Ações"
|
397 |
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
msgid "Fieldset"
|
403 |
msgstr "Área do Campo"
|
404 |
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
407 |
msgid "Can be empty"
|
408 |
msgstr "Pode ser vazio"
|
409 |
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
412 |
msgid "Check for E-mail syntax"
|
413 |
msgstr "Verficar sintaxe de e-mail"
|
414 |
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
417 |
msgid "Can be modified"
|
418 |
msgstr "Pode ser modificado"
|
419 |
|
420 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
422 |
msgid "Can be modified only if empty"
|
423 |
msgstr "Pode ser modificado se vazio"
|
424 |
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
427 |
msgid "Can be modified only by admin"
|
428 |
msgstr "Pode ser modificado apenas por Admin"
|
429 |
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
432 |
msgid "Can be modified only by admin or if empty"
|
433 |
msgstr "Pode ser modificado por Admin ou se vazio"
|
434 |
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
436 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
437 |
msgid "Cannot be modified"
|
438 |
msgstr "Não pode ser modificado"
|
439 |
|
440 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
441 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
442 |
msgid "Should be equal TO"
|
443 |
msgstr "Deve ser <strong>Igual a</strong>"
|
444 |
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
446 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
447 |
msgid "Case sensitive"
|
448 |
msgstr "Diferenciar maiúsc./minúsc."
|
449 |
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
451 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
452 |
msgid "Regular Expression"
|
453 |
msgstr "Expressão Regular"
|
454 |
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
456 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
457 |
msgid "Show the field in the registration"
|
458 |
msgstr "Mostrar na <strong>Página de Registro</strong>"
|
459 |
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
461 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
462 |
msgid "Show the field in User's profile"
|
463 |
msgstr "Mostrar no <strong>Perfil do Usuário</strong>"
|
464 |
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
466 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
467 |
#, fuzzy
|
468 |
msgid "Show the field in Users Extended section"
|
469 |
msgstr "Mostrar em <strong>Autores & Usuários</strong>"
|
470 |
|
471 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
472 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
473 |
msgid "Show the field in the search engine"
|
474 |
msgstr "Mostrar no formulário de pesquisa"
|
475 |
|
476 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
477 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
478 |
msgid "Show the field in the blog"
|
479 |
msgstr "Mostrar no site"
|
480 |
|
481 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
483 |
msgid "Show the field if the role is at least:"
|
484 |
msgstr "Mostrar se usuário for ao menos:"
|
485 |
|
486 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
msgid "Anonymous"
|
489 |
msgstr "Anônimo"
|
490 |
|
491 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
493 |
msgid "User has 'view_cimy_extra_fields' capability"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
498 |
msgid "Send an email to the admin if the user changes its value"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
503 |
#, fuzzy
|
504 |
msgid "Advanced options"
|
505 |
msgstr "Ações"
|
506 |
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
508 |
msgid "Clear"
|
509 |
msgstr "Limpar"
|
510 |
|
511 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
512 |
msgid "Invert selection"
|
513 |
msgstr "Inverter seleção"
|
514 |
|
515 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
516 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
517 |
msgstr "Tem certeza que quer excluir os campos e todos os dados informados pelos usuários?"
|
518 |
|
519 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
520 |
msgid "WordPress Fields"
|
521 |
msgstr "Campos WordPress"
|
522 |
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
525 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
527 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
529 |
msgid "Extra Fields"
|
530 |
msgstr "Campos Adicionais"
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
msgid "None!"
|
534 |
msgstr "Nenhum!"
|
535 |
|
536 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
538 |
msgid "Order"
|
539 |
msgstr "Ordem"
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
542 |
msgid "Reset"
|
543 |
msgstr "Redefinir"
|
544 |
|
545 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
547 |
msgid "SUCCESSFUL"
|
548 |
msgstr "CONCLUÍDO"
|
549 |
|
550 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
552 |
msgid "select"
|
553 |
msgstr "Selecionar"
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
557 |
msgid "Users per page"
|
558 |
msgstr "Usuários por Páginas"
|
559 |
|
560 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
562 |
msgid "Apply"
|
563 |
msgstr "Aplicar"
|
564 |
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
566 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
567 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
568 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
569 |
msgid "Users Extended"
|
570 |
msgstr "Usuários Extendidos"
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
573 |
#, php-format
|
574 |
msgid "Search results for “%s”"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
578 |
#, php-format
|
579 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
580 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
msgid "Search Users"
|
584 |
msgstr "Pesquisar por Usuários"
|
585 |
|
586 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
msgid "Role"
|
589 |
msgstr "Função"
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
594 |
msgid "Website"
|
595 |
msgstr "Website"
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
msgid "Posts"
|
600 |
msgstr "Postagens"
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
603 |
msgid "View posts by this author"
|
604 |
msgstr "Ver postagens desse autor"
|
605 |
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
607 |
msgid "Super Admin"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
611 |
#, php-format
|
612 |
msgid "e-mail: %s"
|
613 |
msgstr "e-mail: %s"
|
614 |
|
615 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
616 |
#, fuzzy
|
617 |
msgid "Change"
|
618 |
msgstr "Mudar imagem"
|
619 |
|
620 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
621 |
msgid "Update selected users"
|
622 |
msgstr "Atualizar Usuários selecionados"
|
623 |
|
624 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
625 |
msgid "Update"
|
626 |
msgstr "Atualizar"
|
627 |
|
628 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
629 |
msgid "OK"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
633 |
msgid "Cancel"
|
634 |
msgstr ""
|
635 |
|
@@ -639,9 +640,9 @@ msgid "New user registration on your site %s:"
|
|
639 |
msgstr "Novos usuários registrados no site %s:"
|
640 |
|
641 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
642 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
643 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
644 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
645 |
#, php-format
|
646 |
msgid "Username: %s"
|
647 |
msgstr "Nome de usuário: %s"
|
@@ -661,15 +662,15 @@ msgstr "[%s] Registro de novo usuário"
|
|
661 |
msgid "[%s] Your username and password"
|
662 |
msgstr "[%s] Seu nome de usuários e senha"
|
663 |
|
664 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
665 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
666 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
667 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
668 |
#, php-format
|
669 |
msgid "%s: %s"
|
670 |
msgstr "%s: %s"
|
671 |
|
672 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
673 |
#, php-format
|
674 |
msgid ""
|
675 |
"To activate your user, please click the following link:\n"
|
@@ -686,52 +687,52 @@ msgstr ""
|
|
686 |
"Depois de ativar, você receberá <strong>outro e-mail</strong> com seu login.\n"
|
687 |
"\n"
|
688 |
|
689 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
691 |
msgid "Your account is now active!"
|
692 |
msgstr "Sua conta agora está ativa!"
|
693 |
|
694 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
695 |
#, php-format
|
696 |
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>."
|
697 |
msgstr "Seu site em <a href=\"%1$s\">%2$s</a> Está ativo. Faça login usando seu nome de usuário e senha: “%3$s”. Verifique a Caixa de Entrada do seu e-mail às %4$s para senha e intruções. Se não receber seu e-mail, veja se não está na pasta de Spams. Se ainda não receber um e-mail em uma hora, tente <a href=\"%5$s\">redefinir sua senha</a></p>."
|
698 |
|
699 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
700 |
msgid "An error occurred during the activation"
|
701 |
msgstr "Um erro ocorreu durante a ativação"
|
702 |
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
704 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
706 |
#, php-format
|
707 |
msgid "Password: %s"
|
708 |
msgstr "Senha: %s"
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
711 |
msgid "Invalid activation key."
|
712 |
msgstr "Chave de ativação inválida"
|
713 |
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
715 |
msgid "The site is already active."
|
716 |
msgstr "O site já está ativo"
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
719 |
msgid "Could not create user"
|
720 |
msgstr "Não foi possível criar usuário"
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
723 |
msgid "That username is already activated."
|
724 |
msgstr "Este nome de usuário já está ativado"
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
727 |
msgid "That username is currently reserved but may be available in a couple of days."
|
728 |
msgstr "Nome de usuário reservado."
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
731 |
msgid "username and email used"
|
732 |
msgstr "Nome de usuário e e-mail usados"
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
735 |
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."
|
736 |
msgstr "E-mail já usado. Verifique se não há um e-mail de ativação na sua caixa de entrada. Estará disponível em alguns dias se nada fizer."
|
737 |
|
@@ -748,7 +749,7 @@ msgid "Update the file"
|
|
748 |
msgstr "Atualizar o arquivo"
|
749 |
|
750 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
751 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
752 |
msgid "Delete the picture"
|
753 |
msgstr "Excluir figura"
|
754 |
|
@@ -771,331 +772,340 @@ msgid "%s (%s) has changed one or more fields"
|
|
771 |
msgstr ""
|
772 |
|
773 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
775 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
776 |
msgid "Options"
|
777 |
msgstr "Opções"
|
778 |
|
779 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
780 |
msgid "WordPress Fields table emptied"
|
781 |
msgstr "Tabela de campos do WordPress esvaziada"
|
782 |
|
783 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
784 |
msgid "WordPress Fields table deleted"
|
785 |
msgstr "Tabela de campos do WordPress excluída"
|
786 |
|
787 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
788 |
msgid "Extra Fields table emptied"
|
789 |
msgstr "Tabela de Extra Fields esvaziada"
|
790 |
|
791 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
792 |
msgid "Extra Fields table deleted"
|
793 |
msgstr "Tabela de Extra Fields esxcluída"
|
794 |
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
796 |
msgid "Users Data table emptied"
|
797 |
msgstr "Tabela com dados de usuários esvaziada"
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
800 |
msgid "Users Data table deleted"
|
801 |
msgstr "Tabela com dados de usuários excluída"
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
804 |
msgid "Options set to default values"
|
805 |
msgstr "Opções definidas para valores padrão"
|
806 |
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
808 |
msgid "Options deleted"
|
809 |
msgstr "Opções excluídas"
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
812 |
msgid "Options changed"
|
813 |
msgstr "Opções alteradas"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
816 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
817 |
msgstr "Esta operação vai criar/atualizar todas a opções/tabelas que faltam, continuar?"
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
820 |
msgid "Support the Cimy Project"
|
821 |
msgstr "Suporte o Projeto Cimy"
|
822 |
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
824 |
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!"
|
825 |
msgstr "Este plugin é o resultado de horas de desenvolvimento para adicionar novos recurso, suportar novas versões do WordPress e corrigir bugs, por favor, faça um donativo ao autor! <br /><br /><small>Tradução para pt_BR: <a href=\"http://www.arquivo.tk\" target=_blank\">Diana K. C</a></small>"
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
829 |
msgid "Save Changes"
|
830 |
msgstr "Salvar Mudanças"
|
831 |
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
833 |
msgid "General"
|
834 |
msgstr "Geral"
|
835 |
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
837 |
msgid "installed is"
|
838 |
msgstr "instalado é"
|
839 |
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
841 |
msgid "OPTIONS DELETED!"
|
842 |
msgstr "OPÇÕES EXCLUÍDAS`"
|
843 |
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
846 |
msgid "Fix the problem"
|
847 |
msgstr "Corrigir problema"
|
848 |
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
850 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
851 |
msgstr "Versões não coincidem! Isto pode ter sido causado porque não desativou e reativou o plugin depois da atualização!"
|
852 |
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
854 |
msgid "Picture/Avatar upload"
|
855 |
msgstr "Envio de Figura/Avatar"
|
856 |
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
858 |
msgid "is created and writable"
|
859 |
msgstr "foi criado e pode ser escrito"
|
860 |
|
861 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
862 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
863 |
msgstr "não foi criado ou o serviço de hospedam não tem permissão de escrever nele."
|
864 |
|
865 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
866 |
msgid "Show all fields in the welcome email"
|
867 |
msgstr "Mostrar todos os campos no e-mail de boas-vindas"
|
868 |
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
870 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
871 |
msgstr "O e-mail enviado ao admin e ao usuário que se registrou, mostrará todos os campos."
|
872 |
|
873 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
874 |
msgid "Enable email confirmation"
|
875 |
msgstr "Ativar configuração de e-mail"
|
876 |
|
877 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
878 |
msgid "user that registers should confirm its email address via a link click"
|
879 |
msgstr "Usuários que se registrarem devem confirmar seu e-mail através de link"
|
880 |
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
882 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
883 |
msgstr "<strong>Nota:</strong> se ativar esta opção, todas os itens de envio de arquivos serão destaivados como envio de arquivos, avatar etc."
|
884 |
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
886 |
#, fuzzy
|
887 |
msgid "Enable form confirmation"
|
888 |
msgstr "Ativar configuração de e-mail"
|
889 |
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
891 |
msgid "a summary of the registration form will be presented to the user"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
895 |
msgid "Customize welcome email sent to the new user"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
899 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
903 |
msgid "Redirect to the source"
|
904 |
msgstr "Redirecionar para a origem"
|
905 |
|
906 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
907 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
908 |
msgstr "Depois do registro ou confirmação, o usuário será redirecionado para o endereço onde estava antes de clicar no link para se registrar."
|
909 |
|
910 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
911 |
msgid "No captcha"
|
912 |
msgstr "Sem CAPTCHA"
|
913 |
|
914 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
915 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
916 |
msgstr "Ativar <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
917 |
|
918 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
919 |
msgid "Public KEY"
|
920 |
msgstr "Chave pública (Public KEY)"
|
921 |
|
922 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
923 |
msgid "Private KEY"
|
924 |
msgstr "Chave privativa (Private KEY)"
|
925 |
|
926 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
927 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
928 |
msgstr "Ativar <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage CAPTCHA</a>"
|
929 |
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
931 |
msgid "This captcha is probably weaker, but is easier for users"
|
932 |
msgstr "Este CAPTCHA é mais fraco, porém, mais simples para usuários"
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
935 |
#, php-format
|
936 |
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>"
|
937 |
msgstr "<strong>ATENÇÃO: para ativar este captcha, faça download da extensção<a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">PHP Captcha</a> e extraia em %s</strong>"
|
938 |
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
940 |
msgid "Change login/registration page logo"
|
941 |
msgstr "Mudar logotipo da página de registro"
|
942 |
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
944 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
945 |
msgstr "Dimensão máxima recomendada da largura é 328px"
|
946 |
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
948 |
msgid "Database"
|
949 |
msgstr "Banco de Dados"
|
950 |
|
951 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
952 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
955 |
msgid "select action"
|
956 |
msgstr "Selecione uma ação"
|
957 |
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
959 |
msgid "Default values"
|
960 |
msgstr "Valores padrão"
|
961 |
|
962 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
966 |
msgid "Delete"
|
967 |
msgstr "Excluir"
|
968 |
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
970 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
971 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
973 |
msgid "NOT PRESENT"
|
974 |
msgstr "NÃO PRESENTE"
|
975 |
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
977 |
msgid "WordPress Fields table"
|
978 |
msgstr "Tabela de Campos do WordPress"
|
979 |
|
980 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
983 |
msgid "Empty"
|
984 |
msgstr "Esvaziar"
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
987 |
msgid "Extra Fields table"
|
988 |
msgstr "Tabela de Campos Extras"
|
989 |
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
991 |
msgid "Users Data table"
|
992 |
msgstr "Tabela de Dados do Usuário"
|
993 |
|
994 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
995 |
msgid "all data inserted by users in all and only extra fields"
|
996 |
msgstr "Todos os dados inseridos pelos usuários em todos os campos extras"
|
997 |
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
999 |
msgid "Force tables creation"
|
1000 |
msgstr "Forçar criação de tabelas"
|
1001 |
|
1002 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1003 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1004 |
msgstr "Equivalente a desativar e ativar o plugin, nenhuma outra operação é feita"
|
1005 |
|
1006 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1007 |
msgid "User Profile"
|
1008 |
msgstr "Perfil do Usuário"
|
1009 |
|
1010 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1011 |
msgid "Extra Fields section title"
|
1012 |
msgstr "Títulos para seção de Campos Adicionais"
|
1013 |
|
1014 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1015 |
msgid "Fieldset's titles, separates with comma"
|
1016 |
msgstr "Tïtulos da seções, separados por vírgulas"
|
1017 |
|
1018 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1019 |
msgid "example: title1,title2,title3"
|
1020 |
msgstr "Ex.: título A, título B, Título C"
|
1021 |
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1023 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1024 |
msgstr "<strong>Nota:</strong> ao mudar a ordem ou remover qualquer campo adicional, é preciso definir onde os campos aparecem novamente"
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1027 |
msgid "Authors & Users Extended"
|
1028 |
msgstr "Autores & Usuários Extendidos"
|
1029 |
|
1030 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1031 |
msgid "Hide username field"
|
1032 |
msgstr "Esconder campo <strong>Nome de Usuário</strong>"
|
1033 |
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1035 |
msgid "Hide name field"
|
1036 |
msgstr "Esconder campo <strong>Nome</strong>"
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1039 |
msgid "Hide email field"
|
1040 |
msgstr "Esconder campo <strong>E-mail</strong>"
|
1041 |
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1043 |
msgid "Hide role field"
|
1044 |
msgstr "Esconder campo <strong>Função</strong>"
|
1045 |
|
1046 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1047 |
msgid "Hide website field"
|
1048 |
msgstr "Esconder campo <strong>Website</strong>"
|
1049 |
|
1050 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1051 |
msgid "Hide n. posts field"
|
1052 |
msgstr "Esconder número de postagens"
|
1053 |
|
1054 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1055 |
msgid "WordPress hidden fields"
|
1056 |
msgstr "Campos WordPress"
|
1057 |
|
1058 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1059 |
msgid "Show password"
|
1060 |
msgstr "Mostrar senha"
|
1061 |
|
1062 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1063 |
msgid "Show confirmation password"
|
1064 |
msgstr "Mostrar senha de confirmação"
|
1065 |
|
1066 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1067 |
msgid "Show password strength meter"
|
1068 |
msgstr "Mostrar indicador de força da senha"
|
1069 |
|
1070 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1071 |
msgid "Show first name"
|
1072 |
msgstr "Mostrar Nome"
|
1073 |
|
1074 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1075 |
msgid "Show last name"
|
1076 |
msgstr "Mostrar Sobrenome"
|
1077 |
|
1078 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1079 |
msgid "Show nickname"
|
1080 |
msgstr "Mostrar Apelido"
|
1081 |
|
1082 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1083 |
msgid "Show website"
|
1084 |
msgstr "Mostrar Website"
|
1085 |
|
1086 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1087 |
msgid "Show AIM"
|
1088 |
msgstr "Mostrar AIM"
|
1089 |
|
1090 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1091 |
msgid "Show Yahoo IM"
|
1092 |
msgstr "Mostrar Yahoo IM"
|
1093 |
|
1094 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1095 |
msgid "Show Jabber / Google Talk"
|
1096 |
msgstr "Mostrar Jabber/ Google Talk"
|
1097 |
|
1098 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1099 |
msgid "Show Biographical Info"
|
1100 |
msgstr "Mostrar Biografia"
|
1101 |
|
@@ -1117,39 +1127,39 @@ msgstr "Arquivo '%s' não é uma imagem."
|
|
1117 |
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!"
|
1118 |
msgstr "<strong>Nota:</strong> este site permite personalizar sua senha. Depois do registro, você receberá um e-mail com outra senha!"
|
1119 |
|
1120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1121 |
msgid "Password"
|
1122 |
msgstr "Senha"
|
1123 |
|
1124 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1125 |
msgid "Password confirmation"
|
1126 |
msgstr "Confirmação de senha"
|
1127 |
|
1128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1129 |
msgid "First name"
|
1130 |
msgstr "Nome"
|
1131 |
|
1132 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1133 |
msgid "Last name"
|
1134 |
msgstr "Sobrenome"
|
1135 |
|
1136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1137 |
msgid "Nickname"
|
1138 |
msgstr "Apelido"
|
1139 |
|
1140 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1141 |
msgid "AIM"
|
1142 |
msgstr "AIM"
|
1143 |
|
1144 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1145 |
msgid "Yahoo IM"
|
1146 |
msgstr "Yahoo IM"
|
1147 |
|
1148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1149 |
msgid "Jabber / Google Talk"
|
1150 |
msgstr "Jabber / Google Talk"
|
1151 |
|
1152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1153 |
msgid "Biographical Info"
|
1154 |
msgstr "Biografias"
|
1155 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:56-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:56-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Diana K. Cury <dianakac@gmail.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
|
|
|
|
|
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
36 |
msgid "ERROR"
|
37 |
msgstr "ERRO"
|
38 |
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
40 |
msgid "does not match."
|
41 |
msgstr "não coincide."
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "não tem uma sintaxe de e-mail válida."
|
46 |
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "não pode estar vazio."
|
50 |
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
52 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "não está correto"
|
55 |
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
59 |
msgid "YES"
|
60 |
msgstr "SIM"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
65 |
msgid "NO"
|
66 |
msgstr "NÃO"
|
67 |
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
69 |
msgid "should be"
|
70 |
msgstr "deve ser"
|
71 |
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
73 |
msgid "should be an image."
|
74 |
msgstr "deve ser uma imagem"
|
75 |
|
76 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "não pode ter tamanho inferior a"
|
83 |
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "não poder tamanho inferior a"
|
87 |
|
88 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "não pode ter tamanho diferrente de"
|
91 |
|
92 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "não pode ter comprimento diferente de"
|
95 |
|
96 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "não pode ter tamanho maior que"
|
99 |
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "não pode ter comprimento maior que"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr "Código digitado não está correto."
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Nome de Usuário"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Por favor envie um arquivo com uma das seguintes extensões"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1007
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Por favor envie uma imagem com uma das seguintes extensões"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
134 |
msgid "Strength indicator"
|
135 |
msgstr "Indicador de força"
|
136 |
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
138 |
#, fuzzy
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr "Dica: A senha deve ter ao menos sete caracteres. Para torná-la mais segura, use maiúsculas, minúsculas, números e simbolos como ! \\\" ? $ % ^ & )."
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
143 |
msgid "Change image"
|
144 |
msgstr "Mudar imagem"
|
145 |
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
147 |
msgid "Insert the code:"
|
148 |
msgstr "Inserir o código:"
|
149 |
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1313
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
181 |
msgstr "Mudar ordem"
|
182 |
|
183 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
|
185 |
msgid "Min length"
|
186 |
msgstr "Caracteres Mín."
|
187 |
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
190 |
msgid "Exact length"
|
191 |
msgstr "Caracteres Exatos"
|
192 |
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
194 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
195 |
msgid "Max length"
|
196 |
msgstr "Caracteres Máx."
|
197 |
|
213 |
msgstr "Você não pode dar uma ordem que precisa de alguns números"
|
214 |
|
215 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
216 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
217 |
msgid "Nothing selected"
|
218 |
msgstr "Nada selecionado"
|
219 |
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
221 |
msgid "Field(s)"
|
222 |
msgstr "Campo(s)"
|
223 |
|
224 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
225 |
msgid "deleted correctly"
|
226 |
msgstr "excluído(s)"
|
227 |
|
228 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
230 |
msgid "Min size"
|
231 |
msgstr "Tamanho Mín."
|
232 |
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
235 |
msgid "Exact size"
|
236 |
msgstr "Tamanho Exato"
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
240 |
msgid "Max size"
|
241 |
msgstr "Tamanho Máx."
|
242 |
|
243 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
244 |
msgid "Exact or Max size"
|
245 |
msgstr "Tamanho Máx. ou Exato"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
248 |
msgid "Name not specified"
|
249 |
msgstr "Nome não especificado"
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
252 |
msgid "Name cannot contains spaces"
|
253 |
msgstr "Nome não pode conter espaços"
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
256 |
msgid "Label not specified"
|
257 |
msgstr "Rótulo não especificado"
|
258 |
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
260 |
msgid "not selected (with this type is necessary)"
|
261 |
msgstr "não selecionado (necessário neste tipo de campo)"
|
262 |
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
264 |
msgid "If you select"
|
265 |
msgstr "Se você selecionar"
|
266 |
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
268 |
msgid "you cannot select Min or Max"
|
269 |
msgstr "você não pode selecionar Mínimo ou Máximo"
|
270 |
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
274 |
msgid "should be in the range of"
|
275 |
msgstr "deve ser no limite de"
|
276 |
|
277 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
278 |
msgid "Equal TO not specified"
|
279 |
msgstr "<strong>Igual a</strong> não especificado"
|
280 |
|
281 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
282 |
msgid "With checkbox type Equal TO can only be"
|
283 |
msgstr "Com caixas de marcação <strong>Igual a</strong> só pode ser"
|
284 |
|
285 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
286 |
msgid "With radio type Equal TO can only be"
|
287 |
msgstr "Com botões de rádio <strong>Igual a</strong> só pode ser"
|
288 |
|
289 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
290 |
msgid "With checkbox type Value can only be"
|
291 |
msgstr "Com caixas de marcação <strong>Valor</strong> só pode ser"
|
292 |
|
293 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
294 |
msgid "With radio type Value can only be"
|
295 |
msgstr "Com botões de rádio <strong>valor</strong> só podeser"
|
296 |
|
297 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
298 |
msgid "Field inserted correctly"
|
299 |
msgstr "Campo inserido!"
|
300 |
|
301 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
302 |
msgid "Field #"
|
303 |
msgstr "Campo #"
|
304 |
|
305 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
306 |
msgid "updated correctly"
|
307 |
msgstr "atualizado!"
|
308 |
|
309 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
310 |
msgid "Name inserted is just in the database, change to another one"
|
311 |
msgstr "Nome inserido já está no banco de dados, escolha outro."
|
312 |
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
315 |
msgid "Add a new Field"
|
316 |
msgstr "Adicionar Novo Campo"
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
319 |
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."
|
320 |
msgstr "Para adicionar um novo campo, você deve escolher o <strong>Tipo</strong> e o <strong>Rótulo</strong>, opcionalmente o <strong>Valor</strong> e <strong>Descrição</strong>. As <strong>Regras</strong> são aplicadas durante o registro."
|
321 |
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
323 |
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'"
|
324 |
msgstr "<strong>radio</strong> e <strong>checkbox: </strong><em>Valor</em> e <em>Igual A</em> pode ser 'Sim/Verdadeiro' ou 'Não/Falso' ou seja, 'selecionado' ou 'não selecionado'"
|
325 |
|
326 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
327 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
328 |
msgstr "<strong>drop-down</strong>: Lista de opções. É necessário informar todos os rótulos. Ex. de sintaxe: Gênero/Masculino,Feminino"
|
329 |
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
331 |
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"
|
332 |
msgstr "<strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à dimensão (altura ou largura) da miniatura."
|
333 |
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
335 |
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)"
|
336 |
msgstr "<strong>picture-url</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Item <em>Deve ser Igual a:</em> se refere à largura máxima da imagem, a altura será proporcional"
|
337 |
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
339 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
340 |
msgstr "<strong>registration-date</strong>: <em>Deve ser Igual a:</em> se refere a um formato de data."
|
341 |
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
343 |
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"
|
344 |
msgstr "<strong>avatar</strong>: <strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> é automaticamente definido em 512 pixels"
|
345 |
|
346 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
347 |
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"
|
348 |
msgstr "<strong>file</strong>: Permite carregar um arquivo informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à extensões de arquivo permitidas, separadas por vírgulas. Ex. de sintaxe: zip, pdf, doc"
|
349 |
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
356 |
msgid "Name"
|
357 |
msgstr "Nome"
|
358 |
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
360 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
365 |
msgid "Value"
|
366 |
msgstr "Valor"
|
367 |
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
372 |
msgid "Type"
|
373 |
msgstr "Tipo"
|
374 |
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
379 |
msgid "Label"
|
380 |
msgstr "Rótulo"
|
381 |
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
386 |
msgid "Description"
|
387 |
msgstr "Descrição"
|
388 |
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
391 |
msgid "Rules"
|
392 |
msgstr "Regras"
|
393 |
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
396 |
msgid "Actions"
|
397 |
msgstr "Ações"
|
398 |
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
403 |
msgid "Fieldset"
|
404 |
msgstr "Área do Campo"
|
405 |
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
408 |
msgid "Can be empty"
|
409 |
msgstr "Pode ser vazio"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
412 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
413 |
msgid "Check for E-mail syntax"
|
414 |
msgstr "Verficar sintaxe de e-mail"
|
415 |
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
418 |
msgid "Can be modified"
|
419 |
msgstr "Pode ser modificado"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
422 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
423 |
msgid "Can be modified only if empty"
|
424 |
msgstr "Pode ser modificado se vazio"
|
425 |
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
427 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
428 |
msgid "Can be modified only by admin"
|
429 |
msgstr "Pode ser modificado apenas por Admin"
|
430 |
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
432 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
433 |
msgid "Can be modified only by admin or if empty"
|
434 |
msgstr "Pode ser modificado por Admin ou se vazio"
|
435 |
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
438 |
msgid "Cannot be modified"
|
439 |
msgstr "Não pode ser modificado"
|
440 |
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
443 |
msgid "Should be equal TO"
|
444 |
msgstr "Deve ser <strong>Igual a</strong>"
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
448 |
msgid "Case sensitive"
|
449 |
msgstr "Diferenciar maiúsc./minúsc."
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
452 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
453 |
msgid "Regular Expression"
|
454 |
msgstr "Expressão Regular"
|
455 |
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
457 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
458 |
msgid "Show the field in the registration"
|
459 |
msgstr "Mostrar na <strong>Página de Registro</strong>"
|
460 |
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
463 |
msgid "Show the field in User's profile"
|
464 |
msgstr "Mostrar no <strong>Perfil do Usuário</strong>"
|
465 |
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
468 |
#, fuzzy
|
469 |
msgid "Show the field in Users Extended section"
|
470 |
msgstr "Mostrar em <strong>Autores & Usuários</strong>"
|
471 |
|
472 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
474 |
msgid "Show the field in the search engine"
|
475 |
msgstr "Mostrar no formulário de pesquisa"
|
476 |
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
478 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
479 |
msgid "Show the field in the blog"
|
480 |
msgstr "Mostrar no site"
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
484 |
msgid "Show the field if the role is at least:"
|
485 |
msgstr "Mostrar se usuário for ao menos:"
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
489 |
msgid "Anonymous"
|
490 |
msgstr "Anônimo"
|
491 |
|
492 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
494 |
msgid "User has 'view_cimy_extra_fields' capability"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
499 |
msgid "Send an email to the admin if the user changes its value"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
504 |
#, fuzzy
|
505 |
msgid "Advanced options"
|
506 |
msgstr "Ações"
|
507 |
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
509 |
msgid "Clear"
|
510 |
msgstr "Limpar"
|
511 |
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
513 |
msgid "Invert selection"
|
514 |
msgstr "Inverter seleção"
|
515 |
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
517 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
518 |
msgstr "Tem certeza que quer excluir os campos e todos os dados informados pelos usuários?"
|
519 |
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
521 |
msgid "WordPress Fields"
|
522 |
msgstr "Campos WordPress"
|
523 |
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
528 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
530 |
msgid "Extra Fields"
|
531 |
msgstr "Campos Adicionais"
|
532 |
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
534 |
msgid "None!"
|
535 |
msgstr "Nenhum!"
|
536 |
|
537 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
538 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
539 |
msgid "Order"
|
540 |
msgstr "Ordem"
|
541 |
|
542 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
543 |
msgid "Reset"
|
544 |
msgstr "Redefinir"
|
545 |
|
546 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
547 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
548 |
msgid "SUCCESSFUL"
|
549 |
msgstr "CONCLUÍDO"
|
550 |
|
551 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
553 |
msgid "select"
|
554 |
msgstr "Selecionar"
|
555 |
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
558 |
msgid "Users per page"
|
559 |
msgstr "Usuários por Páginas"
|
560 |
|
561 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
563 |
msgid "Apply"
|
564 |
msgstr "Aplicar"
|
565 |
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
567 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
568 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
569 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
570 |
msgid "Users Extended"
|
571 |
msgstr "Usuários Extendidos"
|
572 |
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
574 |
#, php-format
|
575 |
msgid "Search results for “%s”"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
579 |
#, php-format
|
580 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
581 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
584 |
msgid "Search Users"
|
585 |
msgstr "Pesquisar por Usuários"
|
586 |
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
589 |
msgid "Role"
|
590 |
msgstr "Função"
|
591 |
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
595 |
msgid "Website"
|
596 |
msgstr "Website"
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
600 |
msgid "Posts"
|
601 |
msgstr "Postagens"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
604 |
msgid "View posts by this author"
|
605 |
msgstr "Ver postagens desse autor"
|
606 |
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
608 |
msgid "Super Admin"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
612 |
#, php-format
|
613 |
msgid "e-mail: %s"
|
614 |
msgstr "e-mail: %s"
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
617 |
#, fuzzy
|
618 |
msgid "Change"
|
619 |
msgstr "Mudar imagem"
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
622 |
msgid "Update selected users"
|
623 |
msgstr "Atualizar Usuários selecionados"
|
624 |
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
626 |
msgid "Update"
|
627 |
msgstr "Atualizar"
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
630 |
msgid "OK"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
634 |
msgid "Cancel"
|
635 |
msgstr ""
|
636 |
|
640 |
msgstr "Novos usuários registrados no site %s:"
|
641 |
|
642 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
646 |
#, php-format
|
647 |
msgid "Username: %s"
|
648 |
msgstr "Nome de usuário: %s"
|
662 |
msgid "[%s] Your username and password"
|
663 |
msgstr "[%s] Seu nome de usuários e senha"
|
664 |
|
665 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
666 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
667 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
668 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
669 |
#, php-format
|
670 |
msgid "%s: %s"
|
671 |
msgstr "%s: %s"
|
672 |
|
673 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
674 |
#, php-format
|
675 |
msgid ""
|
676 |
"To activate your user, please click the following link:\n"
|
687 |
"Depois de ativar, você receberá <strong>outro e-mail</strong> com seu login.\n"
|
688 |
"\n"
|
689 |
|
690 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
691 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
692 |
msgid "Your account is now active!"
|
693 |
msgstr "Sua conta agora está ativa!"
|
694 |
|
695 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
696 |
#, php-format
|
697 |
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>."
|
698 |
msgstr "Seu site em <a href=\"%1$s\">%2$s</a> Está ativo. Faça login usando seu nome de usuário e senha: “%3$s”. Verifique a Caixa de Entrada do seu e-mail às %4$s para senha e intruções. Se não receber seu e-mail, veja se não está na pasta de Spams. Se ainda não receber um e-mail em uma hora, tente <a href=\"%5$s\">redefinir sua senha</a></p>."
|
699 |
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
701 |
msgid "An error occurred during the activation"
|
702 |
msgstr "Um erro ocorreu durante a ativação"
|
703 |
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
705 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
706 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
707 |
#, php-format
|
708 |
msgid "Password: %s"
|
709 |
msgstr "Senha: %s"
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
712 |
msgid "Invalid activation key."
|
713 |
msgstr "Chave de ativação inválida"
|
714 |
|
715 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
716 |
msgid "The site is already active."
|
717 |
msgstr "O site já está ativo"
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
720 |
msgid "Could not create user"
|
721 |
msgstr "Não foi possível criar usuário"
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
724 |
msgid "That username is already activated."
|
725 |
msgstr "Este nome de usuário já está ativado"
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
728 |
msgid "That username is currently reserved but may be available in a couple of days."
|
729 |
msgstr "Nome de usuário reservado."
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
732 |
msgid "username and email used"
|
733 |
msgstr "Nome de usuário e e-mail usados"
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
736 |
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."
|
737 |
msgstr "E-mail já usado. Verifique se não há um e-mail de ativação na sua caixa de entrada. Estará disponível em alguns dias se nada fizer."
|
738 |
|
749 |
msgstr "Atualizar o arquivo"
|
750 |
|
751 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
753 |
msgid "Delete the picture"
|
754 |
msgstr "Excluir figura"
|
755 |
|
772 |
msgstr ""
|
773 |
|
774 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
777 |
msgid "Options"
|
778 |
msgstr "Opções"
|
779 |
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
781 |
msgid "WordPress Fields table emptied"
|
782 |
msgstr "Tabela de campos do WordPress esvaziada"
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
785 |
msgid "WordPress Fields table deleted"
|
786 |
msgstr "Tabela de campos do WordPress excluída"
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
789 |
msgid "Extra Fields table emptied"
|
790 |
msgstr "Tabela de Extra Fields esvaziada"
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
793 |
msgid "Extra Fields table deleted"
|
794 |
msgstr "Tabela de Extra Fields esxcluída"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
797 |
msgid "Users Data table emptied"
|
798 |
msgstr "Tabela com dados de usuários esvaziada"
|
799 |
|
800 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
801 |
msgid "Users Data table deleted"
|
802 |
msgstr "Tabela com dados de usuários excluída"
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
805 |
msgid "Options set to default values"
|
806 |
msgstr "Opções definidas para valores padrão"
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
809 |
msgid "Options deleted"
|
810 |
msgstr "Opções excluídas"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
813 |
msgid "Options changed"
|
814 |
msgstr "Opções alteradas"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
817 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
818 |
msgstr "Esta operação vai criar/atualizar todas a opções/tabelas que faltam, continuar?"
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
821 |
msgid "Support the Cimy Project"
|
822 |
msgstr "Suporte o Projeto Cimy"
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
825 |
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!"
|
826 |
msgstr "Este plugin é o resultado de horas de desenvolvimento para adicionar novos recurso, suportar novas versões do WordPress e corrigir bugs, por favor, faça um donativo ao autor! <br /><br /><small>Tradução para pt_BR: <a href=\"http://www.arquivo.tk\" target=_blank\">Diana K. C</a></small>"
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
829 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
830 |
msgid "Save Changes"
|
831 |
msgstr "Salvar Mudanças"
|
832 |
|
833 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
834 |
msgid "General"
|
835 |
msgstr "Geral"
|
836 |
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
838 |
msgid "installed is"
|
839 |
msgstr "instalado é"
|
840 |
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
842 |
msgid "OPTIONS DELETED!"
|
843 |
msgstr "OPÇÕES EXCLUÍDAS`"
|
844 |
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
847 |
msgid "Fix the problem"
|
848 |
msgstr "Corrigir problema"
|
849 |
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
851 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
852 |
msgstr "Versões não coincidem! Isto pode ter sido causado porque não desativou e reativou o plugin depois da atualização!"
|
853 |
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
855 |
msgid "Picture/Avatar upload"
|
856 |
msgstr "Envio de Figura/Avatar"
|
857 |
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
859 |
msgid "is created and writable"
|
860 |
msgstr "foi criado e pode ser escrito"
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
863 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
864 |
msgstr "não foi criado ou o serviço de hospedam não tem permissão de escrever nele."
|
865 |
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
867 |
msgid "Show all fields in the welcome email"
|
868 |
msgstr "Mostrar todos os campos no e-mail de boas-vindas"
|
869 |
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
871 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
872 |
msgstr "O e-mail enviado ao admin e ao usuário que se registrou, mostrará todos os campos."
|
873 |
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
875 |
msgid "Enable email confirmation"
|
876 |
msgstr "Ativar configuração de e-mail"
|
877 |
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
879 |
msgid "user that registers should confirm its email address via a link click"
|
880 |
msgstr "Usuários que se registrarem devem confirmar seu e-mail através de link"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
883 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
884 |
msgstr "<strong>Nota:</strong> se ativar esta opção, todas os itens de envio de arquivos serão destaivados como envio de arquivos, avatar etc."
|
885 |
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
887 |
#, fuzzy
|
888 |
msgid "Enable form confirmation"
|
889 |
msgstr "Ativar configuração de e-mail"
|
890 |
|
891 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
892 |
msgid "a summary of the registration form will be presented to the user"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
896 |
msgid "Customize welcome email sent to the new user"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
900 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
904 |
msgid "Redirect to the source"
|
905 |
msgstr "Redirecionar para a origem"
|
906 |
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
908 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
909 |
msgstr "Depois do registro ou confirmação, o usuário será redirecionado para o endereço onde estava antes de clicar no link para se registrar."
|
910 |
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
912 |
msgid "No captcha"
|
913 |
msgstr "Sem CAPTCHA"
|
914 |
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
916 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
917 |
msgstr "Ativar <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
918 |
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
920 |
msgid "Public KEY"
|
921 |
msgstr "Chave pública (Public KEY)"
|
922 |
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
924 |
msgid "Private KEY"
|
925 |
msgstr "Chave privativa (Private KEY)"
|
926 |
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
928 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
929 |
msgstr "Ativar <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage CAPTCHA</a>"
|
930 |
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
932 |
msgid "This captcha is probably weaker, but is easier for users"
|
933 |
msgstr "Este CAPTCHA é mais fraco, porém, mais simples para usuários"
|
934 |
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
936 |
#, php-format
|
937 |
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>"
|
938 |
msgstr "<strong>ATENÇÃO: para ativar este captcha, faça download da extensção<a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">PHP Captcha</a> e extraia em %s</strong>"
|
939 |
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
941 |
msgid "Change login/registration page logo"
|
942 |
msgstr "Mudar logotipo da página de registro"
|
943 |
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
945 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
946 |
msgstr "Dimensão máxima recomendada da largura é 328px"
|
947 |
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
949 |
msgid "Database"
|
950 |
msgstr "Banco de Dados"
|
951 |
|
952 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
956 |
msgid "select action"
|
957 |
msgstr "Selecione uma ação"
|
958 |
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
960 |
msgid "Default values"
|
961 |
msgstr "Valores padrão"
|
962 |
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
967 |
msgid "Delete"
|
968 |
msgstr "Excluir"
|
969 |
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
974 |
msgid "NOT PRESENT"
|
975 |
msgstr "NÃO PRESENTE"
|
976 |
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
978 |
msgid "WordPress Fields table"
|
979 |
msgstr "Tabela de Campos do WordPress"
|
980 |
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
984 |
msgid "Empty"
|
985 |
msgstr "Esvaziar"
|
986 |
|
987 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
988 |
msgid "Extra Fields table"
|
989 |
msgstr "Tabela de Campos Extras"
|
990 |
|
991 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
992 |
msgid "Users Data table"
|
993 |
msgstr "Tabela de Dados do Usuário"
|
994 |
|
995 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
996 |
msgid "all data inserted by users in all and only extra fields"
|
997 |
msgstr "Todos os dados inseridos pelos usuários em todos os campos extras"
|
998 |
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
1000 |
msgid "Force tables creation"
|
1001 |
msgstr "Forçar criação de tabelas"
|
1002 |
|
1003 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
1004 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1005 |
msgstr "Equivalente a desativar e ativar o plugin, nenhuma outra operação é feita"
|
1006 |
|
1007 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1008 |
msgid "User Profile"
|
1009 |
msgstr "Perfil do Usuário"
|
1010 |
|
1011 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1012 |
msgid "Extra Fields section title"
|
1013 |
msgstr "Títulos para seção de Campos Adicionais"
|
1014 |
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1016 |
msgid "Fieldset's titles, separates with comma"
|
1017 |
msgstr "Tïtulos da seções, separados por vírgulas"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1020 |
msgid "example: title1,title2,title3"
|
1021 |
msgstr "Ex.: título A, título B, Título C"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1024 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1025 |
msgstr "<strong>Nota:</strong> ao mudar a ordem ou remover qualquer campo adicional, é preciso definir onde os campos aparecem novamente"
|
1026 |
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1028 |
msgid "Authors & Users Extended"
|
1029 |
msgstr "Autores & Usuários Extendidos"
|
1030 |
|
1031 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1032 |
msgid "Hide username field"
|
1033 |
msgstr "Esconder campo <strong>Nome de Usuário</strong>"
|
1034 |
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1036 |
msgid "Hide name field"
|
1037 |
msgstr "Esconder campo <strong>Nome</strong>"
|
1038 |
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1040 |
msgid "Hide email field"
|
1041 |
msgstr "Esconder campo <strong>E-mail</strong>"
|
1042 |
|
1043 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1044 |
msgid "Hide role field"
|
1045 |
msgstr "Esconder campo <strong>Função</strong>"
|
1046 |
|
1047 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:671
|
1048 |
msgid "Hide website field"
|
1049 |
msgstr "Esconder campo <strong>Website</strong>"
|
1050 |
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1052 |
msgid "Hide n. posts field"
|
1053 |
msgstr "Esconder número de postagens"
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
1056 |
msgid "WordPress hidden fields"
|
1057 |
msgstr "Campos WordPress"
|
1058 |
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
1060 |
+
#, fuzzy
|
1061 |
+
msgid "Show username"
|
1062 |
+
msgstr "Mostrar Sobrenome"
|
1063 |
+
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
|
1065 |
+
msgid "when unchecked the email address will be used as username"
|
1066 |
+
msgstr ""
|
1067 |
+
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
1069 |
msgid "Show password"
|
1070 |
msgstr "Mostrar senha"
|
1071 |
|
1072 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
1073 |
msgid "Show confirmation password"
|
1074 |
msgstr "Mostrar senha de confirmação"
|
1075 |
|
1076 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
1077 |
msgid "Show password strength meter"
|
1078 |
msgstr "Mostrar indicador de força da senha"
|
1079 |
|
1080 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
1081 |
msgid "Show first name"
|
1082 |
msgstr "Mostrar Nome"
|
1083 |
|
1084 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
1085 |
msgid "Show last name"
|
1086 |
msgstr "Mostrar Sobrenome"
|
1087 |
|
1088 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
|
1089 |
msgid "Show nickname"
|
1090 |
msgstr "Mostrar Apelido"
|
1091 |
|
1092 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
1093 |
msgid "Show website"
|
1094 |
msgstr "Mostrar Website"
|
1095 |
|
1096 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
1097 |
msgid "Show AIM"
|
1098 |
msgstr "Mostrar AIM"
|
1099 |
|
1100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:721
|
1101 |
msgid "Show Yahoo IM"
|
1102 |
msgstr "Mostrar Yahoo IM"
|
1103 |
|
1104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
1105 |
msgid "Show Jabber / Google Talk"
|
1106 |
msgstr "Mostrar Jabber/ Google Talk"
|
1107 |
|
1108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:729
|
1109 |
msgid "Show Biographical Info"
|
1110 |
msgstr "Mostrar Biografia"
|
1111 |
|
1127 |
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!"
|
1128 |
msgstr "<strong>Nota:</strong> este site permite personalizar sua senha. Depois do registro, você receberá um e-mail com outra senha!"
|
1129 |
|
1130 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
|
1131 |
msgid "Password"
|
1132 |
msgstr "Senha"
|
1133 |
|
1134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:236
|
1135 |
msgid "Password confirmation"
|
1136 |
msgstr "Confirmação de senha"
|
1137 |
|
1138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:258
|
1139 |
msgid "First name"
|
1140 |
msgstr "Nome"
|
1141 |
|
1142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
1143 |
msgid "Last name"
|
1144 |
msgstr "Sobrenome"
|
1145 |
|
1146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
1147 |
msgid "Nickname"
|
1148 |
msgstr "Apelido"
|
1149 |
|
1150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:346
|
1151 |
msgid "AIM"
|
1152 |
msgstr "AIM"
|
1153 |
|
1154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:368
|
1155 |
msgid "Yahoo IM"
|
1156 |
msgstr "Yahoo IM"
|
1157 |
|
1158 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:390
|
1159 |
msgid "Jabber / Google Talk"
|
1160 |
msgstr "Jabber / Google Talk"
|
1161 |
|
1162 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:412
|
1163 |
msgid "Biographical Info"
|
1164 |
msgstr "Biografias"
|
1165 |
|
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 |
"Language: \n"
|
@@ -17,146 +17,147 @@ msgstr ""
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
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/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
35 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
36 |
msgid "ERROR"
|
37 |
msgstr "ОШИБКА"
|
38 |
|
39 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "не верно введен email."
|
46 |
|
47 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "не может быть пустым."
|
50 |
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "не верно"
|
55 |
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "ДА"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "НЕТ"
|
67 |
|
68 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
69 |
msgid "should be"
|
70 |
msgstr "должно быть"
|
71 |
|
72 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
73 |
msgid "should be an image."
|
74 |
msgstr "должно быть изображение."
|
75 |
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "не может иметь размер менее чем"
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "не может иметь длину менее чем"
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "не может иметь размер отличный от"
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "не может иметь длину отличную от"
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "имеет размер больше чем"
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "имеет длину больше чем"
|
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_register.php:
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
112 |
msgid "Username"
|
113 |
msgstr "Имя пользователя"
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
msgid "E-mail"
|
119 |
msgstr "E-mail"
|
120 |
|
121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
#, fuzzy
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
134 |
msgid "Strength indicator"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
138 |
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 ! \" ? $ % ^ & )."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
142 |
#, fuzzy
|
143 |
msgid "Change image"
|
144 |
msgstr "Изменить порядок"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
147 |
msgid "Insert the code:"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
@@ -181,17 +182,17 @@ msgid "Change order"
|
|
181 |
msgstr "Изменить порядок"
|
182 |
|
183 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
185 |
msgid "Min length"
|
186 |
msgstr "Мин длина"
|
187 |
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
msgid "Exact length"
|
191 |
msgstr "Точная длина"
|
192 |
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
195 |
msgid "Max length"
|
196 |
msgstr "Макс длина"
|
197 |
|
@@ -213,365 +214,365 @@ msgid "You cannot give an order that misses some numbers"
|
|
213 |
msgstr "Вы не можете установить порядок, который пропускает некоторые числа"
|
214 |
|
215 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
216 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
217 |
msgid "Nothing selected"
|
218 |
msgstr "Ничего не выбрано"
|
219 |
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Field(s)"
|
222 |
msgstr "Поле(я)"
|
223 |
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
225 |
msgid "deleted correctly"
|
226 |
msgstr "удалены правильно"
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
230 |
msgid "Min size"
|
231 |
msgstr "Мин размер"
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
234 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
235 |
msgid "Exact size"
|
236 |
msgstr "Точный размер"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
240 |
msgid "Max size"
|
241 |
msgstr "Макс размер"
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
244 |
msgid "Exact or Max size"
|
245 |
msgstr "Точный или Макс размер"
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Name not specified"
|
249 |
msgstr "Имя не задано"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Name cannot contains spaces"
|
253 |
msgstr "Имя не должно содержать пробелов"
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "Label not specified"
|
257 |
msgstr "Метка не выбрана"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
msgid "not selected (with this type is necessary)"
|
261 |
msgstr "не выбрано (с этим типом необходимо)"
|
262 |
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
264 |
msgid "If you select"
|
265 |
msgstr "Если Вы выбрали"
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
268 |
msgid "you cannot select Min or Max"
|
269 |
msgstr "Вы не можете выбрать Мин или Макс"
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
274 |
msgid "should be in the range of"
|
275 |
msgstr "должно быть в диапозоне"
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
278 |
msgid "Equal TO not specified"
|
279 |
msgstr "Равная ЧЕМУ не выбрано"
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
282 |
msgid "With checkbox type Equal TO can only be"
|
283 |
msgstr "Может быть только с флажком выбора типа Равная ЧЕМУ"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
286 |
msgid "With radio type Equal TO can only be"
|
287 |
msgstr "Может быть только с переключателем выбора типа Равная ЧЕМУ"
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
290 |
msgid "With checkbox type Value can only be"
|
291 |
msgstr "Может быть только с флажками выбора типа Значение"
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
294 |
msgid "With radio type Value can only be"
|
295 |
msgstr "Может быть только с переключателем выбора типа Значение"
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
298 |
msgid "Field inserted correctly"
|
299 |
msgstr "Поле вставлено корректно"
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
302 |
msgid "Field #"
|
303 |
msgstr "Поле #"
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
306 |
msgid "updated correctly"
|
307 |
msgstr "обновлено корректно"
|
308 |
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Name inserted is just in the database, change to another one"
|
311 |
msgstr "Вставляемое имя уже есть в БД, выберите другое"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
315 |
msgid "Add a new Field"
|
316 |
msgstr "Добавить новое поле"
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
319 |
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."
|
320 |
msgstr "Для добавления нового поля вам необходимо задать имя, тип и метку; значение и описание. Правила применяются в процессе регистрации пользователя."
|
321 |
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
323 |
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'"
|
324 |
msgstr "С <strong>переключателем(radio)</strong> и <strong>флажками(checkbox)</strong>: <em>Значение</em> и <em>равно ЧЕМУ</em> может быть либо 'Yes', либо 'No' - это означает 'выбрано' или 'не выбрано'"
|
325 |
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
327 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
328 |
msgstr "С <strong>выпадающим списком(drop-down)</strong>: вы можете добавить все опции в метку, например: метка/элемент1,элемент2,элемент3"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
331 |
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"
|
332 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
335 |
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)"
|
336 |
msgstr "С <strong>picture-url</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; <em>равная ЧЕМУ</em> подразумевает max ширину для превью (высота будет установлена пропорционально)"
|
337 |
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
339 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
340 |
msgstr "С <strong>датой регистрации(registration-date)</strong>: <em>равна ЧЕМУ</em> подразумевает формат даты и времени"
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
343 |
#, fuzzy
|
344 |
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"
|
345 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
346 |
|
347 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
348 |
#, fuzzy
|
349 |
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"
|
350 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
351 |
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
msgid "Name"
|
359 |
msgstr "Имя"
|
360 |
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
msgid "Value"
|
368 |
msgstr "Значение"
|
369 |
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
373 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
374 |
msgid "Type"
|
375 |
msgstr "Тип"
|
376 |
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
378 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
381 |
msgid "Label"
|
382 |
msgstr "Метка"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
387 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
388 |
msgid "Description"
|
389 |
msgstr "Описание"
|
390 |
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
393 |
msgid "Rules"
|
394 |
msgstr "Правила"
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
398 |
msgid "Actions"
|
399 |
msgstr "Действия"
|
400 |
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
#, fuzzy
|
406 |
msgid "Fieldset"
|
407 |
msgstr "Поля"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
msgid "Can be empty"
|
412 |
msgstr "Может быть пустым"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
msgid "Check for E-mail syntax"
|
417 |
msgstr "Проверка синтаксиса E-mail"
|
418 |
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
420 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
421 |
msgid "Can be modified"
|
422 |
msgstr "Может быть изменено"
|
423 |
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
426 |
msgid "Can be modified only if empty"
|
427 |
msgstr "Может быть изменено только если пустое"
|
428 |
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
431 |
msgid "Can be modified only by admin"
|
432 |
msgstr "Может быть изменено только админом"
|
433 |
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
436 |
msgid "Can be modified only by admin or if empty"
|
437 |
msgstr "Может быть изменено только админом или если пустое"
|
438 |
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
440 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
441 |
msgid "Cannot be modified"
|
442 |
msgstr "Не может быть изменено"
|
443 |
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
446 |
msgid "Should be equal TO"
|
447 |
msgstr "Долднадолжно быть равно ЧЕМУ"
|
448 |
|
449 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
451 |
msgid "Case sensitive"
|
452 |
msgstr "Чуствительность к регистру"
|
453 |
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
456 |
msgid "Regular Expression"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
461 |
msgid "Show the field in the registration"
|
462 |
msgstr "Показывать поле при регистрации"
|
463 |
|
464 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
466 |
msgid "Show the field in User's profile"
|
467 |
msgstr "Показывать поле в профиле пользователя"
|
468 |
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
470 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
471 |
#, fuzzy
|
472 |
msgid "Show the field in Users Extended section"
|
473 |
msgstr "Показывать поле в меню A&продвинутых П"
|
474 |
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
476 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
477 |
#, fuzzy
|
478 |
msgid "Show the field in the search engine"
|
479 |
msgstr "Показывать поле при регистрации"
|
480 |
|
481 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
483 |
#, fuzzy
|
484 |
msgid "Show the field in the blog"
|
485 |
msgstr "Показывать поле при регистрации"
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
#, fuzzy
|
490 |
msgid "Show the field if the role is at least:"
|
491 |
msgstr "Показывать поле при регистрации"
|
492 |
|
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 "Anonymous"
|
496 |
msgstr ""
|
497 |
|
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 "User has 'view_cimy_extra_fields' capability"
|
501 |
msgstr ""
|
502 |
|
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 "Send an email to the admin if the user changes its value"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
509 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
510 |
#, fuzzy
|
511 |
msgid "Advanced options"
|
512 |
msgstr "Действия"
|
513 |
|
514 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
515 |
msgid "Clear"
|
516 |
msgstr "Очистить"
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
519 |
msgid "Invert selection"
|
520 |
msgstr "Инветировать выбор"
|
521 |
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
523 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
524 |
msgstr "Вы действительно хотите удалить поле(я) и данные вставленные в них пользователями?"
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
527 |
msgid "WordPress Fields"
|
528 |
msgstr "WordPress Fields"
|
529 |
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
531 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
535 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
536 |
msgid "Extra Fields"
|
537 |
msgstr "Extra Fields"
|
538 |
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
540 |
msgid "None!"
|
541 |
msgstr "Нет!"
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
545 |
msgid "Order"
|
546 |
msgstr "Порядок"
|
547 |
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
549 |
msgid "Reset"
|
550 |
msgstr "Сброс"
|
551 |
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
553 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
554 |
msgid "SUCCESSFUL"
|
555 |
msgstr "УСПЕШНО"
|
556 |
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
559 |
#, fuzzy
|
560 |
msgid "select"
|
561 |
msgstr "Удалить"
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
565 |
#, fuzzy
|
566 |
msgid "Users per page"
|
567 |
msgstr "Таблица данных пользователей"
|
568 |
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
571 |
msgid "Apply"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
@@ -579,70 +580,70 @@ msgstr ""
|
|
579 |
msgid "Users Extended"
|
580 |
msgstr "Список Авторов и продвинутых пользователей"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
#, php-format
|
584 |
msgid "Search results for “%s”"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
#, php-format
|
589 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
593 |
msgid "Search Users"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
#, fuzzy
|
599 |
msgid "Role"
|
600 |
msgstr "Правила"
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
605 |
msgid "Website"
|
606 |
msgstr "Адрес сайта"
|
607 |
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
610 |
msgid "Posts"
|
611 |
msgstr "Сообщения"
|
612 |
|
613 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
614 |
msgid "View posts by this author"
|
615 |
msgstr "Просмотреть сообщения этого автора"
|
616 |
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
618 |
msgid "Super Admin"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
622 |
#, php-format
|
623 |
msgid "e-mail: %s"
|
624 |
msgstr "e-mail: %s"
|
625 |
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
627 |
#, fuzzy
|
628 |
msgid "Change"
|
629 |
msgstr "Изменить порядок"
|
630 |
|
631 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
632 |
#, fuzzy
|
633 |
msgid "Update selected users"
|
634 |
msgstr "Удалить выбранные поля"
|
635 |
|
636 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
637 |
#, fuzzy
|
638 |
msgid "Update"
|
639 |
msgstr "Обновить поле"
|
640 |
|
641 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
642 |
msgid "OK"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
646 |
msgid "Cancel"
|
647 |
msgstr ""
|
648 |
|
@@ -652,9 +653,9 @@ msgid "New user registration on your site %s:"
|
|
652 |
msgstr ""
|
653 |
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
656 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
657 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
658 |
#, fuzzy, php-format
|
659 |
msgid "Username: %s"
|
660 |
msgstr "Имя пользователя"
|
@@ -674,15 +675,15 @@ msgstr ""
|
|
674 |
msgid "[%s] Your username and password"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
678 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
679 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
680 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
681 |
#, php-format
|
682 |
msgid "%s: %s"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
686 |
#, php-format
|
687 |
msgid ""
|
688 |
"To activate your user, please click the following link:\n"
|
@@ -693,52 +694,52 @@ msgid ""
|
|
693 |
"\n"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
698 |
msgid "Your account is now active!"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
702 |
#, php-format
|
703 |
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>."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
707 |
msgid "An error occurred during the activation"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
711 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
712 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
713 |
#, php-format
|
714 |
msgid "Password: %s"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
718 |
msgid "Invalid activation key."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
722 |
msgid "The site is already active."
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
726 |
msgid "Could not create user"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
730 |
msgid "That username is already activated."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
734 |
msgid "That username is currently reserved but may be available in a couple of days."
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
738 |
msgid "username and email used"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
742 |
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."
|
743 |
msgstr ""
|
744 |
|
@@ -757,7 +758,7 @@ msgid "Update the file"
|
|
757 |
msgstr "Обновить поле"
|
758 |
|
759 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
760 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
761 |
#, fuzzy
|
762 |
msgid "Delete the picture"
|
763 |
msgstr "Удалить поле"
|
@@ -782,333 +783,342 @@ msgid "%s (%s) has changed one or more fields"
|
|
782 |
msgstr ""
|
783 |
|
784 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
785 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
787 |
msgid "Options"
|
788 |
msgstr "Настройки"
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
791 |
msgid "WordPress Fields table emptied"
|
792 |
msgstr "Таблица WordPress Fields очищена"
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
795 |
msgid "WordPress Fields table deleted"
|
796 |
msgstr "Таблица WordPress Fields удалена"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
799 |
msgid "Extra Fields table emptied"
|
800 |
msgstr "Таблица Extra Fields очищена"
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
803 |
msgid "Extra Fields table deleted"
|
804 |
msgstr "Таблица Extra Fields удалена"
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
807 |
msgid "Users Data table emptied"
|
808 |
msgstr "Таблица пользовательских данных очищена"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
811 |
msgid "Users Data table deleted"
|
812 |
msgstr "Таблица пользовательских данных удалена"
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
815 |
msgid "Options set to default values"
|
816 |
msgstr "Установлены настройки по-умолчанию"
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
819 |
msgid "Options deleted"
|
820 |
msgstr "Настройки удалены"
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
823 |
msgid "Options changed"
|
824 |
msgstr "Настройки изменены"
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
827 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
831 |
msgid "Support the Cimy Project"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
835 |
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!"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
840 |
msgid "Save Changes"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
844 |
msgid "General"
|
845 |
msgstr "Главное"
|
846 |
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
848 |
msgid "installed is"
|
849 |
msgstr "установлено"
|
850 |
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
852 |
msgid "OPTIONS DELETED!"
|
853 |
msgstr "НАСТРОЙКИ УДАЛЕНЫ!"
|
854 |
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
857 |
msgid "Fix the problem"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
861 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
862 |
msgstr "ВЕРСИИ НЕ СОВПАДАЮТ! Это из-за того, что Вы не деактивировали, а затем активировали плагин после обновления! Могут возникнуть проблемы..."
|
863 |
|
864 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
865 |
msgid "Picture/Avatar upload"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
869 |
msgid "is created and writable"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
873 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
877 |
#, fuzzy
|
878 |
msgid "Show all fields in the welcome email"
|
879 |
msgstr "Показывать поле при регистрации"
|
880 |
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
882 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
886 |
msgid "Enable email confirmation"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
890 |
msgid "user that registers should confirm its email address via a link click"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
894 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
898 |
msgid "Enable form confirmation"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
902 |
msgid "a summary of the registration form will be presented to the user"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
906 |
msgid "Customize welcome email sent to the new user"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
910 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
914 |
msgid "Redirect to the source"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
918 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
922 |
msgid "No captcha"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
926 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
930 |
msgid "Public KEY"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
934 |
msgid "Private KEY"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
938 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
942 |
msgid "This captcha is probably weaker, but is easier for users"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
946 |
#, php-format
|
947 |
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>"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
951 |
msgid "Change login/registration page logo"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
955 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
959 |
msgid "Database"
|
960 |
msgstr "База данных"
|
961 |
|
962 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
966 |
msgid "select action"
|
967 |
msgstr "выберите действие"
|
968 |
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
970 |
msgid "Default values"
|
971 |
msgstr "Значения по-умолчанию"
|
972 |
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
977 |
msgid "Delete"
|
978 |
msgstr "Удалить"
|
979 |
|
980 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
983 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
984 |
msgid "NOT PRESENT"
|
985 |
msgstr "НЕ СУЩЕСТВУЕТ"
|
986 |
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
988 |
msgid "WordPress Fields table"
|
989 |
msgstr "Таблица WordPress Fields"
|
990 |
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
993 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
994 |
msgid "Empty"
|
995 |
msgstr "Очистить"
|
996 |
|
997 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
998 |
msgid "Extra Fields table"
|
999 |
msgstr "Таблица Extra Fields"
|
1000 |
|
1001 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1002 |
msgid "Users Data table"
|
1003 |
msgstr "Таблица данных пользователей"
|
1004 |
|
1005 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1006 |
msgid "all data inserted by users in all and only extra fields"
|
1007 |
msgstr "все данные, вставленные пользователями во все и только в дополнительные поля"
|
1008 |
|
1009 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1010 |
msgid "Force tables creation"
|
1011 |
msgstr "Force tables creation"
|
1012 |
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1014 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1018 |
msgid "User Profile"
|
1019 |
msgstr "Профиль пользователя"
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1022 |
#, fuzzy
|
1023 |
msgid "Extra Fields section title"
|
1024 |
msgstr "Таблица Extra Fields"
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1027 |
msgid "Fieldset's titles, separates with comma"
|
1028 |
msgstr "Названия полей через запятую"
|
1029 |
|
1030 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1031 |
msgid "example: title1,title2,title3"
|
1032 |
msgstr "пример: заголовок1,заголовок2, заголовок3"
|
1033 |
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1035 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1039 |
msgid "Authors & Users Extended"
|
1040 |
msgstr "Авторы и Продвинутые пользователи"
|
1041 |
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1043 |
msgid "Hide username field"
|
1044 |
msgstr "Скрыть поле с именем пользователя"
|
1045 |
|
1046 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1047 |
msgid "Hide name field"
|
1048 |
msgstr "Скрыть поле с именем"
|
1049 |
|
1050 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1051 |
msgid "Hide email field"
|
1052 |
msgstr "Скрыть поле с email"
|
1053 |
|
1054 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1055 |
#, fuzzy
|
1056 |
msgid "Hide role field"
|
1057 |
msgstr "Скрыть поле с именем"
|
1058 |
|
1059 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1060 |
msgid "Hide website field"
|
1061 |
msgstr "Скрыть поле с адресом сайта"
|
1062 |
|
1063 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1064 |
msgid "Hide n. posts field"
|
1065 |
msgstr "Скрыть поле с № постов"
|
1066 |
|
1067 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1068 |
msgid "WordPress hidden fields"
|
1069 |
msgstr "Скрытые поля WordPress"
|
1070 |
|
1071 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1072 |
msgid "Show password"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1076 |
msgid "Show confirmation password"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1080 |
msgid "Show password strength meter"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1084 |
msgid "Show first name"
|
1085 |
msgstr "Показать имя"
|
1086 |
|
1087 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1088 |
msgid "Show last name"
|
1089 |
msgstr "Показать фамилию"
|
1090 |
|
1091 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1092 |
msgid "Show nickname"
|
1093 |
msgstr "Показать ник"
|
1094 |
|
1095 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1096 |
msgid "Show website"
|
1097 |
msgstr "Показать адрес сайта"
|
1098 |
|
1099 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1100 |
msgid "Show AIM"
|
1101 |
msgstr "Показать AIM"
|
1102 |
|
1103 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1104 |
msgid "Show Yahoo IM"
|
1105 |
msgstr "Показать Yahoo IM"
|
1106 |
|
1107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1108 |
msgid "Show Jabber / Google Talk"
|
1109 |
msgstr "Показать Jabber / Google Talk"
|
1110 |
|
1111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1112 |
msgid "Show Biographical Info"
|
1113 |
msgstr ""
|
1114 |
|
@@ -1130,44 +1140,44 @@ msgstr ""
|
|
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 ""
|
1132 |
|
1133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1134 |
msgid "Password"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1138 |
msgid "Password confirmation"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1142 |
#, fuzzy
|
1143 |
msgid "First name"
|
1144 |
msgstr "Показать имя"
|
1145 |
|
1146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1147 |
#, fuzzy
|
1148 |
msgid "Last name"
|
1149 |
msgstr "Показать фамилию"
|
1150 |
|
1151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1152 |
#, fuzzy
|
1153 |
msgid "Nickname"
|
1154 |
msgstr "Имя"
|
1155 |
|
1156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1157 |
msgid "AIM"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1161 |
#, fuzzy
|
1162 |
msgid "Yahoo IM"
|
1163 |
msgstr "Показать Yahoo IM"
|
1164 |
|
1165 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1166 |
#, fuzzy
|
1167 |
msgid "Jabber / Google Talk"
|
1168 |
msgstr "Показать Jabber / Google Talk"
|
1169 |
|
1170 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1171 |
msgid "Biographical Info"
|
1172 |
msgstr ""
|
1173 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:56-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:56-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: mikolka <mikolka.info@gmail.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
|
|
|
|
|
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
36 |
msgid "ERROR"
|
37 |
msgstr "ОШИБКА"
|
38 |
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "не верно введен email."
|
46 |
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "не может быть пустым."
|
50 |
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
52 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "не верно"
|
55 |
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
59 |
msgid "YES"
|
60 |
msgstr "ДА"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
65 |
msgid "NO"
|
66 |
msgstr "НЕТ"
|
67 |
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
69 |
msgid "should be"
|
70 |
msgstr "должно быть"
|
71 |
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
73 |
msgid "should be an image."
|
74 |
msgstr "должно быть изображение."
|
75 |
|
76 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "не может иметь размер менее чем"
|
83 |
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "не может иметь длину менее чем"
|
87 |
|
88 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "не может иметь размер отличный от"
|
91 |
|
92 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "не может иметь длину отличную от"
|
95 |
|
96 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "имеет размер больше чем"
|
99 |
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "имеет длину больше чем"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Имя пользователя"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1007
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Изменить порядок"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1313
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
182 |
msgstr "Изменить порядок"
|
183 |
|
184 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
|
186 |
msgid "Min length"
|
187 |
msgstr "Мин длина"
|
188 |
|
189 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
191 |
msgid "Exact length"
|
192 |
msgstr "Точная длина"
|
193 |
|
194 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
196 |
msgid "Max length"
|
197 |
msgstr "Макс длина"
|
198 |
|
214 |
msgstr "Вы не можете установить порядок, который пропускает некоторые числа"
|
215 |
|
216 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
218 |
msgid "Nothing selected"
|
219 |
msgstr "Ничего не выбрано"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
222 |
msgid "Field(s)"
|
223 |
msgstr "Поле(я)"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
226 |
msgid "deleted correctly"
|
227 |
msgstr "удалены правильно"
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
231 |
msgid "Min size"
|
232 |
msgstr "Мин размер"
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
236 |
msgid "Exact size"
|
237 |
msgstr "Точный размер"
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
241 |
msgid "Max size"
|
242 |
msgstr "Макс размер"
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
245 |
msgid "Exact or Max size"
|
246 |
msgstr "Точный или Макс размер"
|
247 |
|
248 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
249 |
msgid "Name not specified"
|
250 |
msgstr "Имя не задано"
|
251 |
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
253 |
msgid "Name cannot contains spaces"
|
254 |
msgstr "Имя не должно содержать пробелов"
|
255 |
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
257 |
msgid "Label not specified"
|
258 |
msgstr "Метка не выбрана"
|
259 |
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
261 |
msgid "not selected (with this type is necessary)"
|
262 |
msgstr "не выбрано (с этим типом необходимо)"
|
263 |
|
264 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
265 |
msgid "If you select"
|
266 |
msgstr "Если Вы выбрали"
|
267 |
|
268 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
269 |
msgid "you cannot select Min or Max"
|
270 |
msgstr "Вы не можете выбрать Мин или Макс"
|
271 |
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
275 |
msgid "should be in the range of"
|
276 |
msgstr "должно быть в диапозоне"
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
279 |
msgid "Equal TO not specified"
|
280 |
msgstr "Равная ЧЕМУ не выбрано"
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
283 |
msgid "With checkbox type Equal TO can only be"
|
284 |
msgstr "Может быть только с флажком выбора типа Равная ЧЕМУ"
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
287 |
msgid "With radio type Equal TO can only be"
|
288 |
msgstr "Может быть только с переключателем выбора типа Равная ЧЕМУ"
|
289 |
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
291 |
msgid "With checkbox type Value can only be"
|
292 |
msgstr "Может быть только с флажками выбора типа Значение"
|
293 |
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
295 |
msgid "With radio type Value can only be"
|
296 |
msgstr "Может быть только с переключателем выбора типа Значение"
|
297 |
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
299 |
msgid "Field inserted correctly"
|
300 |
msgstr "Поле вставлено корректно"
|
301 |
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
303 |
msgid "Field #"
|
304 |
msgstr "Поле #"
|
305 |
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
307 |
msgid "updated correctly"
|
308 |
msgstr "обновлено корректно"
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
311 |
msgid "Name inserted is just in the database, change to another one"
|
312 |
msgstr "Вставляемое имя уже есть в БД, выберите другое"
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
316 |
msgid "Add a new Field"
|
317 |
msgstr "Добавить новое поле"
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
320 |
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."
|
321 |
msgstr "Для добавления нового поля вам необходимо задать имя, тип и метку; значение и описание. Правила применяются в процессе регистрации пользователя."
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
324 |
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'"
|
325 |
msgstr "С <strong>переключателем(radio)</strong> и <strong>флажками(checkbox)</strong>: <em>Значение</em> и <em>равно ЧЕМУ</em> может быть либо 'Yes', либо 'No' - это означает 'выбрано' или 'не выбрано'"
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
328 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
329 |
msgstr "С <strong>выпадающим списком(drop-down)</strong>: вы можете добавить все опции в метку, например: метка/элемент1,элемент2,элемент3"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
332 |
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"
|
333 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
336 |
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)"
|
337 |
msgstr "С <strong>picture-url</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; <em>равная ЧЕМУ</em> подразумевает max ширину для превью (высота будет установлена пропорционально)"
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
340 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
341 |
msgstr "С <strong>датой регистрации(registration-date)</strong>: <em>равна ЧЕМУ</em> подразумевает формат даты и времени"
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
344 |
#, fuzzy
|
345 |
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"
|
346 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
347 |
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
349 |
#, fuzzy
|
350 |
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"
|
351 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
359 |
msgid "Name"
|
360 |
msgstr "Имя"
|
361 |
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
368 |
msgid "Value"
|
369 |
msgstr "Значение"
|
370 |
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
374 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
375 |
msgid "Type"
|
376 |
msgstr "Тип"
|
377 |
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
382 |
msgid "Label"
|
383 |
msgstr "Метка"
|
384 |
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
389 |
msgid "Description"
|
390 |
msgstr "Описание"
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
394 |
msgid "Rules"
|
395 |
msgstr "Правила"
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
399 |
msgid "Actions"
|
400 |
msgstr "Действия"
|
401 |
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
406 |
#, fuzzy
|
407 |
msgid "Fieldset"
|
408 |
msgstr "Поля"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
412 |
msgid "Can be empty"
|
413 |
msgstr "Может быть пустым"
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
417 |
msgid "Check for E-mail syntax"
|
418 |
msgstr "Проверка синтаксиса E-mail"
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
422 |
msgid "Can be modified"
|
423 |
msgstr "Может быть изменено"
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
427 |
msgid "Can be modified only if empty"
|
428 |
msgstr "Может быть изменено только если пустое"
|
429 |
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
432 |
msgid "Can be modified only by admin"
|
433 |
msgstr "Может быть изменено только админом"
|
434 |
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
437 |
msgid "Can be modified only by admin or if empty"
|
438 |
msgstr "Может быть изменено только админом или если пустое"
|
439 |
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
442 |
msgid "Cannot be modified"
|
443 |
msgstr "Не может быть изменено"
|
444 |
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
447 |
msgid "Should be equal TO"
|
448 |
msgstr "Долднадолжно быть равно ЧЕМУ"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
452 |
msgid "Case sensitive"
|
453 |
msgstr "Чуствительность к регистру"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
457 |
msgid "Regular Expression"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
462 |
msgid "Show the field in the registration"
|
463 |
msgstr "Показывать поле при регистрации"
|
464 |
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
467 |
msgid "Show the field in User's profile"
|
468 |
msgstr "Показывать поле в профиле пользователя"
|
469 |
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
472 |
#, fuzzy
|
473 |
msgid "Show the field in Users Extended section"
|
474 |
msgstr "Показывать поле в меню A&продвинутых П"
|
475 |
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
478 |
#, fuzzy
|
479 |
msgid "Show the field in the search engine"
|
480 |
msgstr "Показывать поле при регистрации"
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
484 |
#, fuzzy
|
485 |
msgid "Show the field in the blog"
|
486 |
msgstr "Показывать поле при регистрации"
|
487 |
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
490 |
#, fuzzy
|
491 |
msgid "Show the field if the role is at least:"
|
492 |
msgstr "Показывать поле при регистрации"
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
496 |
msgid "Anonymous"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
500 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
501 |
msgid "User has 'view_cimy_extra_fields' capability"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
506 |
msgid "Send an email to the admin if the user changes its value"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
511 |
#, fuzzy
|
512 |
msgid "Advanced options"
|
513 |
msgstr "Действия"
|
514 |
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
516 |
msgid "Clear"
|
517 |
msgstr "Очистить"
|
518 |
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
520 |
msgid "Invert selection"
|
521 |
msgstr "Инветировать выбор"
|
522 |
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
524 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
525 |
msgstr "Вы действительно хотите удалить поле(я) и данные вставленные в них пользователями?"
|
526 |
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
528 |
msgid "WordPress Fields"
|
529 |
msgstr "WordPress Fields"
|
530 |
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
536 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
537 |
msgid "Extra Fields"
|
538 |
msgstr "Extra Fields"
|
539 |
|
540 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
541 |
msgid "None!"
|
542 |
msgstr "Нет!"
|
543 |
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
545 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
546 |
msgid "Order"
|
547 |
msgstr "Порядок"
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
550 |
msgid "Reset"
|
551 |
msgstr "Сброс"
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
555 |
msgid "SUCCESSFUL"
|
556 |
msgstr "УСПЕШНО"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
560 |
#, fuzzy
|
561 |
msgid "select"
|
562 |
msgstr "Удалить"
|
563 |
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
566 |
#, fuzzy
|
567 |
msgid "Users per page"
|
568 |
msgstr "Таблица данных пользователей"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
572 |
msgid "Apply"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
578 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
580 |
msgid "Users Extended"
|
581 |
msgstr "Список Авторов и продвинутых пользователей"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
584 |
#, php-format
|
585 |
msgid "Search results for “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
589 |
#, php-format
|
590 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
594 |
msgid "Search Users"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
599 |
#, fuzzy
|
600 |
msgid "Role"
|
601 |
msgstr "Правила"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
606 |
msgid "Website"
|
607 |
msgstr "Адрес сайта"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
611 |
msgid "Posts"
|
612 |
msgstr "Сообщения"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
615 |
msgid "View posts by this author"
|
616 |
msgstr "Просмотреть сообщения этого автора"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
619 |
msgid "Super Admin"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
623 |
#, php-format
|
624 |
msgid "e-mail: %s"
|
625 |
msgstr "e-mail: %s"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
628 |
#, fuzzy
|
629 |
msgid "Change"
|
630 |
msgstr "Изменить порядок"
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
633 |
#, fuzzy
|
634 |
msgid "Update selected users"
|
635 |
msgstr "Удалить выбранные поля"
|
636 |
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
638 |
#, fuzzy
|
639 |
msgid "Update"
|
640 |
msgstr "Обновить поле"
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
643 |
msgid "OK"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
647 |
msgid "Cancel"
|
648 |
msgstr ""
|
649 |
|
653 |
msgstr ""
|
654 |
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
657 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
658 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
659 |
#, fuzzy, php-format
|
660 |
msgid "Username: %s"
|
661 |
msgstr "Имя пользователя"
|
675 |
msgid "[%s] Your username and password"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
679 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
680 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
681 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
682 |
#, php-format
|
683 |
msgid "%s: %s"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
687 |
#, php-format
|
688 |
msgid ""
|
689 |
"To activate your user, please click the following link:\n"
|
694 |
"\n"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
699 |
msgid "Your account is now active!"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
703 |
#, php-format
|
704 |
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>."
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
708 |
msgid "An error occurred during the activation"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
712 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
713 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
714 |
#, php-format
|
715 |
msgid "Password: %s"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
719 |
msgid "Invalid activation key."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
723 |
msgid "The site is already active."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
727 |
msgid "Could not create user"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
731 |
msgid "That username is already activated."
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
735 |
msgid "That username is currently reserved but may be available in a couple of days."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
739 |
msgid "username and email used"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
743 |
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."
|
744 |
msgstr ""
|
745 |
|
758 |
msgstr "Обновить поле"
|
759 |
|
760 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
761 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
762 |
#, fuzzy
|
763 |
msgid "Delete the picture"
|
764 |
msgstr "Удалить поле"
|
783 |
msgstr ""
|
784 |
|
785 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
786 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
787 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
788 |
msgid "Options"
|
789 |
msgstr "Настройки"
|
790 |
|
791 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
792 |
msgid "WordPress Fields table emptied"
|
793 |
msgstr "Таблица WordPress Fields очищена"
|
794 |
|
795 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
796 |
msgid "WordPress Fields table deleted"
|
797 |
msgstr "Таблица WordPress Fields удалена"
|
798 |
|
799 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
800 |
msgid "Extra Fields table emptied"
|
801 |
msgstr "Таблица Extra Fields очищена"
|
802 |
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
804 |
msgid "Extra Fields table deleted"
|
805 |
msgstr "Таблица Extra Fields удалена"
|
806 |
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
808 |
msgid "Users Data table emptied"
|
809 |
msgstr "Таблица пользовательских данных очищена"
|
810 |
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
812 |
msgid "Users Data table deleted"
|
813 |
msgstr "Таблица пользовательских данных удалена"
|
814 |
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
816 |
msgid "Options set to default values"
|
817 |
msgstr "Установлены настройки по-умолчанию"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
820 |
msgid "Options deleted"
|
821 |
msgstr "Настройки удалены"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
824 |
msgid "Options changed"
|
825 |
msgstr "Настройки изменены"
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
828 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
832 |
msgid "Support the Cimy Project"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
836 |
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!"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
841 |
msgid "Save Changes"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
845 |
msgid "General"
|
846 |
msgstr "Главное"
|
847 |
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
849 |
msgid "installed is"
|
850 |
msgstr "установлено"
|
851 |
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
853 |
msgid "OPTIONS DELETED!"
|
854 |
msgstr "НАСТРОЙКИ УДАЛЕНЫ!"
|
855 |
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
858 |
msgid "Fix the problem"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
862 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
863 |
msgstr "ВЕРСИИ НЕ СОВПАДАЮТ! Это из-за того, что Вы не деактивировали, а затем активировали плагин после обновления! Могут возникнуть проблемы..."
|
864 |
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
866 |
msgid "Picture/Avatar upload"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
870 |
msgid "is created and writable"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
874 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
878 |
#, fuzzy
|
879 |
msgid "Show all fields in the welcome email"
|
880 |
msgstr "Показывать поле при регистрации"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
883 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
887 |
msgid "Enable email confirmation"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
891 |
msgid "user that registers should confirm its email address via a link click"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
895 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
899 |
msgid "Enable form confirmation"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
903 |
msgid "a summary of the registration form will be presented to the user"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
907 |
msgid "Customize welcome email sent to the new user"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
911 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
915 |
msgid "Redirect to the source"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
919 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
923 |
msgid "No captcha"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
927 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
931 |
msgid "Public KEY"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
935 |
msgid "Private KEY"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
939 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
943 |
msgid "This captcha is probably weaker, but is easier for users"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
947 |
#, php-format
|
948 |
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>"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
952 |
msgid "Change login/registration page logo"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
956 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
960 |
msgid "Database"
|
961 |
msgstr "База данных"
|
962 |
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
967 |
msgid "select action"
|
968 |
msgstr "выберите действие"
|
969 |
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
971 |
msgid "Default values"
|
972 |
msgstr "Значения по-умолчанию"
|
973 |
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
978 |
msgid "Delete"
|
979 |
msgstr "Удалить"
|
980 |
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
985 |
msgid "NOT PRESENT"
|
986 |
msgstr "НЕ СУЩЕСТВУЕТ"
|
987 |
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
989 |
msgid "WordPress Fields table"
|
990 |
msgstr "Таблица WordPress Fields"
|
991 |
|
992 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
995 |
msgid "Empty"
|
996 |
msgstr "Очистить"
|
997 |
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
999 |
msgid "Extra Fields table"
|
1000 |
msgstr "Таблица Extra Fields"
|
1001 |
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
1003 |
msgid "Users Data table"
|
1004 |
msgstr "Таблица данных пользователей"
|
1005 |
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
1007 |
msgid "all data inserted by users in all and only extra fields"
|
1008 |
msgstr "все данные, вставленные пользователями во все и только в дополнительные поля"
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
1011 |
msgid "Force tables creation"
|
1012 |
msgstr "Force tables creation"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
1015 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1019 |
msgid "User Profile"
|
1020 |
msgstr "Профиль пользователя"
|
1021 |
|
1022 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1023 |
#, fuzzy
|
1024 |
msgid "Extra Fields section title"
|
1025 |
msgstr "Таблица Extra Fields"
|
1026 |
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1028 |
msgid "Fieldset's titles, separates with comma"
|
1029 |
msgstr "Названия полей через запятую"
|
1030 |
|
1031 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1032 |
msgid "example: title1,title2,title3"
|
1033 |
msgstr "пример: заголовок1,заголовок2, заголовок3"
|
1034 |
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1036 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1040 |
msgid "Authors & Users Extended"
|
1041 |
msgstr "Авторы и Продвинутые пользователи"
|
1042 |
|
1043 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1044 |
msgid "Hide username field"
|
1045 |
msgstr "Скрыть поле с именем пользователя"
|
1046 |
|
1047 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1048 |
msgid "Hide name field"
|
1049 |
msgstr "Скрыть поле с именем"
|
1050 |
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1052 |
msgid "Hide email field"
|
1053 |
msgstr "Скрыть поле с email"
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1056 |
#, fuzzy
|
1057 |
msgid "Hide role field"
|
1058 |
msgstr "Скрыть поле с именем"
|
1059 |
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:671
|
1061 |
msgid "Hide website field"
|
1062 |
msgstr "Скрыть поле с адресом сайта"
|
1063 |
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1065 |
msgid "Hide n. posts field"
|
1066 |
msgstr "Скрыть поле с № постов"
|
1067 |
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
1069 |
msgid "WordPress hidden fields"
|
1070 |
msgstr "Скрытые поля WordPress"
|
1071 |
|
1072 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
1073 |
+
#, fuzzy
|
1074 |
+
msgid "Show username"
|
1075 |
+
msgstr "Показать фамилию"
|
1076 |
+
|
1077 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
|
1078 |
+
msgid "when unchecked the email address will be used as username"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
1082 |
msgid "Show password"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
1086 |
msgid "Show confirmation password"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
1090 |
msgid "Show password strength meter"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
1094 |
msgid "Show first name"
|
1095 |
msgstr "Показать имя"
|
1096 |
|
1097 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
1098 |
msgid "Show last name"
|
1099 |
msgstr "Показать фамилию"
|
1100 |
|
1101 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
|
1102 |
msgid "Show nickname"
|
1103 |
msgstr "Показать ник"
|
1104 |
|
1105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
1106 |
msgid "Show website"
|
1107 |
msgstr "Показать адрес сайта"
|
1108 |
|
1109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
1110 |
msgid "Show AIM"
|
1111 |
msgstr "Показать AIM"
|
1112 |
|
1113 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:721
|
1114 |
msgid "Show Yahoo IM"
|
1115 |
msgstr "Показать Yahoo IM"
|
1116 |
|
1117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
1118 |
msgid "Show Jabber / Google Talk"
|
1119 |
msgstr "Показать Jabber / Google Talk"
|
1120 |
|
1121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:729
|
1122 |
msgid "Show Biographical Info"
|
1123 |
msgstr ""
|
1124 |
|
1140 |
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!"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
|
1144 |
msgid "Password"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:236
|
1148 |
msgid "Password confirmation"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:258
|
1152 |
#, fuzzy
|
1153 |
msgid "First name"
|
1154 |
msgstr "Показать имя"
|
1155 |
|
1156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
1157 |
#, fuzzy
|
1158 |
msgid "Last name"
|
1159 |
msgstr "Показать фамилию"
|
1160 |
|
1161 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
1162 |
#, fuzzy
|
1163 |
msgid "Nickname"
|
1164 |
msgstr "Имя"
|
1165 |
|
1166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:346
|
1167 |
msgid "AIM"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:368
|
1171 |
#, fuzzy
|
1172 |
msgid "Yahoo IM"
|
1173 |
msgstr "Показать Yahoo IM"
|
1174 |
|
1175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:390
|
1176 |
#, fuzzy
|
1177 |
msgid "Jabber / Google Talk"
|
1178 |
msgstr "Показать Jabber / Google Talk"
|
1179 |
|
1180 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:412
|
1181 |
msgid "Biographical Info"
|
1182 |
msgstr ""
|
1183 |
|
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 |
"Language: \n"
|
@@ -17,146 +17,147 @@ msgstr ""
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
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/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
35 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
36 |
msgid "ERROR"
|
37 |
msgstr "FEL"
|
38 |
|
39 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "epostadressen har ett felaktigt format"
|
46 |
|
47 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "måste anges."
|
50 |
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "är ej korrekt"
|
55 |
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "JA"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NEJ"
|
67 |
|
68 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
69 |
msgid "should be"
|
70 |
msgstr "skall vara"
|
71 |
|
72 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
73 |
msgid "should be an image."
|
74 |
msgstr "borde vara en bild."
|
75 |
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "får inte vara mindre än"
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "får inte vara kortare än"
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "får inte ha en storlek skiljd från"
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "får inte ha en annan längd än"
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "får inte vara större än"
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "får inte vara längre än"
|
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_register.php:
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
112 |
msgid "Username"
|
113 |
msgstr "Användarnamn"
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
msgid "E-mail"
|
119 |
msgstr "E-post"
|
120 |
|
121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
#, fuzzy
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
134 |
msgid "Strength indicator"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
138 |
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 ! \" ? $ % ^ & )."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
142 |
#, fuzzy
|
143 |
msgid "Change image"
|
144 |
msgstr "Ändra ordning"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
147 |
msgid "Insert the code:"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
@@ -181,17 +182,17 @@ msgid "Change order"
|
|
181 |
msgstr "Ändra ordning"
|
182 |
|
183 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
185 |
msgid "Min length"
|
186 |
msgstr "Min. längd"
|
187 |
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
msgid "Exact length"
|
191 |
msgstr "Exakt längd"
|
192 |
|
193 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
195 |
msgid "Max length"
|
196 |
msgstr "Max. längd"
|
197 |
|
@@ -213,431 +214,431 @@ msgid "You cannot give an order that misses some numbers"
|
|
213 |
msgstr "Du kan inte ange en ordningsföljd där vissa nummer saknas"
|
214 |
|
215 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
216 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
217 |
msgid "Nothing selected"
|
218 |
msgstr "Inget valt"
|
219 |
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Field(s)"
|
222 |
msgstr "Fält"
|
223 |
|
224 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
225 |
msgid "deleted correctly"
|
226 |
msgstr "korrekt raderade"
|
227 |
|
228 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
230 |
msgid "Min size"
|
231 |
msgstr "Min. storlek"
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
234 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
235 |
msgid "Exact size"
|
236 |
msgstr "Exakt storlek"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
240 |
msgid "Max size"
|
241 |
msgstr "Max. storlek"
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
244 |
msgid "Exact or Max size"
|
245 |
msgstr "Exakt eller Max. storlek"
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Name not specified"
|
249 |
msgstr "Namn ej angivet"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Name cannot contains spaces"
|
253 |
msgstr "Namnet får inte ha mellanrum"
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "Label not specified"
|
257 |
msgstr "Etikett ej angiven"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
msgid "not selected (with this type is necessary)"
|
261 |
msgstr "Ej vald (krävs vid denna typ)"
|
262 |
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
264 |
msgid "If you select"
|
265 |
msgstr "Om du väljer"
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
268 |
msgid "you cannot select Min or Max"
|
269 |
msgstr "Min eller Max kan ej väljas"
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
274 |
msgid "should be in the range of"
|
275 |
msgstr "skall vara mellan"
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
278 |
msgid "Equal TO not specified"
|
279 |
msgstr "Lika MED ej angivet"
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
282 |
msgid "With checkbox type Equal TO can only be"
|
283 |
msgstr "När typen är checkbox kan LIKA MED endast vara"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
286 |
msgid "With radio type Equal TO can only be"
|
287 |
msgstr "När typen är radio kan LIKA MED endast vara"
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
290 |
msgid "With checkbox type Value can only be"
|
291 |
msgstr "När typen är checkbox kan värde endast vara"
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
294 |
msgid "With radio type Value can only be"
|
295 |
msgstr "När typen är radio kan värde endast vara"
|
296 |
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
298 |
msgid "Field inserted correctly"
|
299 |
msgstr "Fält upplagt korrekt"
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
302 |
msgid "Field #"
|
303 |
msgstr "Fält #"
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
306 |
msgid "updated correctly"
|
307 |
msgstr "korrekt uppdaterat"
|
308 |
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Name inserted is just in the database, change to another one"
|
311 |
msgstr "Namnet du valt är redan i bruk, välj ett annat"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
315 |
msgid "Add a new Field"
|
316 |
msgstr "Lägg till ett fält"
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
319 |
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."
|
320 |
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."
|
321 |
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
323 |
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'"
|
324 |
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."
|
325 |
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
327 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
328 |
msgstr "<strong>drop-down</strong>: Du måste ange alla alternativ i etikett t.ex: Etikett/värde1,värde2,värde3"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
331 |
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"
|
332 |
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."
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
335 |
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)"
|
336 |
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)."
|
337 |
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
339 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
340 |
msgstr "Med <strong>registration-datum</strong>: <em>LIKA MED</em> betyder datum- och tidsformat."
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
343 |
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"
|
344 |
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."
|
345 |
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
347 |
#, fuzzy
|
348 |
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"
|
349 |
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."
|
350 |
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
msgid "Name"
|
358 |
msgstr "Namn"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
366 |
msgid "Value"
|
367 |
msgstr "Värde"
|
368 |
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
373 |
msgid "Type"
|
374 |
msgstr "Typ"
|
375 |
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
378 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
msgid "Label"
|
381 |
msgstr "Etikett"
|
382 |
|
383 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
387 |
msgid "Description"
|
388 |
msgstr "Beskrivning"
|
389 |
|
390 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
392 |
msgid "Rules"
|
393 |
msgstr "Regler"
|
394 |
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
msgid "Actions"
|
398 |
msgstr "Åtgärder"
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
msgid "Fieldset"
|
405 |
msgstr "Fältsektion"
|
406 |
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
409 |
msgid "Can be empty"
|
410 |
msgstr "Kan vara töm"
|
411 |
|
412 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
414 |
msgid "Check for E-mail syntax"
|
415 |
msgstr "Kontrollera epostadressen"
|
416 |
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
418 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
419 |
msgid "Can be modified"
|
420 |
msgstr "Kan ändras"
|
421 |
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
424 |
msgid "Can be modified only if empty"
|
425 |
msgstr "Kan ändras endast om fältet är tomt"
|
426 |
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
428 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
429 |
msgid "Can be modified only by admin"
|
430 |
msgstr "Kan endast ändras av en administratör"
|
431 |
|
432 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
433 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
434 |
msgid "Can be modified only by admin or if empty"
|
435 |
msgstr "Kan ändras endast av en administratör eller om fältet är tomt"
|
436 |
|
437 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
439 |
msgid "Cannot be modified"
|
440 |
msgstr "Kan inte ändras"
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
444 |
msgid "Should be equal TO"
|
445 |
msgstr "Skall vara LIKA MED"
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
449 |
msgid "Case sensitive"
|
450 |
msgstr "Skiftlägeskänslig"
|
451 |
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
454 |
msgid "Regular Expression"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
459 |
msgid "Show the field in the registration"
|
460 |
msgstr "Visa fält vid registrering"
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
464 |
msgid "Show the field in User's profile"
|
465 |
msgstr "Visa fält i Användarprofil"
|
466 |
|
467 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
469 |
#, fuzzy
|
470 |
msgid "Show the field in Users Extended section"
|
471 |
msgstr "Visa fält i menyn F&A Utökat"
|
472 |
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
474 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
475 |
#, fuzzy
|
476 |
msgid "Show the field in the search engine"
|
477 |
msgstr "Visa fält vid registrering"
|
478 |
|
479 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
480 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
481 |
#, fuzzy
|
482 |
msgid "Show the field in the blog"
|
483 |
msgstr "Visa fält vid registrering"
|
484 |
|
485 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
486 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
487 |
#, fuzzy
|
488 |
msgid "Show the field if the role is at least:"
|
489 |
msgstr "Visa fält vid registrering"
|
490 |
|
491 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
493 |
msgid "Anonymous"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
498 |
msgid "User has 'view_cimy_extra_fields' capability"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
503 |
msgid "Send an email to the admin if the user changes its value"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
508 |
#, fuzzy
|
509 |
msgid "Advanced options"
|
510 |
msgstr "Åtgärder"
|
511 |
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
513 |
msgid "Clear"
|
514 |
msgstr "Nollställ"
|
515 |
|
516 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
517 |
msgid "Invert selection"
|
518 |
msgstr "Omvänd markering"
|
519 |
|
520 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
521 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
522 |
msgstr "Är du säker på at du vill ta bort detta fält och all ev data som matats in?"
|
523 |
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
525 |
msgid "WordPress Fields"
|
526 |
msgstr "WordPress-fält"
|
527 |
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
531 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
532 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
534 |
msgid "Extra Fields"
|
535 |
msgstr "Extrafält"
|
536 |
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
538 |
msgid "None!"
|
539 |
msgstr "Ingen!"
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
542 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
543 |
msgid "Order"
|
544 |
msgstr "Ordningsföljd"
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
547 |
msgid "Reset"
|
548 |
msgstr "Nollställ"
|
549 |
|
550 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
552 |
msgid "SUCCESSFUL"
|
553 |
msgstr "FRAMGÅNGSRIKT"
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
557 |
#, fuzzy
|
558 |
msgid "select"
|
559 |
msgstr "Ta bort"
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
563 |
msgid "Users per page"
|
564 |
msgstr "Användare per sida"
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
567 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
568 |
msgid "Apply"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
572 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
573 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
574 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
575 |
msgid "Users Extended"
|
576 |
msgstr "Extra fält för användare"
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
579 |
#, php-format
|
580 |
msgid "Search results for “%s”"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
#, php-format
|
585 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
msgid "Search Users"
|
590 |
msgstr "Sök Användare"
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
msgid "Role"
|
595 |
msgstr "Roll"
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
600 |
msgid "Website"
|
601 |
msgstr "Webbsajt"
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
605 |
msgid "Posts"
|
606 |
msgstr "Postningar"
|
607 |
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
609 |
msgid "View posts by this author"
|
610 |
msgstr "Visa postningar av dessa skribent"
|
611 |
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
613 |
msgid "Super Admin"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
617 |
#, php-format
|
618 |
msgid "e-mail: %s"
|
619 |
msgstr "e-post: %s"
|
620 |
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
622 |
#, fuzzy
|
623 |
msgid "Change"
|
624 |
msgstr "Ändra ordning"
|
625 |
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
627 |
#, fuzzy
|
628 |
msgid "Update selected users"
|
629 |
msgstr "Ta bort valda fälter"
|
630 |
|
631 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
632 |
#, fuzzy
|
633 |
msgid "Update"
|
634 |
msgstr "Uppdatera fält"
|
635 |
|
636 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
637 |
msgid "OK"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
641 |
msgid "Cancel"
|
642 |
msgstr ""
|
643 |
|
@@ -647,9 +648,9 @@ msgid "New user registration on your site %s:"
|
|
647 |
msgstr ""
|
648 |
|
649 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
650 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
651 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
652 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
653 |
#, fuzzy, php-format
|
654 |
msgid "Username: %s"
|
655 |
msgstr "Användarnamn"
|
@@ -669,15 +670,15 @@ msgstr ""
|
|
669 |
msgid "[%s] Your username and password"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
673 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
674 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
675 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
676 |
#, php-format
|
677 |
msgid "%s: %s"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
681 |
#, php-format
|
682 |
msgid ""
|
683 |
"To activate your user, please click the following link:\n"
|
@@ -688,52 +689,52 @@ msgid ""
|
|
688 |
"\n"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
693 |
msgid "Your account is now active!"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
697 |
#, php-format
|
698 |
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>."
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
702 |
msgid "An error occurred during the activation"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
706 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
708 |
#, php-format
|
709 |
msgid "Password: %s"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
713 |
msgid "Invalid activation key."
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
717 |
msgid "The site is already active."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
721 |
msgid "Could not create user"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
725 |
msgid "That username is already activated."
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
729 |
msgid "That username is currently reserved but may be available in a couple of days."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
733 |
msgid "username and email used"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
737 |
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."
|
738 |
msgstr ""
|
739 |
|
@@ -752,7 +753,7 @@ msgid "Update the file"
|
|
752 |
msgstr "Uppdatra bild"
|
753 |
|
754 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
755 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
756 |
msgid "Delete the picture"
|
757 |
msgstr "Ta bort bild"
|
758 |
|
@@ -775,331 +776,340 @@ msgid "%s (%s) has changed one or more fields"
|
|
775 |
msgstr ""
|
776 |
|
777 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
779 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
780 |
msgid "Options"
|
781 |
msgstr "Inställningar"
|
782 |
|
783 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
784 |
msgid "WordPress Fields table emptied"
|
785 |
msgstr "Wordpress-tabell tömdes"
|
786 |
|
787 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
788 |
msgid "WordPress Fields table deleted"
|
789 |
msgstr "WordPress-tabell borttagen"
|
790 |
|
791 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
792 |
msgid "Extra Fields table emptied"
|
793 |
msgstr "Extrafältstabellsfält tömdes"
|
794 |
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
796 |
msgid "Extra Fields table deleted"
|
797 |
msgstr "Extra tabel fälter bottagen"
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
800 |
msgid "Users Data table emptied"
|
801 |
msgstr "Användardatatabellen tömdes"
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
804 |
msgid "Users Data table deleted"
|
805 |
msgstr "Användardatatabellen borttagen "
|
806 |
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
808 |
msgid "Options set to default values"
|
809 |
msgstr "Inställningar nollställda"
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
812 |
msgid "Options deleted"
|
813 |
msgstr "Inställninger borttagna"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
816 |
msgid "Options changed"
|
817 |
msgstr "Inställningar ändrade"
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
820 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
824 |
msgid "Support the Cimy Project"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
828 |
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!"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
833 |
msgid "Save Changes"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
837 |
msgid "General"
|
838 |
msgstr "Allmän"
|
839 |
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
841 |
msgid "installed is"
|
842 |
msgstr "är installerad"
|
843 |
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
845 |
msgid "OPTIONS DELETED!"
|
846 |
msgstr "INSTÄLLNINGAR BORTTAGNA"
|
847 |
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
850 |
msgid "Fix the problem"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
854 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
855 |
msgstr "VERSIONSKONFLIKT! deaktivera och aktivera pluginen efter uppdatering!"
|
856 |
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
858 |
msgid "Picture/Avatar upload"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
862 |
msgid "is created and writable"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
866 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
870 |
#, fuzzy
|
871 |
msgid "Show all fields in the welcome email"
|
872 |
msgstr "Visa fält vid registrering"
|
873 |
|
874 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
875 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
879 |
msgid "Enable email confirmation"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
883 |
msgid "user that registers should confirm its email address via a link click"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
887 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
891 |
msgid "Enable form confirmation"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
895 |
msgid "a summary of the registration form will be presented to the user"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
899 |
msgid "Customize welcome email sent to the new user"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
903 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
907 |
msgid "Redirect to the source"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
911 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
915 |
msgid "No captcha"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
919 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
923 |
msgid "Public KEY"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
927 |
msgid "Private KEY"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
931 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
935 |
msgid "This captcha is probably weaker, but is easier for users"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
939 |
#, php-format
|
940 |
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>"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
944 |
msgid "Change login/registration page logo"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
948 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
952 |
msgid "Database"
|
953 |
msgstr "Databas"
|
954 |
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
956 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
959 |
msgid "select action"
|
960 |
msgstr "Välj åtgärd"
|
961 |
|
962 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
963 |
msgid "Default values"
|
964 |
msgstr "Standardvärden"
|
965 |
|
966 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
967 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
969 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
970 |
msgid "Delete"
|
971 |
msgstr "Ta bort"
|
972 |
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
977 |
msgid "NOT PRESENT"
|
978 |
msgstr "EXISTERAR EJ"
|
979 |
|
980 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
981 |
msgid "WordPress Fields table"
|
982 |
msgstr "WordPress Fälttabell"
|
983 |
|
984 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
985 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
987 |
msgid "Empty"
|
988 |
msgstr "Töm"
|
989 |
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
991 |
msgid "Extra Fields table"
|
992 |
msgstr "Extra Fälttabell"
|
993 |
|
994 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
995 |
msgid "Users Data table"
|
996 |
msgstr "Användardatatabell"
|
997 |
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
999 |
msgid "all data inserted by users in all and only extra fields"
|
1000 |
msgstr "all data skapad av användare "
|
1001 |
|
1002 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1003 |
msgid "Force tables creation"
|
1004 |
msgstr "Forcera skapande av tabeller"
|
1005 |
|
1006 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1007 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1011 |
msgid "User Profile"
|
1012 |
msgstr "Användarprofil"
|
1013 |
|
1014 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1015 |
msgid "Extra Fields section title"
|
1016 |
msgstr "Titel för fältsektion"
|
1017 |
|
1018 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1019 |
msgid "Fieldset's titles, separates with comma"
|
1020 |
msgstr "Fältsektionstitlar, separerade med kommatecken"
|
1021 |
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1023 |
msgid "example: title1,title2,title3"
|
1024 |
msgstr "tex.: Titel1,Titel2,Titel3"
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1027 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1031 |
msgid "Authors & Users Extended"
|
1032 |
msgstr "Utökad författar- och användarhantering"
|
1033 |
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1035 |
msgid "Hide username field"
|
1036 |
msgstr "Göm fältet användarnamn"
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1039 |
msgid "Hide name field"
|
1040 |
msgstr "Göm fältet namn"
|
1041 |
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1043 |
msgid "Hide email field"
|
1044 |
msgstr "Göm fältet e-post"
|
1045 |
|
1046 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1047 |
msgid "Hide role field"
|
1048 |
msgstr "Göm fältet roll"
|
1049 |
|
1050 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1051 |
msgid "Hide website field"
|
1052 |
msgstr "Göm fältet webbsajt"
|
1053 |
|
1054 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1055 |
msgid "Hide n. posts field"
|
1056 |
msgstr "Göm n. postfält"
|
1057 |
|
1058 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1059 |
msgid "WordPress hidden fields"
|
1060 |
msgstr "Wordpress gömda fält"
|
1061 |
|
1062 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1063 |
msgid "Show password"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1067 |
msgid "Show confirmation password"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1071 |
msgid "Show password strength meter"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1075 |
msgid "Show first name"
|
1076 |
msgstr "Visa förnamn"
|
1077 |
|
1078 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1079 |
msgid "Show last name"
|
1080 |
msgstr "Visa efternamn"
|
1081 |
|
1082 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1083 |
msgid "Show nickname"
|
1084 |
msgstr "Visa smeknamn"
|
1085 |
|
1086 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1087 |
msgid "Show website"
|
1088 |
msgstr "Visa webbsajt"
|
1089 |
|
1090 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1091 |
msgid "Show AIM"
|
1092 |
msgstr "Visa AIM"
|
1093 |
|
1094 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1095 |
msgid "Show Yahoo IM"
|
1096 |
msgstr "Visa Yahoo IM"
|
1097 |
|
1098 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1099 |
msgid "Show Jabber / Google Talk"
|
1100 |
msgstr "Visa Jabber / Google Talk"
|
1101 |
|
1102 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1103 |
msgid "Show Biographical Info"
|
1104 |
msgstr ""
|
1105 |
|
@@ -1121,39 +1131,39 @@ msgstr ""
|
|
1121 |
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!"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1125 |
msgid "Password"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1129 |
msgid "Password confirmation"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1133 |
msgid "First name"
|
1134 |
msgstr "Förnamn"
|
1135 |
|
1136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1137 |
msgid "Last name"
|
1138 |
msgstr "Efternamn"
|
1139 |
|
1140 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1141 |
msgid "Nickname"
|
1142 |
msgstr "Smeknamn"
|
1143 |
|
1144 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1145 |
msgid "AIM"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1149 |
msgid "Yahoo IM"
|
1150 |
msgstr "Yahoo IM"
|
1151 |
|
1152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1153 |
msgid "Jabber / Google Talk"
|
1154 |
msgstr "Jabber / Google Talk"
|
1155 |
|
1156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1157 |
msgid "Biographical Info"
|
1158 |
msgstr ""
|
1159 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:56-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:57-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
|
|
|
|
|
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
36 |
msgid "ERROR"
|
37 |
msgstr "FEL"
|
38 |
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
40 |
msgid "does not match."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "epostadressen har ett felaktigt format"
|
46 |
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "måste anges."
|
50 |
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
52 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "är ej korrekt"
|
55 |
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
59 |
msgid "YES"
|
60 |
msgstr "JA"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
65 |
msgid "NO"
|
66 |
msgstr "NEJ"
|
67 |
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
69 |
msgid "should be"
|
70 |
msgstr "skall vara"
|
71 |
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
73 |
msgid "should be an image."
|
74 |
msgstr "borde vara en bild."
|
75 |
|
76 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "får inte vara mindre än"
|
83 |
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "får inte vara kortare än"
|
87 |
|
88 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "får inte ha en storlek skiljd från"
|
91 |
|
92 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "får inte ha en annan längd än"
|
95 |
|
96 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "får inte vara större än"
|
99 |
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "får inte vara längre än"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Användarnamn"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-post"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1007
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Ändra ordning"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1313
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
182 |
msgstr "Ändra ordning"
|
183 |
|
184 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
|
186 |
msgid "Min length"
|
187 |
msgstr "Min. längd"
|
188 |
|
189 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
191 |
msgid "Exact length"
|
192 |
msgstr "Exakt längd"
|
193 |
|
194 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
196 |
msgid "Max length"
|
197 |
msgstr "Max. längd"
|
198 |
|
214 |
msgstr "Du kan inte ange en ordningsföljd där vissa nummer saknas"
|
215 |
|
216 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
218 |
msgid "Nothing selected"
|
219 |
msgstr "Inget valt"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
222 |
msgid "Field(s)"
|
223 |
msgstr "Fält"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
226 |
msgid "deleted correctly"
|
227 |
msgstr "korrekt raderade"
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
231 |
msgid "Min size"
|
232 |
msgstr "Min. storlek"
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
236 |
msgid "Exact size"
|
237 |
msgstr "Exakt storlek"
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
241 |
msgid "Max size"
|
242 |
msgstr "Max. storlek"
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
245 |
msgid "Exact or Max size"
|
246 |
msgstr "Exakt eller Max. storlek"
|
247 |
|
248 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
249 |
msgid "Name not specified"
|
250 |
msgstr "Namn ej angivet"
|
251 |
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
253 |
msgid "Name cannot contains spaces"
|
254 |
msgstr "Namnet får inte ha mellanrum"
|
255 |
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
257 |
msgid "Label not specified"
|
258 |
msgstr "Etikett ej angiven"
|
259 |
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
261 |
msgid "not selected (with this type is necessary)"
|
262 |
msgstr "Ej vald (krävs vid denna typ)"
|
263 |
|
264 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
265 |
msgid "If you select"
|
266 |
msgstr "Om du väljer"
|
267 |
|
268 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
269 |
msgid "you cannot select Min or Max"
|
270 |
msgstr "Min eller Max kan ej väljas"
|
271 |
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
275 |
msgid "should be in the range of"
|
276 |
msgstr "skall vara mellan"
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
279 |
msgid "Equal TO not specified"
|
280 |
msgstr "Lika MED ej angivet"
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
283 |
msgid "With checkbox type Equal TO can only be"
|
284 |
msgstr "När typen är checkbox kan LIKA MED endast vara"
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
287 |
msgid "With radio type Equal TO can only be"
|
288 |
msgstr "När typen är radio kan LIKA MED endast vara"
|
289 |
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
291 |
msgid "With checkbox type Value can only be"
|
292 |
msgstr "När typen är checkbox kan värde endast vara"
|
293 |
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
295 |
msgid "With radio type Value can only be"
|
296 |
msgstr "När typen är radio kan värde endast vara"
|
297 |
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
299 |
msgid "Field inserted correctly"
|
300 |
msgstr "Fält upplagt korrekt"
|
301 |
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
303 |
msgid "Field #"
|
304 |
msgstr "Fält #"
|
305 |
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
307 |
msgid "updated correctly"
|
308 |
msgstr "korrekt uppdaterat"
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
311 |
msgid "Name inserted is just in the database, change to another one"
|
312 |
msgstr "Namnet du valt är redan i bruk, välj ett annat"
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
316 |
msgid "Add a new Field"
|
317 |
msgstr "Lägg till ett fält"
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
320 |
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."
|
321 |
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."
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
324 |
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'"
|
325 |
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."
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
328 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
329 |
msgstr "<strong>drop-down</strong>: Du måste ange alla alternativ i etikett t.ex: Etikett/värde1,värde2,värde3"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
332 |
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"
|
333 |
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."
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
336 |
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)"
|
337 |
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)."
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
340 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
341 |
msgstr "Med <strong>registration-datum</strong>: <em>LIKA MED</em> betyder datum- och tidsformat."
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
344 |
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"
|
345 |
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."
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
348 |
#, fuzzy
|
349 |
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"
|
350 |
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."
|
351 |
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
358 |
msgid "Name"
|
359 |
msgstr "Namn"
|
360 |
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
367 |
msgid "Value"
|
368 |
msgstr "Värde"
|
369 |
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
374 |
msgid "Type"
|
375 |
msgstr "Typ"
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
381 |
msgid "Label"
|
382 |
msgstr "Etikett"
|
383 |
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
388 |
msgid "Description"
|
389 |
msgstr "Beskrivning"
|
390 |
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
393 |
msgid "Rules"
|
394 |
msgstr "Regler"
|
395 |
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
398 |
msgid "Actions"
|
399 |
msgstr "Åtgärder"
|
400 |
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
405 |
msgid "Fieldset"
|
406 |
msgstr "Fältsektion"
|
407 |
|
408 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
410 |
msgid "Can be empty"
|
411 |
msgstr "Kan vara töm"
|
412 |
|
413 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
415 |
msgid "Check for E-mail syntax"
|
416 |
msgstr "Kontrollera epostadressen"
|
417 |
|
418 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
420 |
msgid "Can be modified"
|
421 |
msgstr "Kan ändras"
|
422 |
|
423 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
425 |
msgid "Can be modified only if empty"
|
426 |
msgstr "Kan ändras endast om fältet är tomt"
|
427 |
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
430 |
msgid "Can be modified only by admin"
|
431 |
msgstr "Kan endast ändras av en administratör"
|
432 |
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
435 |
msgid "Can be modified only by admin or if empty"
|
436 |
msgstr "Kan ändras endast av en administratör eller om fältet är tomt"
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
440 |
msgid "Cannot be modified"
|
441 |
msgstr "Kan inte ändras"
|
442 |
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
444 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
445 |
msgid "Should be equal TO"
|
446 |
msgstr "Skall vara LIKA MED"
|
447 |
|
448 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
449 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
450 |
msgid "Case sensitive"
|
451 |
msgstr "Skiftlägeskänslig"
|
452 |
|
453 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
455 |
msgid "Regular Expression"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
460 |
msgid "Show the field in the registration"
|
461 |
msgstr "Visa fält vid registrering"
|
462 |
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
465 |
msgid "Show the field in User's profile"
|
466 |
msgstr "Visa fält i Användarprofil"
|
467 |
|
468 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
470 |
#, fuzzy
|
471 |
msgid "Show the field in Users Extended section"
|
472 |
msgstr "Visa fält i menyn F&A Utökat"
|
473 |
|
474 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
476 |
#, fuzzy
|
477 |
msgid "Show the field in the search engine"
|
478 |
msgstr "Visa fält vid registrering"
|
479 |
|
480 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
481 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
482 |
#, fuzzy
|
483 |
msgid "Show the field in the blog"
|
484 |
msgstr "Visa fält vid registrering"
|
485 |
|
486 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
488 |
#, fuzzy
|
489 |
msgid "Show the field if the role is at least:"
|
490 |
msgstr "Visa fält vid registrering"
|
491 |
|
492 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
494 |
msgid "Anonymous"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
499 |
msgid "User has 'view_cimy_extra_fields' capability"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
504 |
msgid "Send an email to the admin if the user changes its value"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
509 |
#, fuzzy
|
510 |
msgid "Advanced options"
|
511 |
msgstr "Åtgärder"
|
512 |
|
513 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
514 |
msgid "Clear"
|
515 |
msgstr "Nollställ"
|
516 |
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
518 |
msgid "Invert selection"
|
519 |
msgstr "Omvänd markering"
|
520 |
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
522 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
523 |
msgstr "Är du säker på at du vill ta bort detta fält och all ev data som matats in?"
|
524 |
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
526 |
msgid "WordPress Fields"
|
527 |
msgstr "WordPress-fält"
|
528 |
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
533 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
535 |
msgid "Extra Fields"
|
536 |
msgstr "Extrafält"
|
537 |
|
538 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
539 |
msgid "None!"
|
540 |
msgstr "Ingen!"
|
541 |
|
542 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
543 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
544 |
msgid "Order"
|
545 |
msgstr "Ordningsföljd"
|
546 |
|
547 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
548 |
msgid "Reset"
|
549 |
msgstr "Nollställ"
|
550 |
|
551 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
553 |
msgid "SUCCESSFUL"
|
554 |
msgstr "FRAMGÅNGSRIKT"
|
555 |
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
558 |
#, fuzzy
|
559 |
msgid "select"
|
560 |
msgstr "Ta bort"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
564 |
msgid "Users per page"
|
565 |
msgstr "Användare per sida"
|
566 |
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
569 |
msgid "Apply"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
573 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
574 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
576 |
msgid "Users Extended"
|
577 |
msgstr "Extra fält för användare"
|
578 |
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
580 |
#, php-format
|
581 |
msgid "Search results for “%s”"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
585 |
#, php-format
|
586 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
590 |
msgid "Search Users"
|
591 |
msgstr "Sök Användare"
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
595 |
msgid "Role"
|
596 |
msgstr "Roll"
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
601 |
msgid "Website"
|
602 |
msgstr "Webbsajt"
|
603 |
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
606 |
msgid "Posts"
|
607 |
msgstr "Postningar"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
610 |
msgid "View posts by this author"
|
611 |
msgstr "Visa postningar av dessa skribent"
|
612 |
|
613 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
614 |
msgid "Super Admin"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
618 |
#, php-format
|
619 |
msgid "e-mail: %s"
|
620 |
msgstr "e-post: %s"
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
623 |
#, fuzzy
|
624 |
msgid "Change"
|
625 |
msgstr "Ändra ordning"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
628 |
#, fuzzy
|
629 |
msgid "Update selected users"
|
630 |
msgstr "Ta bort valda fälter"
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
633 |
#, fuzzy
|
634 |
msgid "Update"
|
635 |
msgstr "Uppdatera fält"
|
636 |
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
638 |
msgid "OK"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
642 |
msgid "Cancel"
|
643 |
msgstr ""
|
644 |
|
648 |
msgstr ""
|
649 |
|
650 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
652 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
653 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
654 |
#, fuzzy, php-format
|
655 |
msgid "Username: %s"
|
656 |
msgstr "Användarnamn"
|
670 |
msgid "[%s] Your username and password"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
674 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
675 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
676 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
677 |
#, php-format
|
678 |
msgid "%s: %s"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
682 |
#, php-format
|
683 |
msgid ""
|
684 |
"To activate your user, please click the following link:\n"
|
689 |
"\n"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
694 |
msgid "Your account is now active!"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
698 |
#, php-format
|
699 |
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>."
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
703 |
msgid "An error occurred during the activation"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
707 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
708 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
709 |
#, php-format
|
710 |
msgid "Password: %s"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
714 |
msgid "Invalid activation key."
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
718 |
msgid "The site is already active."
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
722 |
msgid "Could not create user"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
726 |
msgid "That username is already activated."
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
730 |
msgid "That username is currently reserved but may be available in a couple of days."
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
734 |
msgid "username and email used"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
738 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
739 |
msgstr ""
|
740 |
|
753 |
msgstr "Uppdatra bild"
|
754 |
|
755 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
756 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
757 |
msgid "Delete the picture"
|
758 |
msgstr "Ta bort bild"
|
759 |
|
776 |
msgstr ""
|
777 |
|
778 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
781 |
msgid "Options"
|
782 |
msgstr "Inställningar"
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
785 |
msgid "WordPress Fields table emptied"
|
786 |
msgstr "Wordpress-tabell tömdes"
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
789 |
msgid "WordPress Fields table deleted"
|
790 |
msgstr "WordPress-tabell borttagen"
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
793 |
msgid "Extra Fields table emptied"
|
794 |
msgstr "Extrafältstabellsfält tömdes"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
797 |
msgid "Extra Fields table deleted"
|
798 |
msgstr "Extra tabel fälter bottagen"
|
799 |
|
800 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
801 |
msgid "Users Data table emptied"
|
802 |
msgstr "Användardatatabellen tömdes"
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
805 |
msgid "Users Data table deleted"
|
806 |
msgstr "Användardatatabellen borttagen "
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
809 |
msgid "Options set to default values"
|
810 |
msgstr "Inställningar nollställda"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
813 |
msgid "Options deleted"
|
814 |
msgstr "Inställninger borttagna"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
817 |
msgid "Options changed"
|
818 |
msgstr "Inställningar ändrade"
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
821 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
825 |
msgid "Support the Cimy Project"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
829 |
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!"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
833 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
834 |
msgid "Save Changes"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
838 |
msgid "General"
|
839 |
msgstr "Allmän"
|
840 |
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
842 |
msgid "installed is"
|
843 |
msgstr "är installerad"
|
844 |
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
846 |
msgid "OPTIONS DELETED!"
|
847 |
msgstr "INSTÄLLNINGAR BORTTAGNA"
|
848 |
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
851 |
msgid "Fix the problem"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
855 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
856 |
msgstr "VERSIONSKONFLIKT! deaktivera och aktivera pluginen efter uppdatering!"
|
857 |
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
859 |
msgid "Picture/Avatar upload"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
863 |
msgid "is created and writable"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
867 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
871 |
#, fuzzy
|
872 |
msgid "Show all fields in the welcome email"
|
873 |
msgstr "Visa fält vid registrering"
|
874 |
|
875 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
876 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
880 |
msgid "Enable email confirmation"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
884 |
msgid "user that registers should confirm its email address via a link click"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
888 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
892 |
msgid "Enable form confirmation"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
896 |
msgid "a summary of the registration form will be presented to the user"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
900 |
msgid "Customize welcome email sent to the new user"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
904 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
908 |
msgid "Redirect to the source"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
912 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
916 |
msgid "No captcha"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
920 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
924 |
msgid "Public KEY"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
928 |
msgid "Private KEY"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
932 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
936 |
msgid "This captcha is probably weaker, but is easier for users"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
940 |
#, php-format
|
941 |
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>"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
945 |
msgid "Change login/registration page logo"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
949 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
953 |
msgid "Database"
|
954 |
msgstr "Databas"
|
955 |
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
960 |
msgid "select action"
|
961 |
msgstr "Välj åtgärd"
|
962 |
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
964 |
msgid "Default values"
|
965 |
msgstr "Standardvärden"
|
966 |
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
971 |
msgid "Delete"
|
972 |
msgstr "Ta bort"
|
973 |
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
978 |
msgid "NOT PRESENT"
|
979 |
msgstr "EXISTERAR EJ"
|
980 |
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
982 |
msgid "WordPress Fields table"
|
983 |
msgstr "WordPress Fälttabell"
|
984 |
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
986 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
987 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
988 |
msgid "Empty"
|
989 |
msgstr "Töm"
|
990 |
|
991 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
992 |
msgid "Extra Fields table"
|
993 |
msgstr "Extra Fälttabell"
|
994 |
|
995 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
996 |
msgid "Users Data table"
|
997 |
msgstr "Användardatatabell"
|
998 |
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
1000 |
msgid "all data inserted by users in all and only extra fields"
|
1001 |
msgstr "all data skapad av användare "
|
1002 |
|
1003 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
1004 |
msgid "Force tables creation"
|
1005 |
msgstr "Forcera skapande av tabeller"
|
1006 |
|
1007 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
1008 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1012 |
msgid "User Profile"
|
1013 |
msgstr "Användarprofil"
|
1014 |
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1016 |
msgid "Extra Fields section title"
|
1017 |
msgstr "Titel för fältsektion"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1020 |
msgid "Fieldset's titles, separates with comma"
|
1021 |
msgstr "Fältsektionstitlar, separerade med kommatecken"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1024 |
msgid "example: title1,title2,title3"
|
1025 |
msgstr "tex.: Titel1,Titel2,Titel3"
|
1026 |
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1028 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1032 |
msgid "Authors & Users Extended"
|
1033 |
msgstr "Utökad författar- och användarhantering"
|
1034 |
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1036 |
msgid "Hide username field"
|
1037 |
msgstr "Göm fältet användarnamn"
|
1038 |
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1040 |
msgid "Hide name field"
|
1041 |
msgstr "Göm fältet namn"
|
1042 |
|
1043 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1044 |
msgid "Hide email field"
|
1045 |
msgstr "Göm fältet e-post"
|
1046 |
|
1047 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1048 |
msgid "Hide role field"
|
1049 |
msgstr "Göm fältet roll"
|
1050 |
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:671
|
1052 |
msgid "Hide website field"
|
1053 |
msgstr "Göm fältet webbsajt"
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1056 |
msgid "Hide n. posts field"
|
1057 |
msgstr "Göm n. postfält"
|
1058 |
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
1060 |
msgid "WordPress hidden fields"
|
1061 |
msgstr "Wordpress gömda fält"
|
1062 |
|
1063 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
1064 |
+
#, fuzzy
|
1065 |
+
msgid "Show username"
|
1066 |
+
msgstr "Visa efternamn"
|
1067 |
+
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
|
1069 |
+
msgid "when unchecked the email address will be used as username"
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
1073 |
msgid "Show password"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
1077 |
msgid "Show confirmation password"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
1081 |
msgid "Show password strength meter"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
1085 |
msgid "Show first name"
|
1086 |
msgstr "Visa förnamn"
|
1087 |
|
1088 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
1089 |
msgid "Show last name"
|
1090 |
msgstr "Visa efternamn"
|
1091 |
|
1092 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
|
1093 |
msgid "Show nickname"
|
1094 |
msgstr "Visa smeknamn"
|
1095 |
|
1096 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
1097 |
msgid "Show website"
|
1098 |
msgstr "Visa webbsajt"
|
1099 |
|
1100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
1101 |
msgid "Show AIM"
|
1102 |
msgstr "Visa AIM"
|
1103 |
|
1104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:721
|
1105 |
msgid "Show Yahoo IM"
|
1106 |
msgstr "Visa Yahoo IM"
|
1107 |
|
1108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
1109 |
msgid "Show Jabber / Google Talk"
|
1110 |
msgstr "Visa Jabber / Google Talk"
|
1111 |
|
1112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:729
|
1113 |
msgid "Show Biographical Info"
|
1114 |
msgstr ""
|
1115 |
|
1131 |
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!"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
|
1135 |
msgid "Password"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:236
|
1139 |
msgid "Password confirmation"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:258
|
1143 |
msgid "First name"
|
1144 |
msgstr "Förnamn"
|
1145 |
|
1146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
1147 |
msgid "Last name"
|
1148 |
msgstr "Efternamn"
|
1149 |
|
1150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
1151 |
msgid "Nickname"
|
1152 |
msgstr "Smeknamn"
|
1153 |
|
1154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:346
|
1155 |
msgid "AIM"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:368
|
1159 |
msgid "Yahoo IM"
|
1160 |
msgstr "Yahoo IM"
|
1161 |
|
1162 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:390
|
1163 |
msgid "Jabber / Google Talk"
|
1164 |
msgstr "Jabber / Google Talk"
|
1165 |
|
1166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:412
|
1167 |
msgid "Biographical Info"
|
1168 |
msgstr ""
|
1169 |
|
langs/cimy_uef-uk.mo
CHANGED
Binary file
|
langs/cimy_uef-uk.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: Oleg Bondarenko <o.o.bondarenko@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -17,144 +17,145 @@ msgstr ""
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
23 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
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/cimy_uef_register.php:
|
34 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
35 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
36 |
msgid "ERROR"
|
37 |
msgstr "ПОМИЛКА"
|
38 |
|
39 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
40 |
msgid "does not match."
|
41 |
msgstr "не збігається."
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "неправильний синтаксис електронної пошти."
|
46 |
|
47 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "не може бути порожнім."
|
50 |
|
51 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "не правильно"
|
55 |
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "ТАК"
|
61 |
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "НІ"
|
67 |
|
68 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
69 |
msgid "should be"
|
70 |
msgstr "повинно бути"
|
71 |
|
72 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
73 |
msgid "should be an image."
|
74 |
msgstr "повинно бути зображення."
|
75 |
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "не може бути розміром менше ніж"
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "не може мати довжину менше ніж"
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "не може відрізнятися розміром від"
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "не може відрізнятися довжиною від"
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "не може бути розміром більше ніж"
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "не може мати довжину більш ніж"
|
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_register.php:
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr "Введений код не правильний."
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
112 |
msgid "Username"
|
113 |
msgstr "Ім'я користувача"
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
msgid "E-mail"
|
119 |
msgstr "Ел. пошта"
|
120 |
|
121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
msgid "Please upload a file with one of the following extensions"
|
124 |
msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
|
125 |
|
126 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
127 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
129 |
msgid "Please upload an image with one of the following extensions"
|
130 |
msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
|
131 |
|
132 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
133 |
msgid "Strength indicator"
|
134 |
msgstr "Індикатор сили"
|
135 |
|
136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
137 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
138 |
msgstr "Підказка: пароль повинен бути не менше семи символів. Щоб зробити його сильнішим, використовуйте верхній та нижній регістр, цифри і символи, наприклад ! \" ? $ % ^ & )."
|
139 |
|
140 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
141 |
msgid "Change image"
|
142 |
msgstr "Змінити картинку"
|
143 |
|
144 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
145 |
msgid "Insert the code:"
|
146 |
msgstr "Вставте код:"
|
147 |
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
150 |
msgid "Confirm your registration"
|
151 |
msgstr "Підтвердіть реєстрацію"
|
152 |
|
153 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
154 |
msgid "A password will be e-mailed to you."
|
155 |
msgstr "Пароль буде направлений до вас ел. поштою."
|
156 |
|
157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
158 |
msgid "← Back"
|
159 |
msgstr "← Назад"
|
160 |
|
@@ -179,17 +180,17 @@ msgid "Change order"
|
|
179 |
msgstr "Зміна порядку"
|
180 |
|
181 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
182 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
183 |
msgid "Min length"
|
184 |
msgstr "Мін. довжина"
|
185 |
|
186 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
188 |
msgid "Exact length"
|
189 |
msgstr "Точна довжина"
|
190 |
|
191 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
193 |
msgid "Max length"
|
194 |
msgstr "Макс. довжина"
|
195 |
|
@@ -211,421 +212,421 @@ msgid "You cannot give an order that misses some numbers"
|
|
211 |
msgstr "Ви не можете віддати порядок, у якому пропущені деякі числа"
|
212 |
|
213 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
214 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
215 |
msgid "Nothing selected"
|
216 |
msgstr "Нічого не вибрано"
|
217 |
|
218 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
219 |
msgid "Field(s)"
|
220 |
msgstr "Поле(-я)"
|
221 |
|
222 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
223 |
msgid "deleted correctly"
|
224 |
msgstr "видалено правильно"
|
225 |
|
226 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
228 |
msgid "Min size"
|
229 |
msgstr "Мін. розмір"
|
230 |
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
232 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
233 |
msgid "Exact size"
|
234 |
msgstr "Точний розмір"
|
235 |
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
237 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
238 |
msgid "Max size"
|
239 |
msgstr "Макс. розмір"
|
240 |
|
241 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
242 |
msgid "Exact or Max size"
|
243 |
msgstr "Точний або макс. розмір"
|
244 |
|
245 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
246 |
msgid "Name not specified"
|
247 |
msgstr "Ім'я не задано"
|
248 |
|
249 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
250 |
msgid "Name cannot contains spaces"
|
251 |
msgstr "Ім'я не може містити пробіли"
|
252 |
|
253 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
254 |
msgid "Label not specified"
|
255 |
msgstr "Надпис не задано"
|
256 |
|
257 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
258 |
msgid "not selected (with this type is necessary)"
|
259 |
msgstr "не вибрано (з цим типом необхідно)"
|
260 |
|
261 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
262 |
msgid "If you select"
|
263 |
msgstr "Якщо ви виберете"
|
264 |
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
266 |
msgid "you cannot select Min or Max"
|
267 |
msgstr "Ви не можете вибрати Мін. або Макс."
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
msgid "should be in the range of"
|
273 |
msgstr "повинно бути в діапазоні"
|
274 |
|
275 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
276 |
msgid "Equal TO not specified"
|
277 |
msgstr "Не обрано Дорівнює"
|
278 |
|
279 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
280 |
msgid "With checkbox type Equal TO can only be"
|
281 |
msgstr "Може бути тільки з прапорцем вибору типу Дорівнює"
|
282 |
|
283 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
284 |
msgid "With radio type Equal TO can only be"
|
285 |
msgstr "Може бути тільки з перемикачем вибору (радіо) типу Дорівнює "
|
286 |
|
287 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
288 |
msgid "With checkbox type Value can only be"
|
289 |
msgstr "Може бути тільки з прапорцем вибору типу Значення "
|
290 |
|
291 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
292 |
msgid "With radio type Value can only be"
|
293 |
msgstr "Може бути тільки з перемикачем вибору (радіо) типу Значення"
|
294 |
|
295 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
296 |
msgid "Field inserted correctly"
|
297 |
msgstr "Поле вставлене коректно"
|
298 |
|
299 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
300 |
msgid "Field #"
|
301 |
msgstr "Поле №"
|
302 |
|
303 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
304 |
msgid "updated correctly"
|
305 |
msgstr "оновлено коректно"
|
306 |
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
308 |
msgid "Name inserted is just in the database, change to another one"
|
309 |
msgstr "Вставлене ім'я вже є у базі даних, змінити на інше"
|
310 |
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
313 |
msgid "Add a new Field"
|
314 |
msgstr "Додати нове поле"
|
315 |
|
316 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
317 |
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."
|
318 |
msgstr "Щоб додати нове поле ви повинні вибрати назву, тип та надпис; додатково можна значення і опис. Правила застосовуються при реєстрації користувача."
|
319 |
|
320 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
321 |
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'"
|
322 |
msgstr "З <strong> радіо</strong> та <strong>прапорцем</strong>: <em>Значення</em> і <em>Дорівнює</em> може бути тільки 'Так' або 'Ні', що означає 'обрано' або 'не обрано'"
|
323 |
|
324 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
325 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
326 |
msgstr "З <strong>випадаючим списком (drop-down)</strong>: ви повинні додати всі варіанти надписів, наприклад: надпис/елемент1, елемент2, елемент3"
|
327 |
|
328 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
329 |
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"
|
330 |
msgstr "З <strong>картинкою</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' у КБ; <em>Дорівнює</em> означає макс. розмір у пікселях (ширина або висота) для ескізів"
|
331 |
|
332 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
333 |
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)"
|
334 |
msgstr "З <strong>URL-картинки</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; <em>Дорівнює</em> означає макс. ширину у пікселах (висота буде пропорційною)"
|
335 |
|
336 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
337 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
338 |
msgstr "З <strong>датою реєстрації</strong>: <em>Дорівнює</em> означає формат дати і часу"
|
339 |
|
340 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
341 |
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"
|
342 |
msgstr "З <strong>аватар</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' в КБ; <em>Дорівнює</em> автоматично встановлює на 512 пікселів"
|
343 |
|
344 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
345 |
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"
|
346 |
msgstr "З <strong>файл<strong>: ви можете попередньо завантажити файл за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' в КБ; під <em>Дорівнює</em> можуть бути вказані дозволені розширення, розділені комами, напр.: zip, pdf, doc"
|
347 |
|
348 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
msgid "Name"
|
355 |
msgstr "Ім'я"
|
356 |
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
msgid "Value"
|
364 |
msgstr "Значення"
|
365 |
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
370 |
msgid "Type"
|
371 |
msgstr "Тип"
|
372 |
|
373 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
374 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
377 |
msgid "Label"
|
378 |
msgstr "Надпис"
|
379 |
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
382 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
383 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
384 |
msgid "Description"
|
385 |
msgstr "Надпис"
|
386 |
|
387 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
389 |
msgid "Rules"
|
390 |
msgstr "Правила"
|
391 |
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
394 |
msgid "Actions"
|
395 |
msgstr "Дії"
|
396 |
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
msgid "Fieldset"
|
402 |
msgstr "Група полів"
|
403 |
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
406 |
msgid "Can be empty"
|
407 |
msgstr "Може бути порожнім"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
msgid "Check for E-mail syntax"
|
412 |
msgstr "Перевірка синтаксису ел. пошти "
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
msgid "Can be modified"
|
417 |
msgstr "Може бути змінено"
|
418 |
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
420 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
421 |
msgid "Can be modified only if empty"
|
422 |
msgstr "Може бути змінено, тільки якщо порожнє"
|
423 |
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
426 |
msgid "Can be modified only by admin"
|
427 |
msgstr "Може бути змінено тільки адміністратором"
|
428 |
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
431 |
msgid "Can be modified only by admin or if empty"
|
432 |
msgstr "Може бути змінено тільки адміністратором або якщо порожнє"
|
433 |
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
436 |
msgid "Cannot be modified"
|
437 |
msgstr "Не може бути змінено"
|
438 |
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
440 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
441 |
msgid "Should be equal TO"
|
442 |
msgstr "Повинно дорівнювати"
|
443 |
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
446 |
msgid "Case sensitive"
|
447 |
msgstr "З урахуванням регістру"
|
448 |
|
449 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
451 |
msgid "Regular Expression"
|
452 |
msgstr "Регулярні вирази"
|
453 |
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
456 |
msgid "Show the field in the registration"
|
457 |
msgstr "Показати поле при реєстрації"
|
458 |
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
461 |
msgid "Show the field in User's profile"
|
462 |
msgstr "Показати поле в профілі Користувача"
|
463 |
|
464 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
466 |
msgid "Show the field in Users Extended section"
|
467 |
msgstr "Показати поле в Розширеному розділі Користувачів"
|
468 |
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
470 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
471 |
msgid "Show the field in the search engine"
|
472 |
msgstr "Показати поле в пошукових системах"
|
473 |
|
474 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
476 |
msgid "Show the field in the blog"
|
477 |
msgstr "Показати поле у блозі"
|
478 |
|
479 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
480 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
481 |
msgid "Show the field if the role is at least:"
|
482 |
msgstr "Показати поле, якщо роль, принаймні:"
|
483 |
|
484 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
485 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
486 |
msgid "Anonymous"
|
487 |
msgstr "Анонімний"
|
488 |
|
489 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
490 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
491 |
msgid "User has 'view_cimy_extra_fields' capability"
|
492 |
msgstr "Користувач має 'view_cimy_extra_fields' можливості"
|
493 |
|
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 "Send an email to the admin if the user changes its value"
|
497 |
msgstr "Надіслати повідомлення адміну, якщо користувач змінює своє значення"
|
498 |
|
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 "Advanced options"
|
502 |
msgstr "Додаткові опції"
|
503 |
|
504 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
505 |
msgid "Clear"
|
506 |
msgstr "Очистити"
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
509 |
msgid "Invert selection"
|
510 |
msgstr "Все крім вибраного"
|
511 |
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
513 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
514 |
msgstr "Ви дійсно хочете видалити поле (-я) і всі дані, вставлені користувачами?"
|
515 |
|
516 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
517 |
msgid "WordPress Fields"
|
518 |
msgstr "Поля WordPress"
|
519 |
|
520 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
524 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
525 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
526 |
msgid "Extra Fields"
|
527 |
msgstr "Додаткові поля"
|
528 |
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
530 |
msgid "None!"
|
531 |
msgstr "Жодного!"
|
532 |
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
534 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
535 |
msgid "Order"
|
536 |
msgstr "Порядок"
|
537 |
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
539 |
msgid "Reset"
|
540 |
msgstr "Скидання"
|
541 |
|
542 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
544 |
msgid "SUCCESSFUL"
|
545 |
msgstr "УСПІШНО"
|
546 |
|
547 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
549 |
msgid "select"
|
550 |
msgstr "вибрати"
|
551 |
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
553 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
554 |
msgid "Users per page"
|
555 |
msgstr "Користувачів на сторінку"
|
556 |
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
559 |
msgid "Apply"
|
560 |
msgstr "Застосувати"
|
561 |
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
563 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
564 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
565 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
566 |
msgid "Users Extended"
|
567 |
msgstr "Користувачі (Розширене)"
|
568 |
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
570 |
#, php-format
|
571 |
msgid "Search results for “%s”"
|
572 |
msgstr "Шукати результати для “%s”"
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
575 |
#, php-format
|
576 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
577 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
580 |
msgid "Search Users"
|
581 |
msgstr "Пошук Користувачів"
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
585 |
msgid "Role"
|
586 |
msgstr "Роль"
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
590 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
591 |
msgid "Website"
|
592 |
msgstr "Веб-сайт"
|
593 |
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
596 |
msgid "Posts"
|
597 |
msgstr "Дописи"
|
598 |
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
600 |
msgid "View posts by this author"
|
601 |
msgstr "Переглянути всі дописи цього автора"
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
604 |
msgid "Super Admin"
|
605 |
msgstr "Супер Адмін"
|
606 |
|
607 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
608 |
#, php-format
|
609 |
msgid "e-mail: %s"
|
610 |
msgstr "ел. пошта: %s"
|
611 |
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
613 |
msgid "Change"
|
614 |
msgstr "Зміна"
|
615 |
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
617 |
msgid "Update selected users"
|
618 |
msgstr "Оновлення вибраних користувачів"
|
619 |
|
620 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
621 |
msgid "Update"
|
622 |
msgstr "Оновлення"
|
623 |
|
624 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
625 |
msgid "OK"
|
626 |
msgstr "ОК"
|
627 |
|
628 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
629 |
msgid "Cancel"
|
630 |
msgstr "Скасувати"
|
631 |
|
@@ -635,9 +636,9 @@ msgid "New user registration on your site %s:"
|
|
635 |
msgstr "Реєстрація нового користувача на вашому сайті %s:"
|
636 |
|
637 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
638 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
639 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
640 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
641 |
#, php-format
|
642 |
msgid "Username: %s"
|
643 |
msgstr "Ім'я користувача: %s"
|
@@ -657,15 +658,15 @@ msgstr "[%s] Реєстрація нового користувача"
|
|
657 |
msgid "[%s] Your username and password"
|
658 |
msgstr "[%s] Ваше ім'я користувача і пароль"
|
659 |
|
660 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
661 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
662 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
663 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
|
|
664 |
#, php-format
|
665 |
msgid "%s: %s"
|
666 |
msgstr "%s: %s"
|
667 |
|
668 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
669 |
#, php-format
|
670 |
msgid ""
|
671 |
"To activate your user, please click the following link:\n"
|
@@ -682,52 +683,52 @@ msgstr ""
|
|
682 |
"Після активації, ви отримаєте *ще одне повідомлення* з вашим логіном.\n"
|
683 |
"\n"
|
684 |
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
687 |
msgid "Your account is now active!"
|
688 |
msgstr "Тепер ваш акаунт активний!"
|
689 |
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
691 |
#, php-format
|
692 |
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>."
|
693 |
msgstr "Ваш сайт за адресою <a href=\"%1$s\">%2$s</a> активний. Тепер ви можете увійти в свій сайт, використовуючи вибране вами ім'я користувача “%3$s”. Будь ласка, перевірте вашу ел. поштову скриньку на %4$s для отримання вашого пароля та логіну. Якщо ви не отримаєте ел. пошту, будь ласка, перевірте вашу папку зі спамом. Якщо ви все ще не отримали листа протягом години, ви можете <a href=\"%5$s\">скинути ваш пароль</a></p>."
|
694 |
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
696 |
msgid "An error occurred during the activation"
|
697 |
msgstr "Помилка при активації"
|
698 |
|
699 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
700 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
702 |
#, php-format
|
703 |
msgid "Password: %s"
|
704 |
msgstr "Пароль: %s"
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
707 |
msgid "Invalid activation key."
|
708 |
msgstr "Неприпустимий ключ активації."
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
711 |
msgid "The site is already active."
|
712 |
msgstr "Сайт вже активний."
|
713 |
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
715 |
msgid "Could not create user"
|
716 |
msgstr "Не вдається створити користувача"
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
719 |
msgid "That username is already activated."
|
720 |
msgstr "Це ім'я користувача вже активовано."
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
723 |
msgid "That username is currently reserved but may be available in a couple of days."
|
724 |
msgstr "Це ім'я користувача наразі зарезервовано, але може стати доступним впродовж пари днів."
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
727 |
msgid "username and email used"
|
728 |
msgstr "ім'я користувача та адреса ел. пошти використані"
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
731 |
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."
|
732 |
msgstr "Ця адреса ел. пошти вже використовується. Будь ласка, перевірте вашу поштову скриньку на предмет листа активації. Вона стане доступна через пару днів, якщо нічого не робити."
|
733 |
|
@@ -744,7 +745,7 @@ msgid "Update the file"
|
|
744 |
msgstr "Оновлення файлу"
|
745 |
|
746 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
747 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
748 |
msgid "Delete the picture"
|
749 |
msgstr "Видалити зображення"
|
750 |
|
@@ -767,330 +768,339 @@ msgid "%s (%s) has changed one or more fields"
|
|
767 |
msgstr "%s (%s) змінило одне або кілька полів"
|
768 |
|
769 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
770 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
771 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
772 |
msgid "Options"
|
773 |
msgstr "Опції"
|
774 |
|
775 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
776 |
msgid "WordPress Fields table emptied"
|
777 |
msgstr "Таблиця WordPress Fields очищена"
|
778 |
|
779 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
780 |
msgid "WordPress Fields table deleted"
|
781 |
msgstr "Таблиця WordPress Fields видалена"
|
782 |
|
783 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
784 |
msgid "Extra Fields table emptied"
|
785 |
msgstr "Таблиця Extra Fields очищена"
|
786 |
|
787 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
788 |
msgid "Extra Fields table deleted"
|
789 |
msgstr "Таблиця Extra Fields видалена"
|
790 |
|
791 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
792 |
msgid "Users Data table emptied"
|
793 |
msgstr "Таблиця користувацьких даних очищена"
|
794 |
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
796 |
msgid "Users Data table deleted"
|
797 |
msgstr "Таблиця користувацьких даних видалена"
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
800 |
msgid "Options set to default values"
|
801 |
msgstr "Опції встановлені за замовчуванням"
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
804 |
msgid "Options deleted"
|
805 |
msgstr "Опції видалені"
|
806 |
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
808 |
msgid "Options changed"
|
809 |
msgstr "Опції змінено"
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
812 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
813 |
msgstr "Ця операція дозволить створити/обновити всі відсутні таблиці/опції, хочете продовжити?"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
816 |
msgid "Support the Cimy Project"
|
817 |
msgstr "Підтримка проекту Cimy"
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
820 |
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!"
|
821 |
msgstr "Цей плагін є результатом багатьох годин розробки, щоб додати нові функції, підтримати нові версії WordPress і виправити помилки, будь ласка, надайте спонсорську допомогу, якщо врятував вас від витрат усіх цих годин!"
|
822 |
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
824 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
825 |
msgid "Save Changes"
|
826 |
msgstr "Зберегти зміни"
|
827 |
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
829 |
msgid "General"
|
830 |
msgstr "Загальне"
|
831 |
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
833 |
msgid "installed is"
|
834 |
msgstr "встановлено"
|
835 |
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
837 |
msgid "OPTIONS DELETED!"
|
838 |
msgstr "ОПЦІЇ ВИДАЛЕНІ!"
|
839 |
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
842 |
msgid "Fix the problem"
|
843 |
msgstr "Виправити проблеми"
|
844 |
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
846 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
847 |
msgstr "ВЕРСІЇ НЕ ЗБІГАЮТЬСЯ! Це тому що ви не деактивували і повторно не активували плагін після оновлення! Це може створити проблеми ..."
|
848 |
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
850 |
msgid "Picture/Avatar upload"
|
851 |
msgstr "Завантаження картинки/аватару "
|
852 |
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
854 |
msgid "is created and writable"
|
855 |
msgstr "створено з перезаписуванням"
|
856 |
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
858 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
859 |
msgstr "НЕ створено або веб-сервер НЕ має дозволу писати на ньому"
|
860 |
|
861 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
862 |
msgid "Show all fields in the welcome email"
|
863 |
msgstr "Показати всі поля у вітальному повідомлені"
|
864 |
|
865 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
866 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
867 |
msgstr "повідомлення, відправлене на адміністратора і користувача при реєстрації, матиме всі поля"
|
868 |
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
870 |
msgid "Enable email confirmation"
|
871 |
msgstr "Включити підтвердження ел. поштою"
|
872 |
|
873 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
874 |
msgid "user that registers should confirm its email address via a link click"
|
875 |
msgstr "користувач, який реєструється, має підтвердити свою адресу ел. пошти кліком за посилання"
|
876 |
|
877 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
878 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
879 |
msgstr "<strong> увага:</strong> ця функція, якщо включена, автоматично деактивує (тільки під час реєстрації) всі завантажені поля: файл, малюнок, аватар"
|
880 |
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
882 |
msgid "Enable form confirmation"
|
883 |
msgstr "Включити форму підтвердження"
|
884 |
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
886 |
msgid "a summary of the registration form will be presented to the user"
|
887 |
msgstr "резюме реєстраційної форми буде представлено користувачеві"
|
888 |
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
890 |
msgid "Customize welcome email sent to the new user"
|
891 |
msgstr "Налаштувати вітальне повідомлення для нового користувача"
|
892 |
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
894 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
895 |
msgstr "якщо змінити або видалити вставку, то ел. лист не буде мати правильну інформацію"
|
896 |
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
898 |
msgid "Redirect to the source"
|
899 |
msgstr "Перенаправлення на джерело"
|
900 |
|
901 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
902 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
903 |
msgstr "після реєстрації або підтвердження користувача буде перенаправлено на адресу, де він був, перш ніж натиснути на посилання реєстрації"
|
904 |
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
906 |
msgid "No captcha"
|
907 |
msgstr "Нема КАПЧА"
|
908 |
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
910 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
911 |
msgstr "Включити <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
912 |
|
913 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
914 |
msgid "Public KEY"
|
915 |
msgstr "Відкритий ключ"
|
916 |
|
917 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
918 |
msgid "Private KEY"
|
919 |
msgstr "Закритий ключ"
|
920 |
|
921 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
922 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
923 |
msgstr "Включити <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
924 |
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
926 |
msgid "This captcha is probably weaker, but is easier for users"
|
927 |
msgstr "Ця КАПЧА ймовірно, слабкіша, але простіша для користувачів"
|
928 |
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
930 |
#, php-format
|
931 |
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>"
|
932 |
msgstr "<strong>УВАГА: для активації цієї КАПЧА скачати <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">цей пакет</a> і розпакувати його під %s</strong>"
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
935 |
msgid "Change login/registration page logo"
|
936 |
msgstr "Зміна логотипу на сторінці логіну/реєстрації"
|
937 |
|
938 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
939 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
940 |
msgstr "Максимальна рекомендована ширина логотипу 328px, але будь-яка висота повинна працювати."
|
941 |
|
942 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
943 |
msgid "Database"
|
944 |
msgstr "База даних"
|
945 |
|
946 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
950 |
msgid "select action"
|
951 |
msgstr "вибрати дію"
|
952 |
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
954 |
msgid "Default values"
|
955 |
msgstr "Значення за замовчуванням"
|
956 |
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
958 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
961 |
msgid "Delete"
|
962 |
msgstr "Видалити"
|
963 |
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
966 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
967 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
968 |
msgid "NOT PRESENT"
|
969 |
msgstr "ВІДСУТНЄ"
|
970 |
|
971 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
972 |
msgid "WordPress Fields table"
|
973 |
msgstr "Таблиця WordPress Fields"
|
974 |
|
975 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
978 |
msgid "Empty"
|
979 |
msgstr "Порожнє"
|
980 |
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
982 |
msgid "Extra Fields table"
|
983 |
msgstr "Таблиця Extra Fields"
|
984 |
|
985 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
986 |
msgid "Users Data table"
|
987 |
msgstr "Таблиця Даних Користувачів"
|
988 |
|
989 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
990 |
msgid "all data inserted by users in all and only extra fields"
|
991 |
msgstr "всі дані внесені користувачами в усі та тільки додаткові поля"
|
992 |
|
993 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
994 |
msgid "Force tables creation"
|
995 |
msgstr "Примусове створення таблиць"
|
996 |
|
997 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
998 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
999 |
msgstr "еквівалентно деактивуванню та активуванню плагіна, ніякі інші операції не будуть виконуватися"
|
1000 |
|
1001 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1002 |
msgid "User Profile"
|
1003 |
msgstr "Профіль користувача"
|
1004 |
|
1005 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1006 |
msgid "Extra Fields section title"
|
1007 |
msgstr "Титул розділу Додаткових Полів "
|
1008 |
|
1009 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1010 |
msgid "Fieldset's titles, separates with comma"
|
1011 |
msgstr "Назви груп полів (fieldset), розділені комами"
|
1012 |
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1014 |
msgid "example: title1,title2,title3"
|
1015 |
msgstr "Приклад: заголовок1, заголовок2, заголовок3"
|
1016 |
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1018 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1019 |
msgstr "<strong> увага:</strong>якщо ви зміните порядок або видалите групу полів, вам може знадобитися встановлення всіх додаткових полів знову"
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1022 |
msgid "Authors & Users Extended"
|
1023 |
msgstr "Автори і Користувачі (Розширене)"
|
1024 |
|
1025 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1026 |
msgid "Hide username field"
|
1027 |
msgstr "Приховати поле з іменем користувача"
|
1028 |
|
1029 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1030 |
msgid "Hide name field"
|
1031 |
msgstr "Приховати поле з іменем"
|
1032 |
|
1033 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1034 |
msgid "Hide email field"
|
1035 |
msgstr "Приховати поле ел. пошти"
|
1036 |
|
1037 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1038 |
msgid "Hide role field"
|
1039 |
msgstr "Приховати поле ролі"
|
1040 |
|
1041 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1042 |
msgid "Hide website field"
|
1043 |
msgstr "Приховати поле веб-сайту"
|
1044 |
|
1045 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1046 |
msgid "Hide n. posts field"
|
1047 |
msgstr "Приховати поле з № допису"
|
1048 |
|
1049 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1050 |
msgid "WordPress hidden fields"
|
1051 |
msgstr "Приховані поля WordPress"
|
1052 |
|
1053 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1054 |
msgid "Show password"
|
1055 |
msgstr "Показати пароль"
|
1056 |
|
1057 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1058 |
msgid "Show confirmation password"
|
1059 |
msgstr "Показати підтвердження пароля"
|
1060 |
|
1061 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1062 |
msgid "Show password strength meter"
|
1063 |
msgstr "Показати оцінку сили пароля"
|
1064 |
|
1065 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1066 |
msgid "Show first name"
|
1067 |
msgstr "Показати ім'я"
|
1068 |
|
1069 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1070 |
msgid "Show last name"
|
1071 |
msgstr "Показати прізвище"
|
1072 |
|
1073 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1074 |
msgid "Show nickname"
|
1075 |
msgstr "Показати прізвисько"
|
1076 |
|
1077 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1078 |
msgid "Show website"
|
1079 |
msgstr "Показати веб-сайт"
|
1080 |
|
1081 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1082 |
msgid "Show AIM"
|
1083 |
msgstr "Показати AIM"
|
1084 |
|
1085 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1086 |
msgid "Show Yahoo IM"
|
1087 |
msgstr "Показати Yahoo IM"
|
1088 |
|
1089 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1090 |
msgid "Show Jabber / Google Talk"
|
1091 |
msgstr "Показати Jabber / Google Talk"
|
1092 |
|
1093 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
1094 |
msgid "Show Biographical Info"
|
1095 |
msgstr "Показати Біографічну Інформацію"
|
1096 |
|
@@ -1112,39 +1122,39 @@ msgstr "Файл '%s' не є зображенням."
|
|
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>Примітка:</strong> цей сайт дозволяє персоналізувати ваш пароль; після реєстрації ви отримаєте повідомлення ел. поштою з іншим паролем, не хвилюйтесь про це!"
|
1114 |
|
1115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1116 |
msgid "Password"
|
1117 |
msgstr "Пароль"
|
1118 |
|
1119 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1120 |
msgid "Password confirmation"
|
1121 |
msgstr "Підтвердження пароля"
|
1122 |
|
1123 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1124 |
msgid "First name"
|
1125 |
msgstr "Ім'я"
|
1126 |
|
1127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1128 |
msgid "Last name"
|
1129 |
msgstr "Прізвище"
|
1130 |
|
1131 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1132 |
msgid "Nickname"
|
1133 |
msgstr "Прізвисько"
|
1134 |
|
1135 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1136 |
msgid "AIM"
|
1137 |
msgstr "AIM"
|
1138 |
|
1139 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1140 |
msgid "Yahoo IM"
|
1141 |
msgstr "Yahoo IM"
|
1142 |
|
1143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1144 |
msgid "Jabber / Google Talk"
|
1145 |
msgstr "Jabber / Google Talk"
|
1146 |
|
1147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
1148 |
msgid "Biographical Info"
|
1149 |
msgstr "Біографічна Інформація"
|
1150 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-03-17 16:57-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-03-17 16:57-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Oleg Bondarenko <o.o.bondarenko@gmail.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
19 |
|
|
|
|
|
|
|
20 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:528
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
34 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1026
|
36 |
msgid "ERROR"
|
37 |
msgstr "ПОМИЛКА"
|
38 |
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
40 |
msgid "does not match."
|
41 |
msgstr "не збігається."
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
44 |
msgid "hasn’t a correct email syntax."
|
45 |
msgstr "неправильний синтаксис електронної пошти."
|
46 |
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
48 |
msgid "couldn’t be empty."
|
49 |
msgstr "не може бути порожнім."
|
50 |
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:515
|
52 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
|
53 |
msgid "isn’t correct"
|
54 |
msgstr "не правильно"
|
55 |
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
59 |
msgid "YES"
|
60 |
msgstr "ТАК"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1027
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1030
|
65 |
msgid "NO"
|
66 |
msgstr "НІ"
|
67 |
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
69 |
msgid "should be"
|
70 |
msgstr "повинно бути"
|
71 |
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
|
73 |
msgid "should be an image."
|
74 |
msgstr "повинно бути зображення."
|
75 |
|
76 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:552
|
77 |
msgid "does not accept this file type."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
|
81 |
msgid "couldn’t have size less than"
|
82 |
msgstr "не може бути розміром менше ніж"
|
83 |
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:569
|
85 |
msgid "couldn’t have length less than"
|
86 |
msgstr "не може мати довжину менше ніж"
|
87 |
|
88 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:581
|
89 |
msgid "couldn’t have size different than"
|
90 |
msgstr "не може відрізнятися розміром від"
|
91 |
|
92 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
|
93 |
msgid "couldn’t have length different than"
|
94 |
msgstr "не може відрізнятися довжиною від"
|
95 |
|
96 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:598
|
97 |
msgid "couldn’t have size more than"
|
98 |
msgstr "не може бути розміром більше ніж"
|
99 |
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:603
|
101 |
msgid "couldn’t have length more than"
|
102 |
msgstr "не може мати довжину більш ніж"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:644
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:652
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr "Введений код не правильний."
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:723
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Ім'я користувача"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:750
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
119 |
msgid "E-mail"
|
120 |
msgstr "Ел. пошта"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1001
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1007
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
134 |
msgid "Strength indicator"
|
135 |
msgstr "Індикатор сили"
|
136 |
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1183
|
138 |
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 ! \" ? $ % ^ & )."
|
139 |
msgstr "Підказка: пароль повинен бути не менше семи символів. Щоб зробити його сильнішим, використовуйте верхній та нижній регістр, цифри і символи, наприклад ! \" ? $ % ^ & )."
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
|
142 |
msgid "Change image"
|
143 |
msgstr "Змінити картинку"
|
144 |
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
|
146 |
msgid "Insert the code:"
|
147 |
msgstr "Вставте код:"
|
148 |
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1299
|
151 |
msgid "Confirm your registration"
|
152 |
msgstr "Підтвердіть реєстрацію"
|
153 |
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1305
|
155 |
msgid "A password will be e-mailed to you."
|
156 |
msgstr "Пароль буде направлений до вас ел. поштою."
|
157 |
|
158 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1313
|
159 |
msgid "← Back"
|
160 |
msgstr "← Назад"
|
161 |
|
180 |
msgstr "Зміна порядку"
|
181 |
|
182 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
|
184 |
msgid "Min length"
|
185 |
msgstr "Мін. довжина"
|
186 |
|
187 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
189 |
msgid "Exact length"
|
190 |
msgstr "Точна довжина"
|
191 |
|
192 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
|
193 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
194 |
msgid "Max length"
|
195 |
msgstr "Макс. довжина"
|
196 |
|
212 |
msgstr "Ви не можете віддати порядок, у якому пропущені деякі числа"
|
213 |
|
214 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
215 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
|
216 |
msgid "Nothing selected"
|
217 |
msgstr "Нічого не вибрано"
|
218 |
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
220 |
msgid "Field(s)"
|
221 |
msgstr "Поле(-я)"
|
222 |
|
223 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
|
224 |
msgid "deleted correctly"
|
225 |
msgstr "видалено правильно"
|
226 |
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
228 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:838
|
229 |
msgid "Min size"
|
230 |
msgstr "Мін. розмір"
|
231 |
|
232 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:243
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:839
|
234 |
msgid "Exact size"
|
235 |
msgstr "Точний розмір"
|
236 |
|
237 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:244
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:840
|
239 |
msgid "Max size"
|
240 |
msgstr "Макс. розмір"
|
241 |
|
242 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
|
243 |
msgid "Exact or Max size"
|
244 |
msgstr "Точний або макс. розмір"
|
245 |
|
246 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
247 |
msgid "Name not specified"
|
248 |
msgstr "Ім'я не задано"
|
249 |
|
250 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
251 |
msgid "Name cannot contains spaces"
|
252 |
msgstr "Ім'я не може містити пробіли"
|
253 |
|
254 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
255 |
msgid "Label not specified"
|
256 |
msgstr "Надпис не задано"
|
257 |
|
258 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
259 |
msgid "not selected (with this type is necessary)"
|
260 |
msgstr "не вибрано (з цим типом необхідно)"
|
261 |
|
262 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
263 |
msgid "If you select"
|
264 |
msgstr "Якщо ви виберете"
|
265 |
|
266 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
267 |
msgid "you cannot select Min or Max"
|
268 |
msgstr "Ви не можете вибрати Мін. або Макс."
|
269 |
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
273 |
msgid "should be in the range of"
|
274 |
msgstr "повинно бути в діапазоні"
|
275 |
|
276 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
277 |
msgid "Equal TO not specified"
|
278 |
msgstr "Не обрано Дорівнює"
|
279 |
|
280 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
|
281 |
msgid "With checkbox type Equal TO can only be"
|
282 |
msgstr "Може бути тільки з прапорцем вибору типу Дорівнює"
|
283 |
|
284 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
|
285 |
msgid "With radio type Equal TO can only be"
|
286 |
msgstr "Може бути тільки з перемикачем вибору (радіо) типу Дорівнює "
|
287 |
|
288 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:348
|
289 |
msgid "With checkbox type Value can only be"
|
290 |
msgstr "Може бути тільки з прапорцем вибору типу Значення "
|
291 |
|
292 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
|
293 |
msgid "With radio type Value can only be"
|
294 |
msgstr "Може бути тільки з перемикачем вибору (радіо) типу Значення"
|
295 |
|
296 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
|
297 |
msgid "Field inserted correctly"
|
298 |
msgstr "Поле вставлене коректно"
|
299 |
|
300 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
301 |
msgid "Field #"
|
302 |
msgstr "Поле №"
|
303 |
|
304 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
|
305 |
msgid "updated correctly"
|
306 |
msgstr "оновлено коректно"
|
307 |
|
308 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:421
|
309 |
msgid "Name inserted is just in the database, change to another one"
|
310 |
msgstr "Вставлене ім'я вже є у базі даних, змінити на інше"
|
311 |
|
312 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:436
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
314 |
msgid "Add a new Field"
|
315 |
msgstr "Додати нове поле"
|
316 |
|
317 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
|
318 |
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."
|
319 |
msgstr "Щоб додати нове поле ви повинні вибрати назву, тип та надпис; додатково можна значення і опис. Правила застосовуються при реєстрації користувача."
|
320 |
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
|
322 |
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'"
|
323 |
msgstr "З <strong> радіо</strong> та <strong>прапорцем</strong>: <em>Значення</em> і <em>Дорівнює</em> може бути тільки 'Так' або 'Ні', що означає 'обрано' або 'не обрано'"
|
324 |
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
326 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
327 |
msgstr "З <strong>випадаючим списком (drop-down)</strong>: ви повинні додати всі варіанти надписів, наприклад: надпис/елемент1, елемент2, елемент3"
|
328 |
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
330 |
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"
|
331 |
msgstr "З <strong>картинкою</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' у КБ; <em>Дорівнює</em> означає макс. розмір у пікселях (ширина або висота) для ескізів"
|
332 |
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
334 |
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)"
|
335 |
msgstr "З <strong>URL-картинки</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; <em>Дорівнює</em> означає макс. ширину у пікселах (висота буде пропорційною)"
|
336 |
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
338 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
339 |
msgstr "З <strong>датою реєстрації</strong>: <em>Дорівнює</em> означає формат дати і часу"
|
340 |
|
341 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
342 |
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"
|
343 |
msgstr "З <strong>аватар</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' в КБ; <em>Дорівнює</em> автоматично встановлює на 512 пікселів"
|
344 |
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
|
346 |
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"
|
347 |
msgstr "З <strong>файл<strong>: ви можете попередньо завантажити файл за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' в КБ; під <em>Дорівнює</em> можуть бути вказані дозволені розширення, розділені комами, напр.: zip, pdf, doc"
|
348 |
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1439
|
355 |
msgid "Name"
|
356 |
msgstr "Ім'я"
|
357 |
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:566
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
360 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
364 |
msgid "Value"
|
365 |
msgstr "Значення"
|
366 |
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:567
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:877
|
371 |
msgid "Type"
|
372 |
msgstr "Тип"
|
373 |
|
374 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:596
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:894
|
378 |
msgid "Label"
|
379 |
msgstr "Надпис"
|
380 |
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:778
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:897
|
385 |
msgid "Description"
|
386 |
msgstr "Надпис"
|
387 |
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:779
|
390 |
msgid "Rules"
|
391 |
msgstr "Правила"
|
392 |
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:780
|
395 |
msgid "Actions"
|
396 |
msgstr "Дії"
|
397 |
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1192
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1275
|
402 |
msgid "Fieldset"
|
403 |
msgstr "Група полів"
|
404 |
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:911
|
407 |
msgid "Can be empty"
|
408 |
msgstr "Може бути порожнім"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
412 |
msgid "Check for E-mail syntax"
|
413 |
msgstr "Перевірка синтаксису ел. пошти "
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:915
|
417 |
msgid "Can be modified"
|
418 |
msgstr "Може бути змінено"
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
422 |
msgid "Can be modified only if empty"
|
423 |
msgstr "Може бути змінено, тільки якщо порожнє"
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
|
427 |
msgid "Can be modified only by admin"
|
428 |
msgstr "Може бути змінено тільки адміністратором"
|
429 |
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
|
432 |
msgid "Can be modified only by admin or if empty"
|
433 |
msgstr "Може бути змінено тільки адміністратором або якщо порожнє"
|
434 |
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:919
|
437 |
msgid "Cannot be modified"
|
438 |
msgstr "Не може бути змінено"
|
439 |
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
442 |
msgid "Should be equal TO"
|
443 |
msgstr "Повинно дорівнювати"
|
444 |
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:926
|
447 |
msgid "Case sensitive"
|
448 |
msgstr "З урахуванням регістру"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:928
|
452 |
msgid "Regular Expression"
|
453 |
msgstr "Регулярні вирази"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
457 |
msgid "Show the field in the registration"
|
458 |
msgstr "Показати поле при реєстрації"
|
459 |
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
462 |
msgid "Show the field in User's profile"
|
463 |
msgstr "Показати поле в профілі Користувача"
|
464 |
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
|
467 |
msgid "Show the field in Users Extended section"
|
468 |
msgstr "Показати поле в Розширеному розділі Користувачів"
|
469 |
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:638
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
|
472 |
msgid "Show the field in the search engine"
|
473 |
msgstr "Показати поле в пошукових системах"
|
474 |
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:951
|
477 |
msgid "Show the field in the blog"
|
478 |
msgstr "Показати поле у блозі"
|
479 |
|
480 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:644
|
481 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
|
482 |
msgid "Show the field if the role is at least:"
|
483 |
msgstr "Показати поле, якщо роль, принаймні:"
|
484 |
|
485 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
486 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:956
|
487 |
msgid "Anonymous"
|
488 |
msgstr "Анонімний"
|
489 |
|
490 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
491 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:962
|
492 |
msgid "User has 'view_cimy_extra_fields' capability"
|
493 |
msgstr "Користувач має 'view_cimy_extra_fields' можливості"
|
494 |
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
|
497 |
msgid "Send an email to the admin if the user changes its value"
|
498 |
msgstr "Надіслати повідомлення адміну, якщо користувач змінює своє значення"
|
499 |
|
500 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:975
|
502 |
msgid "Advanced options"
|
503 |
msgstr "Додаткові опції"
|
504 |
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
|
506 |
msgid "Clear"
|
507 |
msgstr "Очистити"
|
508 |
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:741
|
510 |
msgid "Invert selection"
|
511 |
msgstr "Все крім вибраного"
|
512 |
|
513 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:742
|
514 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
515 |
msgstr "Ви дійсно хочете видалити поле (-я) і всі дані, вставлені користувачами?"
|
516 |
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:748
|
518 |
msgid "WordPress Fields"
|
519 |
msgstr "Поля WordPress"
|
520 |
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1748
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1753
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
525 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
527 |
msgid "Extra Fields"
|
528 |
msgstr "Додаткові поля"
|
529 |
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
|
531 |
msgid "None!"
|
532 |
msgstr "Жодного!"
|
533 |
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:776
|
535 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
536 |
msgid "Order"
|
537 |
msgstr "Порядок"
|
538 |
|
539 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:979
|
540 |
msgid "Reset"
|
541 |
msgstr "Скидання"
|
542 |
|
543 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
|
545 |
msgid "SUCCESSFUL"
|
546 |
msgstr "УСПІШНО"
|
547 |
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1775
|
550 |
msgid "select"
|
551 |
msgstr "вибрати"
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1196
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1279
|
555 |
msgid "Users per page"
|
556 |
msgstr "Користувачів на сторінку"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1198
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1281
|
560 |
msgid "Apply"
|
561 |
msgstr "Застосувати"
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
564 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
565 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
566 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
567 |
msgid "Users Extended"
|
568 |
msgstr "Користувачі (Розширене)"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1363
|
571 |
#, php-format
|
572 |
msgid "Search results for “%s”"
|
573 |
msgstr "Шукати результати для “%s”"
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1401
|
576 |
#, php-format
|
577 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
578 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
579 |
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
581 |
msgid "Search Users"
|
582 |
msgstr "Пошук Користувачів"
|
583 |
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
586 |
msgid "Role"
|
587 |
msgstr "Роль"
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
592 |
msgid "Website"
|
593 |
msgstr "Веб-сайт"
|
594 |
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
597 |
msgid "Posts"
|
598 |
msgstr "Дописи"
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1581
|
601 |
msgid "View posts by this author"
|
602 |
msgstr "Переглянути всі дописи цього автора"
|
603 |
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1606
|
605 |
msgid "Super Admin"
|
606 |
msgstr "Супер Адмін"
|
607 |
|
608 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1617
|
609 |
#, php-format
|
610 |
msgid "e-mail: %s"
|
611 |
msgstr "ел. пошта: %s"
|
612 |
|
613 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1728
|
614 |
msgid "Change"
|
615 |
msgstr "Зміна"
|
616 |
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1744
|
618 |
msgid "Update selected users"
|
619 |
msgstr "Оновлення вибраних користувачів"
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
622 |
msgid "Update"
|
623 |
msgstr "Оновлення"
|
624 |
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
626 |
msgid "OK"
|
627 |
msgstr "ОК"
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1781
|
630 |
msgid "Cancel"
|
631 |
msgstr "Скасувати"
|
632 |
|
636 |
msgstr "Реєстрація нового користувача на вашому сайті %s:"
|
637 |
|
638 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
639 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
640 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
642 |
#, php-format
|
643 |
msgid "Username: %s"
|
644 |
msgstr "Ім'я користувача: %s"
|
658 |
msgid "[%s] Your username and password"
|
659 |
msgstr "[%s] Ваше ім'я користувача і пароль"
|
660 |
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
|
|
|
662 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
663 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
|
664 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
|
665 |
#, php-format
|
666 |
msgid "%s: %s"
|
667 |
msgstr "%s: %s"
|
668 |
|
669 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
|
670 |
#, php-format
|
671 |
msgid ""
|
672 |
"To activate your user, please click the following link:\n"
|
683 |
"Після активації, ви отримаєте *ще одне повідомлення* з вашим логіном.\n"
|
684 |
"\n"
|
685 |
|
686 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
|
687 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
688 |
msgid "Your account is now active!"
|
689 |
msgstr "Тепер ваш акаунт активний!"
|
690 |
|
691 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:228
|
692 |
#, php-format
|
693 |
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>."
|
694 |
msgstr "Ваш сайт за адресою <a href=\"%1$s\">%2$s</a> активний. Тепер ви можете увійти в свій сайт, використовуючи вибране вами ім'я користувача “%3$s”. Будь ласка, перевірте вашу ел. поштову скриньку на %4$s для отримання вашого пароля та логіну. Якщо ви не отримаєте ел. пошту, будь ласка, перевірте вашу папку зі спамом. Якщо ви все ще не отримали листа протягом години, ви можете <a href=\"%5$s\">скинути ваш пароль</a></p>."
|
695 |
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
|
697 |
msgid "An error occurred during the activation"
|
698 |
msgstr "Помилка при активації"
|
699 |
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
701 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
703 |
#, php-format
|
704 |
msgid "Password: %s"
|
705 |
msgstr "Пароль: %s"
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:250
|
708 |
msgid "Invalid activation key."
|
709 |
msgstr "Неприпустимий ключ активації."
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:253
|
712 |
msgid "The site is already active."
|
713 |
msgstr "Сайт вже активний."
|
714 |
|
715 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:273
|
716 |
msgid "Could not create user"
|
717 |
msgstr "Не вдається створити користувача"
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:285
|
720 |
msgid "That username is already activated."
|
721 |
msgstr "Це ім'я користувача вже активовано."
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:305
|
724 |
msgid "That username is currently reserved but may be available in a couple of days."
|
725 |
msgstr "Це ім'я користувача наразі зарезервовано, але може стати доступним впродовж пари днів."
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:308
|
728 |
msgid "username and email used"
|
729 |
msgstr "ім'я користувача та адреса ел. пошти використані"
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:318
|
732 |
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."
|
733 |
msgstr "Ця адреса ел. пошти вже використовується. Будь ласка, перевірте вашу поштову скриньку на предмет листа активації. Вона стане доступна через пару днів, якщо нічого не робити."
|
734 |
|
745 |
msgstr "Оновлення файлу"
|
746 |
|
747 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
749 |
msgid "Delete the picture"
|
750 |
msgstr "Видалити зображення"
|
751 |
|
768 |
msgstr "%s (%s) змінило одне або кілька полів"
|
769 |
|
770 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
|
772 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
773 |
msgid "Options"
|
774 |
msgstr "Опції"
|
775 |
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
|
777 |
msgid "WordPress Fields table emptied"
|
778 |
msgstr "Таблиця WordPress Fields очищена"
|
779 |
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
781 |
msgid "WordPress Fields table deleted"
|
782 |
msgstr "Таблиця WordPress Fields видалена"
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
|
785 |
msgid "Extra Fields table emptied"
|
786 |
msgstr "Таблиця Extra Fields очищена"
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
789 |
msgid "Extra Fields table deleted"
|
790 |
msgstr "Таблиця Extra Fields видалена"
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
|
793 |
msgid "Users Data table emptied"
|
794 |
msgstr "Таблиця користувацьких даних очищена"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
|
797 |
msgid "Users Data table deleted"
|
798 |
msgstr "Таблиця користувацьких даних видалена"
|
799 |
|
800 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
|
801 |
msgid "Options set to default values"
|
802 |
msgstr "Опції встановлені за замовчуванням"
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
|
805 |
msgid "Options deleted"
|
806 |
msgstr "Опції видалені"
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
|
809 |
msgid "Options changed"
|
810 |
msgstr "Опції змінено"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
|
813 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
814 |
msgstr "Ця операція дозволить створити/обновити всі відсутні таблиці/опції, хочете продовжити?"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
817 |
msgid "Support the Cimy Project"
|
818 |
msgstr "Підтримка проекту Cimy"
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
|
821 |
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!"
|
822 |
msgstr "Цей плагін є результатом багатьох годин розробки, щоб додати нові функції, підтримати нові версії WordPress і виправити помилки, будь ласка, надайте спонсорську допомогу, якщо врятував вас від витрат усіх цих годин!"
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
|
825 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
826 |
msgid "Save Changes"
|
827 |
msgstr "Зберегти зміни"
|
828 |
|
829 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
830 |
msgid "General"
|
831 |
msgstr "Загальне"
|
832 |
|
833 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
|
834 |
msgid "installed is"
|
835 |
msgstr "встановлено"
|
836 |
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
838 |
msgid "OPTIONS DELETED!"
|
839 |
msgstr "ОПЦІЇ ВИДАЛЕНІ!"
|
840 |
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
842 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
|
843 |
msgid "Fix the problem"
|
844 |
msgstr "Виправити проблеми"
|
845 |
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
847 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
848 |
msgstr "ВЕРСІЇ НЕ ЗБІГАЮТЬСЯ! Це тому що ви не деактивували і повторно не активували плагін після оновлення! Це може створити проблеми ..."
|
849 |
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
851 |
msgid "Picture/Avatar upload"
|
852 |
msgstr "Завантаження картинки/аватару "
|
853 |
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
|
855 |
msgid "is created and writable"
|
856 |
msgstr "створено з перезаписуванням"
|
857 |
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
|
859 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
860 |
msgstr "НЕ створено або веб-сервер НЕ має дозволу писати на ньому"
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
863 |
msgid "Show all fields in the welcome email"
|
864 |
msgstr "Показати всі поля у вітальному повідомлені"
|
865 |
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
867 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
868 |
msgstr "повідомлення, відправлене на адміністратора і користувача при реєстрації, матиме всі поля"
|
869 |
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
|
871 |
msgid "Enable email confirmation"
|
872 |
msgstr "Включити підтвердження ел. поштою"
|
873 |
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
875 |
msgid "user that registers should confirm its email address via a link click"
|
876 |
msgstr "користувач, який реєструється, має підтвердити свою адресу ел. пошти кліком за посилання"
|
877 |
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
879 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
880 |
msgstr "<strong> увага:</strong> ця функція, якщо включена, автоматично деактивує (тільки під час реєстрації) всі завантажені поля: файл, малюнок, аватар"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
|
883 |
msgid "Enable form confirmation"
|
884 |
msgstr "Включити форму підтвердження"
|
885 |
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
887 |
msgid "a summary of the registration form will be presented to the user"
|
888 |
msgstr "резюме реєстраційної форми буде представлено користувачеві"
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
891 |
msgid "Customize welcome email sent to the new user"
|
892 |
msgstr "Налаштувати вітальне повідомлення для нового користувача"
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
895 |
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
896 |
msgstr "якщо змінити або видалити вставку, то ел. лист не буде мати правильну інформацію"
|
897 |
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
899 |
msgid "Redirect to the source"
|
900 |
msgstr "Перенаправлення на джерело"
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
903 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
904 |
msgstr "після реєстрації або підтвердження користувача буде перенаправлено на адресу, де він був, перш ніж натиснути на посилання реєстрації"
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
907 |
msgid "No captcha"
|
908 |
msgstr "Нема КАПЧА"
|
909 |
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
911 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
912 |
msgstr "Включити <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
913 |
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
|
915 |
msgid "Public KEY"
|
916 |
msgstr "Відкритий ключ"
|
917 |
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
919 |
msgid "Private KEY"
|
920 |
msgstr "Закритий ключ"
|
921 |
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
|
923 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
924 |
msgstr "Включити <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
925 |
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
|
927 |
msgid "This captcha is probably weaker, but is easier for users"
|
928 |
msgstr "Ця КАПЧА ймовірно, слабкіша, але простіша для користувачів"
|
929 |
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
931 |
#, php-format
|
932 |
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>"
|
933 |
msgstr "<strong>УВАГА: для активації цієї КАПЧА скачати <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">цей пакет</a> і розпакувати його під %s</strong>"
|
934 |
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
936 |
msgid "Change login/registration page logo"
|
937 |
msgstr "Зміна логотипу на сторінці логіну/реєстрації"
|
938 |
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
940 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
941 |
msgstr "Максимальна рекомендована ширина логотипу 328px, але будь-яка висота повинна працювати."
|
942 |
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
944 |
msgid "Database"
|
945 |
msgstr "База даних"
|
946 |
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
951 |
msgid "select action"
|
952 |
msgstr "вибрати дію"
|
953 |
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
955 |
msgid "Default values"
|
956 |
msgstr "Значення за замовчуванням"
|
957 |
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:616
|
962 |
msgid "Delete"
|
963 |
msgstr "Видалити"
|
964 |
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:603
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
969 |
msgid "NOT PRESENT"
|
970 |
msgstr "ВІДСУТНЄ"
|
971 |
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
973 |
msgid "WordPress Fields table"
|
974 |
msgstr "Таблиця WordPress Fields"
|
975 |
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:581
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
|
979 |
msgid "Empty"
|
980 |
msgstr "Порожнє"
|
981 |
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
983 |
msgid "Extra Fields table"
|
984 |
msgstr "Таблиця Extra Fields"
|
985 |
|
986 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
987 |
msgid "Users Data table"
|
988 |
msgstr "Таблиця Даних Користувачів"
|
989 |
|
990 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
991 |
msgid "all data inserted by users in all and only extra fields"
|
992 |
msgstr "всі дані внесені користувачами в усі та тільки додаткові поля"
|
993 |
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
|
995 |
msgid "Force tables creation"
|
996 |
msgstr "Примусове створення таблиць"
|
997 |
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
999 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1000 |
msgstr "еквівалентно деактивуванню та активуванню плагіна, ніякі інші операції не будуть виконуватися"
|
1001 |
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1003 |
msgid "User Profile"
|
1004 |
msgstr "Профіль користувача"
|
1005 |
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
|
1007 |
msgid "Extra Fields section title"
|
1008 |
msgstr "Титул розділу Додаткових Полів "
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1011 |
msgid "Fieldset's titles, separates with comma"
|
1012 |
msgstr "Назви груп полів (fieldset), розділені комами"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
1015 |
msgid "example: title1,title2,title3"
|
1016 |
msgstr "Приклад: заголовок1, заголовок2, заголовок3"
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
|
1019 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1020 |
msgstr "<strong> увага:</strong>якщо ви зміните порядок або видалите групу полів, вам може знадобитися встановлення всіх додаткових полів знову"
|
1021 |
|
1022 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:648
|
1023 |
msgid "Authors & Users Extended"
|
1024 |
msgstr "Автори і Користувачі (Розширене)"
|
1025 |
|
1026 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
|
1027 |
msgid "Hide username field"
|
1028 |
msgstr "Приховати поле з іменем користувача"
|
1029 |
|
1030 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
|
1031 |
msgid "Hide name field"
|
1032 |
msgstr "Приховати поле з іменем"
|
1033 |
|
1034 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1035 |
msgid "Hide email field"
|
1036 |
msgstr "Приховати поле ел. пошти"
|
1037 |
|
1038 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1039 |
msgid "Hide role field"
|
1040 |
msgstr "Приховати поле ролі"
|
1041 |
|
1042 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:671
|
1043 |
msgid "Hide website field"
|
1044 |
msgstr "Приховати поле веб-сайту"
|
1045 |
|
1046 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1047 |
msgid "Hide n. posts field"
|
1048 |
msgstr "Приховати поле з № допису"
|
1049 |
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
1051 |
msgid "WordPress hidden fields"
|
1052 |
msgstr "Приховані поля WordPress"
|
1053 |
|
1054 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
1055 |
+
#, fuzzy
|
1056 |
+
msgid "Show username"
|
1057 |
+
msgstr "Показати прізвище"
|
1058 |
+
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
|
1060 |
+
msgid "when unchecked the email address will be used as username"
|
1061 |
+
msgstr ""
|
1062 |
+
|
1063 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
|
1064 |
msgid "Show password"
|
1065 |
msgstr "Показати пароль"
|
1066 |
|
1067 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
1068 |
msgid "Show confirmation password"
|
1069 |
msgstr "Показати підтвердження пароля"
|
1070 |
|
1071 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
1072 |
msgid "Show password strength meter"
|
1073 |
msgstr "Показати оцінку сили пароля"
|
1074 |
|
1075 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
|
1076 |
msgid "Show first name"
|
1077 |
msgstr "Показати ім'я"
|
1078 |
|
1079 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
1080 |
msgid "Show last name"
|
1081 |
msgstr "Показати прізвище"
|
1082 |
|
1083 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
|
1084 |
msgid "Show nickname"
|
1085 |
msgstr "Показати прізвисько"
|
1086 |
|
1087 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
1088 |
msgid "Show website"
|
1089 |
msgstr "Показати веб-сайт"
|
1090 |
|
1091 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
1092 |
msgid "Show AIM"
|
1093 |
msgstr "Показати AIM"
|
1094 |
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:721
|
1096 |
msgid "Show Yahoo IM"
|
1097 |
msgstr "Показати Yahoo IM"
|
1098 |
|
1099 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
1100 |
msgid "Show Jabber / Google Talk"
|
1101 |
msgstr "Показати Jabber / Google Talk"
|
1102 |
|
1103 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:729
|
1104 |
msgid "Show Biographical Info"
|
1105 |
msgstr "Показати Біографічну Інформацію"
|
1106 |
|
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>Примітка:</strong> цей сайт дозволяє персоналізувати ваш пароль; після реєстрації ви отримаєте повідомлення ел. поштою з іншим паролем, не хвилюйтесь про це!"
|
1124 |
|
1125 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
|
1126 |
msgid "Password"
|
1127 |
msgstr "Пароль"
|
1128 |
|
1129 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:236
|
1130 |
msgid "Password confirmation"
|
1131 |
msgstr "Підтвердження пароля"
|
1132 |
|
1133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:258
|
1134 |
msgid "First name"
|
1135 |
msgstr "Ім'я"
|
1136 |
|
1137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
1138 |
msgid "Last name"
|
1139 |
msgstr "Прізвище"
|
1140 |
|
1141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
1142 |
msgid "Nickname"
|
1143 |
msgstr "Прізвисько"
|
1144 |
|
1145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:346
|
1146 |
msgid "AIM"
|
1147 |
msgstr "AIM"
|
1148 |
|
1149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:368
|
1150 |
msgid "Yahoo IM"
|
1151 |
msgstr "Yahoo IM"
|
1152 |
|
1153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:390
|
1154 |
msgid "Jabber / Google Talk"
|
1155 |
msgstr "Jabber / Google Talk"
|
1156 |
|
1157 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:412
|
1158 |
msgid "Biographical Info"
|
1159 |
msgstr "Біографічна Інформація"
|
1160 |
|
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.1
|
7 |
Tested up to: 3.5
|
8 |
-
Stable tag: 2.
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
@@ -49,6 +49,7 @@ future versions can have more.
|
|
49 |
* custom registration logo (non MS installations)
|
50 |
* email confirmation (non MS installations)
|
51 |
* form confirmation (non MS installations)
|
|
|
52 |
* much more!
|
53 |
|
54 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
@@ -86,10 +87,10 @@ The plug-in adds two new menu voices in the admin for the administrator and two
|
|
86 |
|
87 |
= Visualization rules: =
|
88 |
* field can be hidden during registration
|
89 |
-
[all]
|
90 |
|
91 |
* field can be hidden in user's profile
|
92 |
-
[all]
|
93 |
|
94 |
* field can be hidden in Users Extended page
|
95 |
[all]
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar, recaptcha, captcha
|
6 |
Requires at least: 3.1
|
7 |
Tested up to: 3.5
|
8 |
+
Stable tag: 2.5.0
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
49 |
* custom registration logo (non MS installations)
|
50 |
* email confirmation (non MS installations)
|
51 |
* form confirmation (non MS installations)
|
52 |
+
* username equal to the email address (non MS installations)
|
53 |
* much more!
|
54 |
|
55 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
87 |
|
88 |
= Visualization rules: =
|
89 |
* field can be hidden during registration
|
90 |
+
[all except the email address]
|
91 |
|
92 |
* field can be hidden in user's profile
|
93 |
+
[all except the WordPress fields]
|
94 |
|
95 |
* field can be hidden in Users Extended page
|
96 |
[all]
|