Version Description
Download this release
Release Info
Developer | Cimmo |
Plugin | Cimy User Extra Fields |
Version | 2.0.0-beta2 |
Comparing to | |
See all releases |
Code changes from version 2.0.0-beta1 to 2.0.0-beta2
- README_OFFICIAL.txt +11 -3
- cimy_uef_admin.php +51 -40
- cimy_uef_db.php +33 -0
- cimy_uef_email_handler.php +12 -5
- cimy_uef_options.php +49 -4
- cimy_uef_profile.php +2 -1
- cimy_uef_register.php +39 -4
- cimy_user_extra_fields.php +29 -2
- langs/cimy_uef-bg_BG.mo +0 -0
- langs/cimy_uef-bg_BG.po +311 -269
- langs/cimy_uef-da_DK.mo +0 -0
- langs/cimy_uef-da_DK.po +311 -269
- langs/cimy_uef-de_DE.mo +0 -0
- langs/cimy_uef-de_DE.po +310 -268
- langs/cimy_uef-es_ES.mo +0 -0
- langs/cimy_uef-es_ES.po +310 -268
- langs/cimy_uef-fr_FR.mo +0 -0
- langs/cimy_uef-fr_FR.po +311 -269
- langs/cimy_uef-it_IT.mo +0 -0
- langs/cimy_uef-it_IT.po +308 -266
- langs/cimy_uef-pl_PL.mo +0 -0
- langs/cimy_uef-pl_PL.po +308 -266
- langs/cimy_uef-pt_BR.mo +0 -0
- langs/cimy_uef-pt_BR.po +311 -269
- langs/cimy_uef-ru_RU.mo +0 -0
- langs/cimy_uef-ru_RU.po +311 -269
- langs/cimy_uef-sv_SE.mo +0 -0
- langs/cimy_uef-sv_SE.po +310 -268
- readme.txt +3 -3
- securimage/securimage_show_captcha.php +21 -0
README_OFFICIAL.txt
CHANGED
@@ -44,8 +44,8 @@ WordPress and WordPress MultiSite per-blog registration:
|
|
44 |
2. "Settings -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
|
45 |
|
46 |
Wordpress MultiSite unique registration:
|
47 |
-
1. "
|
48 |
-
2. "
|
49 |
|
50 |
Rules are:
|
51 |
|
@@ -110,7 +110,7 @@ If you want that ALL Blogs on your MultiSite installation follow the same regist
|
|
110 |
Every blog will have shared registration page and only the Super Admin can change it.
|
111 |
- unpack the package under 'wp-content/mu-plugins' directory (if this directory does not exist, create it);
|
112 |
- be sure that cimy_user_extra_fields.php is outside Cimy folder (move it if necessary);
|
113 |
-
- go to "
|
114 |
|
115 |
2) Per-Blog registration
|
116 |
If you want that every single Blog can define its own Extra Fields then you should choose this installation.
|
@@ -557,6 +557,14 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
|
|
557 |
|
558 |
|
559 |
CHANGELOG:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
560 |
v2.0.0 beta1 - 02/09/2010
|
561 |
- Added WordPress 3.0.x support
|
562 |
- Fixed MultiSite recognization
|
44 |
2. "Settings -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
|
45 |
|
46 |
Wordpress MultiSite unique registration:
|
47 |
+
1. "Super Admin -> Users Extended" - lets you show users lists with the new fields that are created
|
48 |
+
2. "Super Admin -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
|
49 |
|
50 |
Rules are:
|
51 |
|
110 |
Every blog will have shared registration page and only the Super Admin can change it.
|
111 |
- unpack the package under 'wp-content/mu-plugins' directory (if this directory does not exist, create it);
|
112 |
- be sure that cimy_user_extra_fields.php is outside Cimy folder (move it if necessary);
|
113 |
+
- go to "Super Admin -> Cimy User Extra Fields", press "Fix the problem" button and confirm.
|
114 |
|
115 |
2) Per-Blog registration
|
116 |
If you want that every single Blog can define its own Extra Fields then you should choose this installation.
|
557 |
|
558 |
|
559 |
CHANGELOG:
|
560 |
+
v2.0.0 beta2 - 22/09/2010
|
561 |
+
- Added Securimage Captcha support (thanks to Patrick McCain for sponsoring it)
|
562 |
+
- Added redirection support (non MS only) (thanks to Patrick McCain for sponsoring it)
|
563 |
+
- Fixed adding/updating a field is now more user-friendly
|
564 |
+
- Fixed uploading of any file should be forbidden during the registration if the confirmation email is turned on
|
565 |
+
- Fixed an user can't register again after admin deletion within 2 days if the email confirmation is turned on (non MS only)
|
566 |
+
- Fixed show permissions were not saved properly (causing checkboxes can't be unchecked anymore since v2.0.0-beta1) (thanks to Bak)
|
567 |
+
|
568 |
v2.0.0 beta1 - 02/09/2010
|
569 |
- Added WordPress 3.0.x support
|
570 |
- Fixed MultiSite recognization
|
cimy_uef_admin.php
CHANGED
@@ -245,7 +245,7 @@ function cimy_admin_define_extra_fields() {
|
|
245 |
$empty = $_POST['empty'][$field_order];
|
246 |
$empty == "1" ? $store_rule['can_be_empty'] = true : $store_rule['can_be_empty'] = false;
|
247 |
|
248 |
-
$store_rule['edit'] = $_POST['edit'
|
249 |
|
250 |
$email = $_POST['email'][$field_order];
|
251 |
$email == "1" ? $store_rule['email'] = true : $store_rule['email'] = false;
|
@@ -429,39 +429,7 @@ function cimy_admin_define_extra_fields() {
|
|
429 |
<?php
|
430 |
|
431 |
// print errors if there are some
|
432 |
-
|
433 |
-
?>
|
434 |
-
<div class="error">
|
435 |
-
<h3><?php _e("ERROR", $cimy_uef_domain); ?></h3>
|
436 |
-
<ul>
|
437 |
-
<?php
|
438 |
-
foreach ($errors as $error)
|
439 |
-
echo "<li>".$error."</li>";
|
440 |
-
?>
|
441 |
-
</ul>
|
442 |
-
<br />
|
443 |
-
</div>
|
444 |
-
<?php
|
445 |
-
}
|
446 |
-
?>
|
447 |
-
|
448 |
-
<?php
|
449 |
-
|
450 |
-
// print successes if there are some
|
451 |
-
if (count($results) > 0) {
|
452 |
-
?>
|
453 |
-
<div class="updated">
|
454 |
-
<h3><?php _e("SUCCESSFUL", $cimy_uef_domain); ?></h3>
|
455 |
-
<ul>
|
456 |
-
<?php
|
457 |
-
foreach ($results as $result)
|
458 |
-
echo "<li>".$result."</li>";
|
459 |
-
?>
|
460 |
-
</ul>
|
461 |
-
<br />
|
462 |
-
</div>
|
463 |
-
<?php
|
464 |
-
}
|
465 |
|
466 |
if ($store_rule['min_length'] == 0)
|
467 |
unset($store_rule['min_length']);
|
@@ -771,15 +739,24 @@ function cimy_admin_define_extra_fields() {
|
|
771 |
|
772 |
</div>
|
773 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
774 |
<?php
|
775 |
wp_print_scripts("cimy_uef_invert_sel");
|
776 |
$wp_fields = get_cimyFields(true);
|
777 |
|
778 |
-
cimy_admin_show_extra_fields($wp_fields, $submit_msgs, true);
|
779 |
-
cimy_admin_show_extra_fields($allFields, $submit_msgs, false);
|
780 |
}
|
781 |
|
782 |
-
function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
|
783 |
global $wpdb, $cimy_uef_domain, $rule_maxlen, $rule_email, $rule_canbeempty, $rule_equalto, $rule_equalto_case_sensitive, $available_types, $max_length_name, $max_length_label, $max_length_desc, $max_length_value, $max_size_file, $cimy_uef_file_types, $rule_equalto_regex;
|
784 |
|
785 |
if (!cimy_check_admin("manage_options"))
|
@@ -1069,8 +1046,8 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
|
|
1069 |
|
1070 |
$style = ('class="alternate"' == $style) ? '' : 'class="alternate"';
|
1071 |
?>
|
1072 |
-
|
1073 |
-
<tr <?php echo
|
1074 |
<td align="center" style="vertical-align: middle;">
|
1075 |
<input name="check[<?php echo $order ?>]" type="checkbox" value="<?php echo $order ?>" /><br /><br />
|
1076 |
<label><strong><?php _e("Order", $cimy_uef_domain); ?></strong><br />
|
@@ -1186,7 +1163,7 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
|
|
1186 |
<td align="center" style="vertical-align: middle;">
|
1187 |
<p class="submit" style="border-width: 0px;">
|
1188 |
<input name="reset" type="reset" value="<?php _e("Reset", $cimy_uef_domain); ?>" /><br /><br />
|
1189 |
-
<input class="button-primary" name="submit_edit[<?php echo $order ?>]" type="submit" value="<?php echo $edit_caption." #".$order ?>" /><br /><br />
|
1190 |
|
1191 |
<?php if (!$wp_fields) { ?>
|
1192 |
<input name="submit_del[<?php echo $order ?>]" type="submit" value="<?php echo $del_caption." #".$order ?>" onclick="return confirm('<?php echo $delete_fields_label; ?>');" />
|
@@ -1219,6 +1196,40 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
|
|
1219 |
<?php
|
1220 |
}
|
1221 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1222 |
function cimy_admin_users_list_page() {
|
1223 |
global $wpdb, $wp_roles, $wpdb_data_table, $cimy_uef_options, $cuef_upload_path, $cimy_uef_domain;
|
1224 |
|
245 |
$empty = $_POST['empty'][$field_order];
|
246 |
$empty == "1" ? $store_rule['can_be_empty'] = true : $store_rule['can_be_empty'] = false;
|
247 |
|
248 |
+
$store_rule['edit'] = $_POST['edit'][$field_order];
|
249 |
|
250 |
$email = $_POST['email'][$field_order];
|
251 |
$email == "1" ? $store_rule['email'] = true : $store_rule['email'] = false;
|
429 |
<?php
|
430 |
|
431 |
// print errors if there are some
|
432 |
+
cimy_uef_print_messages($errors, $results);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
433 |
|
434 |
if ($store_rule['min_length'] == 0)
|
435 |
unset($store_rule['min_length']);
|
739 |
|
740 |
</div>
|
741 |
|
742 |
+
<script type="text/javascript">
|
743 |
+
<!--//
|
744 |
+
function changeFormAction(form_id, tr_id) {
|
745 |
+
var element = document.getElementById(form_id);
|
746 |
+
element.action = '#'+tr_id;
|
747 |
+
}
|
748 |
+
//-->
|
749 |
+
</script>
|
750 |
+
|
751 |
<?php
|
752 |
wp_print_scripts("cimy_uef_invert_sel");
|
753 |
$wp_fields = get_cimyFields(true);
|
754 |
|
755 |
+
cimy_admin_show_extra_fields($wp_fields, $submit_msgs, true, $errors, $results, $wp_fields_post, $field_order);
|
756 |
+
cimy_admin_show_extra_fields($allFields, $submit_msgs, false, $errors, $results, $wp_fields_post, $field_order);
|
757 |
}
|
758 |
|
759 |
+
function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields, $errors, $results, $wp_fields_post, $field_order) {
|
760 |
global $wpdb, $cimy_uef_domain, $rule_maxlen, $rule_email, $rule_canbeempty, $rule_equalto, $rule_equalto_case_sensitive, $available_types, $max_length_name, $max_length_label, $max_length_desc, $max_length_value, $max_size_file, $cimy_uef_file_types, $rule_equalto_regex;
|
761 |
|
762 |
if (!cimy_check_admin("manage_options"))
|
1046 |
|
1047 |
$style = ('class="alternate"' == $style) ? '' : 'class="alternate"';
|
1048 |
?>
|
1049 |
+
<?php if (($field_order == $order) && ($wp_fields_post == $wp_fields)) { ?><tr <?php echo "id=\"".$field_anchor.$order."\""; ?>><td colspan="5"><?php cimy_uef_print_messages($errors, $results); ?></td></tr><?php } ?>
|
1050 |
+
<tr <?php echo $style; ?>>
|
1051 |
<td align="center" style="vertical-align: middle;">
|
1052 |
<input name="check[<?php echo $order ?>]" type="checkbox" value="<?php echo $order ?>" /><br /><br />
|
1053 |
<label><strong><?php _e("Order", $cimy_uef_domain); ?></strong><br />
|
1163 |
<td align="center" style="vertical-align: middle;">
|
1164 |
<p class="submit" style="border-width: 0px;">
|
1165 |
<input name="reset" type="reset" value="<?php _e("Reset", $cimy_uef_domain); ?>" /><br /><br />
|
1166 |
+
<input class="button-primary" name="submit_edit[<?php echo $order ?>]" type="submit" value="<?php echo $edit_caption." #".$order ?>" onclick="changeFormAction('<?php echo $form_id; ?>', '<?php echo $field_anchor.$order; ?>')" /><br /><br />
|
1167 |
|
1168 |
<?php if (!$wp_fields) { ?>
|
1169 |
<input name="submit_del[<?php echo $order ?>]" type="submit" value="<?php echo $del_caption." #".$order ?>" onclick="return confirm('<?php echo $delete_fields_label; ?>');" />
|
1196 |
<?php
|
1197 |
}
|
1198 |
|
1199 |
+
function cimy_uef_print_messages($errors, $results) {
|
1200 |
+
if (count($errors) > 0) {
|
1201 |
+
?>
|
1202 |
+
<div class="error inline">
|
1203 |
+
<h3><?php _e("ERROR", $cimy_uef_domain); ?></h3>
|
1204 |
+
<ul>
|
1205 |
+
<?php
|
1206 |
+
foreach ($errors as $error)
|
1207 |
+
echo "<li>".$error."</li>";
|
1208 |
+
?>
|
1209 |
+
</ul>
|
1210 |
+
</div>
|
1211 |
+
<?php
|
1212 |
+
}
|
1213 |
+
?>
|
1214 |
+
|
1215 |
+
<?php
|
1216 |
+
|
1217 |
+
// print successes if there are some
|
1218 |
+
if (count($results) > 0) {
|
1219 |
+
?>
|
1220 |
+
<div class="updated inline">
|
1221 |
+
<h3><?php _e("SUCCESSFUL", $cimy_uef_domain); ?></h3>
|
1222 |
+
<ul>
|
1223 |
+
<?php
|
1224 |
+
foreach ($results as $result)
|
1225 |
+
echo "<li>".$result."</li>";
|
1226 |
+
?>
|
1227 |
+
</ul>
|
1228 |
+
</div>
|
1229 |
+
<?php
|
1230 |
+
}
|
1231 |
+
}
|
1232 |
+
|
1233 |
function cimy_admin_users_list_page() {
|
1234 |
global $wpdb, $wp_roles, $wpdb_data_table, $cimy_uef_options, $cuef_upload_path, $cimy_uef_domain;
|
1235 |
|
cimy_uef_db.php
CHANGED
@@ -167,6 +167,38 @@ function cimy_plugin_install () {
|
|
167 |
}
|
168 |
}
|
169 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
$options['version'] = $cimy_uef_version;
|
171 |
|
172 |
cimy_set_options($options);
|
@@ -243,6 +275,7 @@ function cimy_manage_db($command) {
|
|
243 |
'aue_hidden_fields' => array('website', 'posts', 'email'),
|
244 |
'wp_hidden_fields' => array(),
|
245 |
'fieldset_title' => '',
|
|
|
246 |
);
|
247 |
|
248 |
switch ($command) {
|
167 |
}
|
168 |
}
|
169 |
|
170 |
+
if (version_compare($options['version'], "2.0.0-beta1", "<=") === true) {
|
171 |
+
if ($options["recaptcha"])
|
172 |
+
$options["captcha"] = "recaptcha";
|
173 |
+
else
|
174 |
+
$options["captcha"] = "none";
|
175 |
+
unset($options["recaptcha"]);
|
176 |
+
|
177 |
+
for ($i = 0; $i <= 1; $i++) {
|
178 |
+
if ($i == 0)
|
179 |
+
$the_table = $wpdb_wp_fields_table;
|
180 |
+
else
|
181 |
+
$the_table = $wpdb_fields_table;
|
182 |
+
|
183 |
+
$sql = "SELECT ID, RULES FROM ".$the_table;
|
184 |
+
$all_rules = $wpdb->get_results($sql, ARRAY_A);
|
185 |
+
|
186 |
+
if (isset($all_rules)) {
|
187 |
+
foreach ($all_rules as $rule) {
|
188 |
+
$rule_to_be_updated = unserialize($rule["RULES"]);
|
189 |
+
$rule_id = $rule["ID"];
|
190 |
+
|
191 |
+
// stupid bug introduced in v2.0.0-beta1
|
192 |
+
if (empty($rule_to_be_updated["edit"]))
|
193 |
+
$rule_to_be_updated["edit"] = "ok_edit";
|
194 |
+
|
195 |
+
$sql = "UPDATE ".$the_table." SET RULES='".$wpdb->escape(serialize($rule_to_be_updated))."' WHERE ID=".$rule_id;
|
196 |
+
$wpdb->query($sql);
|
197 |
+
}
|
198 |
+
}
|
199 |
+
}
|
200 |
+
}
|
201 |
+
|
202 |
$options['version'] = $cimy_uef_version;
|
203 |
|
204 |
cimy_set_options($options);
|
275 |
'aue_hidden_fields' => array('website', 'posts', 'email'),
|
276 |
'wp_hidden_fields' => array(),
|
277 |
'fieldset_title' => '',
|
278 |
+
'captcha' => 'none',
|
279 |
);
|
280 |
|
281 |
switch ($command) {
|
cimy_uef_email_handler.php
CHANGED
@@ -173,13 +173,20 @@ function cimy_signup_user_notification($user, $user_email, $key, $meta = '') {
|
|
173 |
if ( !apply_filters('wpmu_signup_user_notification', $user, $user_email, $key, $meta) )
|
174 |
return false;
|
175 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
// Send email with activation link.
|
177 |
$admin_email = get_site_option( 'admin_email' );
|
178 |
if ( $admin_email == '' )
|
179 |
$admin_email = 'support@' . $_SERVER['SERVER_NAME'];
|
180 |
$from_name = get_site_option( 'site_name' ) == '' ? 'WordPress' : esc_html( get_site_option( 'site_name' ) );
|
181 |
$message_headers = "From: \"{$from_name}\" <{$admin_email}>\n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n";
|
182 |
-
$message = sprintf( apply_filters( 'wpmu_signup_user_notification_email', __( "To activate your user, please click the following link:\n\n%s\n\nAfter you activate, you will receive *another email* with your login.\n\n" ) ), site_url( "wp-login.php?cimy_key=$key" ), $key );
|
183 |
// TODO: Don't hard code activation link.
|
184 |
$subject = sprintf( __( apply_filters( 'wpmu_signup_user_notification_subject', '[%1$s] Activate %2$s' ) ), $from_name, $user);
|
185 |
wp_mail($user_email, $subject, $message, $message_headers);
|
@@ -265,8 +272,8 @@ function cimy_check_user_on_signups($errors, $user_name, $user_email) {
|
|
265 |
$registered_at = mysql2date('U', $signup->registered);
|
266 |
$now = current_time( 'timestamp', true );
|
267 |
$diff = $now - $registered_at;
|
268 |
-
// If registered more than two days ago, cancel registration and let this signup go through.
|
269 |
-
if (
|
270 |
$wpdb->query( $wpdb->prepare("DELETE FROM ".$wpdb->prefix."signups WHERE user_login = %s", $user_name) );
|
271 |
else
|
272 |
$errors->add('user_name', __('That username is currently reserved but may be available in a couple of days.'));
|
@@ -278,8 +285,8 @@ function cimy_check_user_on_signups($errors, $user_name, $user_email) {
|
|
278 |
$signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE user_email = %s", $user_email) );
|
279 |
if ( $signup != null ) {
|
280 |
$diff = current_time( 'timestamp', true ) - mysql2date('U', $signup->registered);
|
281 |
-
// If registered more than two days ago, cancel registration and let this signup go through.
|
282 |
-
if (
|
283 |
$wpdb->query( $wpdb->prepare("DELETE FROM ".$wpdb->prefix."signups WHERE user_email = %s", $user_email) );
|
284 |
else
|
285 |
$errors->add('user_email', __('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.'));
|
173 |
if ( !apply_filters('wpmu_signup_user_notification', $user, $user_email, $key, $meta) )
|
174 |
return false;
|
175 |
|
176 |
+
$redirect_to = "";
|
177 |
+
// need to redirect?
|
178 |
+
if (!empty($_POST["redirect_to"])) {
|
179 |
+
$redirect_to = "&action=cimy_uef_redirect&redirect_to=".esc_attr($_POST["redirect_to"]);
|
180 |
+
unset($_POST["redirect_to"]);
|
181 |
+
}
|
182 |
+
|
183 |
// Send email with activation link.
|
184 |
$admin_email = get_site_option( 'admin_email' );
|
185 |
if ( $admin_email == '' )
|
186 |
$admin_email = 'support@' . $_SERVER['SERVER_NAME'];
|
187 |
$from_name = get_site_option( 'site_name' ) == '' ? 'WordPress' : esc_html( get_site_option( 'site_name' ) );
|
188 |
$message_headers = "From: \"{$from_name}\" <{$admin_email}>\n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n";
|
189 |
+
$message = sprintf( apply_filters( 'wpmu_signup_user_notification_email', __( "To activate your user, please click the following link:\n\n%s\n\nAfter you activate, you will receive *another email* with your login.\n\n" ) ), site_url( "wp-login.php?cimy_key=$key$redirect_to" ), $key );
|
190 |
// TODO: Don't hard code activation link.
|
191 |
$subject = sprintf( __( apply_filters( 'wpmu_signup_user_notification_subject', '[%1$s] Activate %2$s' ) ), $from_name, $user);
|
192 |
wp_mail($user_email, $subject, $message, $message_headers);
|
272 |
$registered_at = mysql2date('U', $signup->registered);
|
273 |
$now = current_time( 'timestamp', true );
|
274 |
$diff = $now - $registered_at;
|
275 |
+
// If registered more than two days ago or already approved and then deleted, cancel registration and let this signup go through.
|
276 |
+
if (($diff > 172800) || ($signup->active))
|
277 |
$wpdb->query( $wpdb->prepare("DELETE FROM ".$wpdb->prefix."signups WHERE user_login = %s", $user_name) );
|
278 |
else
|
279 |
$errors->add('user_name', __('That username is currently reserved but may be available in a couple of days.'));
|
285 |
$signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE user_email = %s", $user_email) );
|
286 |
if ( $signup != null ) {
|
287 |
$diff = current_time( 'timestamp', true ) - mysql2date('U', $signup->registered);
|
288 |
+
// If registered more than two days ago or already approved and then deleted, cancel registration and let this signup go through.
|
289 |
+
if (($diff > 172800) || ($signup->active))
|
290 |
$wpdb->query( $wpdb->prepare("DELETE FROM ".$wpdb->prefix."signups WHERE user_email = %s", $user_email) );
|
291 |
else
|
292 |
$errors->add('user_email', __('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.'));
|
cimy_uef_options.php
CHANGED
@@ -119,8 +119,11 @@ function cimy_save_options() {
|
|
119 |
(isset($_POST['confirm_email'])) ? $options['confirm_email'] = true : $options['confirm_email'] = false;
|
120 |
if ($options['confirm_email'])
|
121 |
cimy_force_signup_table_creation();
|
|
|
122 |
(isset($_POST['mail_include_fields'])) ? $options['mail_include_fields'] = true : $options['mail_include_fields'] = false;
|
123 |
-
|
|
|
|
|
124 |
|
125 |
if (isset($_POST['recaptcha_public_key'])) {
|
126 |
$options['recaptcha_public_key'] = trim($_POST['recaptcha_public_key']);
|
@@ -351,7 +354,7 @@ function cimy_show_options_notembedded() {
|
|
351 |
}
|
352 |
|
353 |
function cimy_show_options($results, $embedded) {
|
354 |
-
global $wpdb, $wpdb_wp_fields_table, $wpdb_fields_table, $wpdb_data_table, $max_length_fieldset_value, $cimy_uef_name, $cimy_uef_url, $cimy_project_url, $cimy_uef_version, $cimy_uef_domain, $cimy_top_menu, $max_length_extra_fields_title, $cuef_upload_path;
|
355 |
|
356 |
if (!cimy_check_admin('manage_options'))
|
357 |
return;
|
@@ -375,7 +378,10 @@ function cimy_show_options($results, $embedded) {
|
|
375 |
$options['fieldset_title'] = esc_attr($options['fieldset_title']);
|
376 |
$options['mail_include_fields'] ? $mail_include_fields = ' checked="checked"' : $mail_include_fields = '';
|
377 |
$options['confirm_email'] ? $confirm_email = ' checked="checked"' : $confirm_email = '';
|
378 |
-
$options['
|
|
|
|
|
|
|
379 |
isset($options['recaptcha_public_key']) ? $recaptcha_public_key = $options['recaptcha_public_key'] : $recaptcha_public_key = '';
|
380 |
isset($options['recaptcha_private_key']) ? $recaptcha_private_key = $options['recaptcha_private_key'] : $recaptcha_private_key = '';
|
381 |
|
@@ -406,9 +412,12 @@ function cimy_show_options($results, $embedded) {
|
|
406 |
$options['fieldset_title'] = "";
|
407 |
$mail_include_fields= '';
|
408 |
$confirm_email = '';
|
|
|
409 |
$recaptcha = '';
|
410 |
$recaptcha_public_key = '';
|
411 |
$recaptcha_private_key = '';
|
|
|
|
|
412 |
|
413 |
$aue_hide_username = '';
|
414 |
$aue_hide_name = '';
|
@@ -565,13 +574,34 @@ function cimy_show_options($results, $embedded) {
|
|
565 |
<td>
|
566 |
<?php
|
567 |
_e("user that registers should confirm its email address via a link click", $cimy_uef_domain);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
568 |
?>
|
569 |
</td>
|
570 |
</tr>
|
571 |
<?php } ?>
|
572 |
<tr>
|
573 |
<th scope="row">
|
574 |
-
<input type="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
<?php _e('Enable <a href="http://www.google.com/recaptcha" target="_blank">reCAPTCHA</a>', $cimy_uef_domain); ?></a>
|
576 |
</th>
|
577 |
<td>
|
@@ -585,6 +615,21 @@ function cimy_show_options($results, $embedded) {
|
|
585 |
<input type="text" name="recaptcha_private_key" value="<?php echo $recaptcha_private_key; ?>" size="40" />
|
586 |
</td>
|
587 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
588 |
<?php if (!is_multisite()) { ?>
|
589 |
<tr>
|
590 |
<th scope="row"><?php _e("Change login/registration page logo", $cimy_uef_domain); ?></th>
|
119 |
(isset($_POST['confirm_email'])) ? $options['confirm_email'] = true : $options['confirm_email'] = false;
|
120 |
if ($options['confirm_email'])
|
121 |
cimy_force_signup_table_creation();
|
122 |
+
(isset($_POST['redirect_to'])) ? $options['redirect_to'] = $_POST['redirect_to'] : $options['redirect_to'] = "";
|
123 |
(isset($_POST['mail_include_fields'])) ? $options['mail_include_fields'] = true : $options['mail_include_fields'] = false;
|
124 |
+
|
125 |
+
if (isset($_POST['captcha']))
|
126 |
+
$options['captcha'] = $_POST['captcha'];
|
127 |
|
128 |
if (isset($_POST['recaptcha_public_key'])) {
|
129 |
$options['recaptcha_public_key'] = trim($_POST['recaptcha_public_key']);
|
354 |
}
|
355 |
|
356 |
function cimy_show_options($results, $embedded) {
|
357 |
+
global $wpdb, $wpdb_wp_fields_table, $wpdb_fields_table, $wpdb_data_table, $max_length_fieldset_value, $cimy_uef_name, $cimy_uef_url, $cimy_project_url, $cimy_uef_version, $cimy_uef_domain, $cimy_top_menu, $max_length_extra_fields_title, $cuef_upload_path, $cuef_plugin_dir;
|
358 |
|
359 |
if (!cimy_check_admin('manage_options'))
|
360 |
return;
|
378 |
$options['fieldset_title'] = esc_attr($options['fieldset_title']);
|
379 |
$options['mail_include_fields'] ? $mail_include_fields = ' checked="checked"' : $mail_include_fields = '';
|
380 |
$options['confirm_email'] ? $confirm_email = ' checked="checked"' : $confirm_email = '';
|
381 |
+
$options['redirect_to'] == "source" ? $redirect_to_source = ' checked="checked"' : $redirect_to_source = '';
|
382 |
+
($options['captcha'] == "recaptcha") ? $recaptcha = ' checked="checked"' : $recaptcha = '';
|
383 |
+
($options['captcha'] == "securimage") ? $securimage = ' checked="checked"' : $securimage = '';
|
384 |
+
($options['captcha'] == "none") ? $no_captcha = ' checked="checked"' : $no_captcha = '';
|
385 |
isset($options['recaptcha_public_key']) ? $recaptcha_public_key = $options['recaptcha_public_key'] : $recaptcha_public_key = '';
|
386 |
isset($options['recaptcha_private_key']) ? $recaptcha_private_key = $options['recaptcha_private_key'] : $recaptcha_private_key = '';
|
387 |
|
412 |
$options['fieldset_title'] = "";
|
413 |
$mail_include_fields= '';
|
414 |
$confirm_email = '';
|
415 |
+
$redirect_to_source = '';
|
416 |
$recaptcha = '';
|
417 |
$recaptcha_public_key = '';
|
418 |
$recaptcha_private_key = '';
|
419 |
+
$securimage = '';
|
420 |
+
$no_captcha = ' checked="checked"';
|
421 |
|
422 |
$aue_hide_username = '';
|
423 |
$aue_hide_name = '';
|
574 |
<td>
|
575 |
<?php
|
576 |
_e("user that registers should confirm its email address via a link click", $cimy_uef_domain);
|
577 |
+
echo "<br />";
|
578 |
+
_e("<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar", $cimy_uef_domain);
|
579 |
+
?>
|
580 |
+
</td>
|
581 |
+
</tr>
|
582 |
+
<tr>
|
583 |
+
<th scope="row">
|
584 |
+
<input type="checkbox" name="redirect_to" value="source"<?php echo $redirect_to_source; ?> />
|
585 |
+
<?php _e("Redirect to the source", $cimy_uef_domain); ?>
|
586 |
+
</th>
|
587 |
+
<td>
|
588 |
+
<?php
|
589 |
+
_e("after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link", $cimy_uef_domain);
|
590 |
?>
|
591 |
</td>
|
592 |
</tr>
|
593 |
<?php } ?>
|
594 |
<tr>
|
595 |
<th scope="row">
|
596 |
+
<input type="radio" name="captcha" value="none"<?php echo $no_captcha; ?> />
|
597 |
+
<?php _e('No captcha', $cimy_uef_domain); ?></a>
|
598 |
+
</th>
|
599 |
+
<td>
|
600 |
+
</td>
|
601 |
+
</tr>
|
602 |
+
<tr>
|
603 |
+
<th scope="row">
|
604 |
+
<input type="radio" name="captcha" value="recaptcha"<?php echo $recaptcha; ?> />
|
605 |
<?php _e('Enable <a href="http://www.google.com/recaptcha" target="_blank">reCAPTCHA</a>', $cimy_uef_domain); ?></a>
|
606 |
</th>
|
607 |
<td>
|
615 |
<input type="text" name="recaptcha_private_key" value="<?php echo $recaptcha_private_key; ?>" size="40" />
|
616 |
</td>
|
617 |
</tr>
|
618 |
+
<tr>
|
619 |
+
<th scope="row">
|
620 |
+
<input type="radio" name="captcha" value="securimage"<?php echo $securimage; ?> />
|
621 |
+
<?php _e('Enable <a href="http://www.phpcaptcha.org/" target="_blank">Securimage Captcha</a>', $cimy_uef_domain); ?></a>
|
622 |
+
</th>
|
623 |
+
<td>
|
624 |
+
<?php _e('This captcha is probably weaker, but is easier for users', $cimy_uef_domain); ?>
|
625 |
+
<?php
|
626 |
+
if (!is_file($cuef_plugin_dir.'/securimage/securimage.php')) {
|
627 |
+
echo "<br />";
|
628 |
+
printf(__('<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>', $cimy_uef_domain), $cuef_plugin_dir.'/recaptcha/');
|
629 |
+
}
|
630 |
+
?>
|
631 |
+
</td>
|
632 |
+
</tr>
|
633 |
<?php if (!is_multisite()) { ?>
|
634 |
<tr>
|
635 |
<th scope="row"><?php _e("Change login/registration page logo", $cimy_uef_domain); ?></th>
|
cimy_uef_profile.php
CHANGED
@@ -536,6 +536,7 @@ function cimy_update_ExtraFields() {
|
|
536 |
}
|
537 |
|
538 |
if ((isset($_POST[$input_name])) && (!in_array($type, $cimy_uef_file_types))) {
|
|
|
539 |
if ($type == "dropdown-multi")
|
540 |
$field_value = stripslashes(implode(",", $_POST[$input_name]));
|
541 |
else
|
@@ -622,7 +623,7 @@ function cimy_update_ExtraFields() {
|
|
622 |
$query.= $value;
|
623 |
}
|
624 |
}
|
625 |
-
|
626 |
if ($type == 'checkbox') {
|
627 |
// if can be editable then write NO
|
628 |
// there is no way to understand if was YES or NO previously
|
536 |
}
|
537 |
|
538 |
if ((isset($_POST[$input_name])) && (!in_array($type, $cimy_uef_file_types))) {
|
539 |
+
echo $type;
|
540 |
if ($type == "dropdown-multi")
|
541 |
$field_value = stripslashes(implode(",", $_POST[$input_name]));
|
542 |
else
|
623 |
$query.= $value;
|
624 |
}
|
625 |
}
|
626 |
+
|
627 |
if ($type == 'checkbox') {
|
628 |
// if can be editable then write NO
|
629 |
// there is no way to understand if was YES or NO previously
|
cimy_uef_register.php
CHANGED
@@ -138,6 +138,10 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
|
|
138 |
continue;
|
139 |
}
|
140 |
|
|
|
|
|
|
|
|
|
141 |
if (isset($meta[$input_name]))
|
142 |
$data = stripslashes($meta[$input_name]);
|
143 |
else if (isset($_POST[$input_name])) {
|
@@ -328,6 +332,10 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
328 |
}
|
329 |
}
|
330 |
|
|
|
|
|
|
|
|
|
331 |
if ($_POST["from"] == "profile") {
|
332 |
// if editing a different user (only admin)
|
333 |
if (isset($_GET['user_id']))
|
@@ -511,6 +519,15 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
511 |
}
|
512 |
}
|
513 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
514 |
if (isset($_POST["recaptcha_response_field"])) {
|
515 |
$recaptcha_code_ok = false;
|
516 |
|
@@ -628,6 +645,10 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
628 |
}
|
629 |
}
|
630 |
|
|
|
|
|
|
|
|
|
631 |
if (isset($_POST[$post_input_name])) {
|
632 |
if ($type == "dropdown-multi")
|
633 |
$value = stripslashes(implode(",", $_POST[$post_input_name]));
|
@@ -903,7 +924,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
903 |
|
904 |
$i++;
|
905 |
}
|
906 |
-
|
907 |
if ($tiny_mce_objects != "") {
|
908 |
$mce_skin = "";
|
909 |
|
@@ -917,18 +938,32 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
917 |
require_once($cuef_plugin_dir.'/cimy_uef_init_strength_meter.php');
|
918 |
}
|
919 |
|
920 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
921 |
require_once($cuef_plugin_dir.'/recaptcha/recaptchalib.php');
|
922 |
|
923 |
?>
|
924 |
<script type='text/javascript'>
|
925 |
var RecaptchaOptions = {
|
926 |
lang: '<?php echo substr(get_locale(), 0, 2); ?>',
|
927 |
-
tabindex : <?php echo strval($tabindex); ?>
|
928 |
};
|
929 |
</script>
|
930 |
<?php
|
931 |
-
$tabindex++;
|
932 |
|
933 |
// no need if Tiny MCE is present already
|
934 |
if ($tiny_mce_objects == "") {
|
138 |
continue;
|
139 |
}
|
140 |
|
141 |
+
// uploading a file is not supported when confirmation email is enabled (on MS is turned on by default yes)
|
142 |
+
if (((is_multisite()) || ($options["confirm_email"])) && (in_array($type, $cimy_uef_file_types)))
|
143 |
+
continue;
|
144 |
+
|
145 |
if (isset($meta[$input_name]))
|
146 |
$data = stripslashes($meta[$input_name]);
|
147 |
else if (isset($_POST[$input_name])) {
|
332 |
}
|
333 |
}
|
334 |
|
335 |
+
// uploading a file is not supported when confirmation email is enabled (on MS is turned on by default yes)
|
336 |
+
if (((is_multisite()) || ($options["confirm_email"])) && (in_array($type, $cimy_uef_file_types)))
|
337 |
+
continue;
|
338 |
+
|
339 |
if ($_POST["from"] == "profile") {
|
340 |
// if editing a different user (only admin)
|
341 |
if (isset($_GET['user_id']))
|
519 |
}
|
520 |
}
|
521 |
|
522 |
+
if (isset($_POST["securimage_response_field"])) {
|
523 |
+
global $cuef_plugin_dir;
|
524 |
+
require_once($cuef_plugin_dir.'/securimage/securimage.php');
|
525 |
+
$securimage = new Securimage();
|
526 |
+
if ($securimage->check($_POST['securimage_response_field']) == false) {
|
527 |
+
$errors->add("securimage_code", '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.__('Typed code is not correct.', $cimy_uef_domain));
|
528 |
+
}
|
529 |
+
}
|
530 |
+
|
531 |
if (isset($_POST["recaptcha_response_field"])) {
|
532 |
$recaptcha_code_ok = false;
|
533 |
|
645 |
}
|
646 |
}
|
647 |
|
648 |
+
// uploading a file is not supported when confirmation email is enabled (on MS is turned on by default yes)
|
649 |
+
if (((is_multisite()) || ($options["confirm_email"])) && (in_array($type, $cimy_uef_file_types)))
|
650 |
+
continue;
|
651 |
+
|
652 |
if (isset($_POST[$post_input_name])) {
|
653 |
if ($type == "dropdown-multi")
|
654 |
$value = stripslashes(implode(",", $_POST[$post_input_name]));
|
924 |
|
925 |
$i++;
|
926 |
}
|
927 |
+
|
928 |
if ($tiny_mce_objects != "") {
|
929 |
$mce_skin = "";
|
930 |
|
938 |
require_once($cuef_plugin_dir.'/cimy_uef_init_strength_meter.php');
|
939 |
}
|
940 |
|
941 |
+
if ($options['captcha'] == "securimage") {
|
942 |
+
global $cuef_securimage_webpath;
|
943 |
+
?>
|
944 |
+
<div style="width: 278px; float: left; height: 80px; vertical-align: text-top;">
|
945 |
+
<img id="captcha" align="left" style="padding-right: 5px; border: 0" src="<?php echo $cuef_securimage_webpath; ?>securimage_show_captcha.php" alt="CAPTCHA Image" />
|
946 |
+
<object type="application/x-shockwave-flash" data="<?php echo $cuef_securimage_webpath; ?>securimage_play.swf?audio=<?php echo $cuef_securimage_webpath; ?>securimage_play.php&bgColor1=#fff&bgColor2=#fff&iconColor=#777&borderWidth=1&borderColor=#000" height="19" width="19"><param name="movie" value="<?php echo $cuef_securimage_webpath; ?>securimage_play.swf?audio=<?php echo $cuef_securimage_webpath; ?>securimage_play.php&bgColor1=#fff&bgColor2=#fff&iconColor=#777&borderWidth=1&borderColor=#000" /></object>
|
947 |
+
<br /><br /><br /><br />
|
948 |
+
<a align="right" tabindex="<?php echo $tabindex; $tabindex++; ?>" style="border-style: none" href="#" onclick="document.getElementById('captcha').src = '<?php echo $cuef_securimage_webpath; ?>securimage_show_captcha.php?' + Math.random(); return false"><img src="<?php echo $cuef_securimage_webpath; ?>/images/refresh.gif" alt="<?php _e("Change image", $cimy_uef_domain); ?>" border="0" onclick="this.blur()" align="bottom" /></a>
|
949 |
+
</div>
|
950 |
+
<div style="width: 278px; float: left; height: 50px; vertical-align: bottom; padding: 5px;">
|
951 |
+
<?php _e("Insert the code:", $cimy_uef_domain); ?> <input type="text" name="securimage_response_field" size="10" maxlength="6" tabindex="<?php echo $tabindex; $tabindex++; ?>" />
|
952 |
+
</div>
|
953 |
+
<?php
|
954 |
+
}
|
955 |
+
|
956 |
+
if (($options['captcha'] == "recaptcha") && (!empty($options['recaptcha_public_key'])) && (!empty($options['recaptcha_private_key']))) {
|
957 |
require_once($cuef_plugin_dir.'/recaptcha/recaptchalib.php');
|
958 |
|
959 |
?>
|
960 |
<script type='text/javascript'>
|
961 |
var RecaptchaOptions = {
|
962 |
lang: '<?php echo substr(get_locale(), 0, 2); ?>',
|
963 |
+
tabindex : <?php echo strval($tabindex); $tabindex++; ?>
|
964 |
};
|
965 |
</script>
|
966 |
<?php
|
|
|
967 |
|
968 |
// no need if Tiny MCE is present already
|
969 |
if ($tiny_mce_objects == "") {
|
cimy_user_extra_fields.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Cimy User Extra Fields
|
4 |
Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Plugin Description: Add some useful fields to registration and user's info
|
6 |
-
Version: 2.0.0-
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
*/
|
@@ -147,11 +147,13 @@ if (is_multisite()) {
|
|
147 |
$cuef_plugin_dir.= $cuef_plugin_path;
|
148 |
$cuef_css_webpath = WP_CONTENT_URL."/".$cimy_uef_plugins_dir."/".$cuef_plugin_path."css/";
|
149 |
$cuef_js_webpath = WP_CONTENT_URL."/".$cimy_uef_plugins_dir."/".$cuef_plugin_path."js/";
|
|
|
150 |
}
|
151 |
else {
|
152 |
$cuef_plugin_dir = WP_CONTENT_DIR."/plugins/".$cuef_plugin_path;
|
153 |
$cuef_css_webpath = WP_CONTENT_URL."/plugins/".$cuef_plugin_path."css/";
|
154 |
$cuef_js_webpath = WP_CONTENT_URL."/plugins/".$cuef_plugin_path."js/";
|
|
|
155 |
}
|
156 |
|
157 |
wp_register_script("cimy_uef_upload_file", $cuef_js_webpath."upload_file.js", false, false);
|
@@ -167,7 +169,7 @@ require_once($cuef_plugin_dir.'/cimy_uef_options.php');
|
|
167 |
require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
|
168 |
|
169 |
$cimy_uef_name = "Cimy User Extra Fields";
|
170 |
-
$cimy_uef_version = "2.0.0-
|
171 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
172 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
173 |
|
@@ -508,6 +510,31 @@ else {
|
|
508 |
|
509 |
// add update engine for extra fields to user's registration
|
510 |
add_action('user_register', 'cimy_register_user_extra_fields');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
511 |
}
|
512 |
|
513 |
function cimy_change_signup_location($url) {
|
3 |
Plugin Name: Cimy User Extra Fields
|
4 |
Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Plugin Description: Add some useful fields to registration and user's info
|
6 |
+
Version: 2.0.0-beta2
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
*/
|
147 |
$cuef_plugin_dir.= $cuef_plugin_path;
|
148 |
$cuef_css_webpath = WP_CONTENT_URL."/".$cimy_uef_plugins_dir."/".$cuef_plugin_path."css/";
|
149 |
$cuef_js_webpath = WP_CONTENT_URL."/".$cimy_uef_plugins_dir."/".$cuef_plugin_path."js/";
|
150 |
+
$cuef_securimage_webpath = WP_CONTENT_URL."/".$cimy_uef_plugins_dir."/".$cuef_plugin_path."securimage/";
|
151 |
}
|
152 |
else {
|
153 |
$cuef_plugin_dir = WP_CONTENT_DIR."/plugins/".$cuef_plugin_path;
|
154 |
$cuef_css_webpath = WP_CONTENT_URL."/plugins/".$cuef_plugin_path."css/";
|
155 |
$cuef_js_webpath = WP_CONTENT_URL."/plugins/".$cuef_plugin_path."js/";
|
156 |
+
$cuef_securimage_webpath = WP_CONTENT_URL."/plugins/".$cuef_plugin_path."securimage/";
|
157 |
}
|
158 |
|
159 |
wp_register_script("cimy_uef_upload_file", $cuef_js_webpath."upload_file.js", false, false);
|
169 |
require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
|
170 |
|
171 |
$cimy_uef_name = "Cimy User Extra Fields";
|
172 |
+
$cimy_uef_version = "2.0.0-beta2";
|
173 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
174 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
175 |
|
510 |
|
511 |
// add update engine for extra fields to user's registration
|
512 |
add_action('user_register', 'cimy_register_user_extra_fields');
|
513 |
+
|
514 |
+
// add filter to redirect after registration
|
515 |
+
add_filter('registration_redirect', 'cimy_uef_registration_redirect');
|
516 |
+
// this is needed only in the case where both redirection and email confirmation has been enabled
|
517 |
+
add_action('login_form_cimy_uef_redirect', 'cimy_uef_redirect');
|
518 |
+
}
|
519 |
+
|
520 |
+
function cimy_uef_registration_redirect($redirect_to) {
|
521 |
+
if (empty($redirect_to)) {
|
522 |
+
$options = cimy_get_options();
|
523 |
+
|
524 |
+
if ($options["redirect_to"] == "source")
|
525 |
+
$redirect_to = esc_attr($_SERVER["HTTP_REFERER"]);
|
526 |
+
}
|
527 |
+
|
528 |
+
return $redirect_to;
|
529 |
+
}
|
530 |
+
|
531 |
+
function cimy_uef_redirect() {
|
532 |
+
if (isset($_GET["cimy_key"]))
|
533 |
+
cimy_uef_activate("");
|
534 |
+
|
535 |
+
if (!empty($_REQUEST["redirect_to"]))
|
536 |
+
wp_safe_redirect($_REQUEST["redirect_to"]);
|
537 |
+
|
538 |
}
|
539 |
|
540 |
function cimy_change_signup_location($url) {
|
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: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,104 +16,115 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
|
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
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/
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:567
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:435
|
33 |
msgid "ERROR"
|
34 |
msgstr "ГРЕШКА"
|
35 |
|
36 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
37 |
msgid "does not match."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
41 |
msgid "hasn’t a correct email syntax."
|
42 |
msgstr "няма правилен email синтаксис."
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
45 |
msgid "couldn’t be empty."
|
46 |
msgstr "не може да е празно."
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
msgid "isn’t correct"
|
51 |
msgstr "не е правилно"
|
52 |
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
54 |
msgid "YES"
|
55 |
msgstr "ДА"
|
56 |
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
msgid "NO"
|
59 |
msgstr "НЕ"
|
60 |
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
62 |
msgid "should be"
|
63 |
msgstr "трябва да е"
|
64 |
|
65 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
66 |
msgid "should be an image."
|
67 |
msgstr "трябва да е снимка."
|
68 |
|
69 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
70 |
msgid "couldn’t have size less than"
|
71 |
msgstr "не може да е с по-малък размер от"
|
72 |
|
73 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
74 |
msgid "couldn’t have length less than"
|
75 |
msgstr "не може да има по-малка дължина от"
|
76 |
|
77 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
78 |
msgid "couldn’t have size different than"
|
79 |
msgstr "не може да има размер различен от"
|
80 |
|
81 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
82 |
msgid "couldn’t have length different than"
|
83 |
msgstr "не може да има дължина различна от"
|
84 |
|
85 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
86 |
msgid "couldn’t have size more than"
|
87 |
msgstr "не може да има размер по-голям от"
|
88 |
|
89 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
90 |
msgid "couldn’t have length more than"
|
91 |
msgstr "не може да има дължина по-голяма от"
|
92 |
|
93 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
94 |
msgid "Typed code is not correct."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
98 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
99 |
#, fuzzy
|
100 |
msgid "Please upload a file with one of the following extensions"
|
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_options.php:
|
105 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
106 |
msgid "Please upload an image with one of the following extensions"
|
107 |
msgstr "Моля качете снимка с някое от тези разширения"
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
msgid "Strength indicator"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
114 |
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 ! \\\" ? $ % ^ & )."
|
115 |
msgstr ""
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
118 |
#, fuzzy
|
119 |
msgid "no fieldset"
|
@@ -151,281 +162,310 @@ msgstr "Вариантите са сменени по подразбиране"
|
|
151 |
msgid "Options deleted"
|
152 |
msgstr "Вариантите са изтрити"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
155 |
msgid "Options changed"
|
156 |
msgstr "Вариантите са променени"
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
159 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
164 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
165 |
msgid "Options"
|
166 |
msgstr "Настройки"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
169 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
170 |
msgid "Add a new Field"
|
171 |
msgstr "Добави друго поле"
|
172 |
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
175 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
176 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
177 |
msgid "Extra Fields"
|
178 |
msgstr "Допълнителни полета"
|
179 |
|
180 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
181 |
msgid "Support the Cimy Project"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
185 |
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!"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
msgid "SUCCESSFUL"
|
191 |
msgstr "УСПЕХ"
|
192 |
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
195 |
msgid "Save Changes"
|
196 |
msgstr "Запази промените"
|
197 |
|
198 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
199 |
msgid "General"
|
200 |
msgstr "Общи"
|
201 |
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
203 |
msgid "installed is"
|
204 |
msgstr "инсталирано е"
|
205 |
|
206 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
207 |
msgid "OPTIONS DELETED!"
|
208 |
msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
|
209 |
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
msgid "Fix the problem"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
216 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
217 |
msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
220 |
msgid "Picture/Avatar upload"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
msgid "is created and writable"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
228 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
232 |
#, fuzzy
|
233 |
msgid "Show all fields in the welcome email"
|
234 |
msgstr "Покажи полето при регистрация"
|
235 |
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
237 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
241 |
msgid "Enable email confirmation"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
245 |
msgid "user that registers should confirm its email address via a link click"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
253 |
msgid "Public KEY"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
257 |
msgid "Private KEY"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
msgid "Change login/registration page logo"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
265 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
266 |
#, fuzzy
|
267 |
msgid "Delete the picture"
|
268 |
msgstr "Изтрий поле"
|
269 |
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
271 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
275 |
msgid "Database"
|
276 |
msgstr "База данни"
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
279 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
280 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
msgid "select action"
|
283 |
msgstr "избери действие"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
286 |
msgid "Default values"
|
287 |
msgstr "Стойност по подразбиране"
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
291 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
292 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
293 |
msgid "Delete"
|
294 |
msgstr "Изтрий"
|
295 |
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
299 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
300 |
msgid "NOT PRESENT"
|
301 |
msgstr "НЕ СЪЩЕСТВУВА"
|
302 |
|
303 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
304 |
msgid "WordPress Fields table"
|
305 |
msgstr "Таблица с WordPress полета"
|
306 |
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
310 |
msgid "Empty"
|
311 |
msgstr "Празно"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
314 |
msgid "Extra Fields table"
|
315 |
msgstr "Таблица с допълнителни полета"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
318 |
msgid "Users Data table"
|
319 |
msgstr "Таблица с потребителски данни"
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
322 |
msgid "all data inserted by users in all and only extra fields"
|
323 |
msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
msgid "Force tables creation"
|
327 |
msgstr "Задължително създаване на таблица"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
330 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
334 |
msgid "User Profile"
|
335 |
msgstr "Потребителски профил"
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
338 |
#, fuzzy
|
339 |
msgid "Extra Fields section title"
|
340 |
msgstr "Таблица с допълнителни полета"
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
343 |
msgid "Fieldset's titles, separates with comma"
|
344 |
msgstr "Заглавията на колекция разделени със запетайка"
|
345 |
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
347 |
msgid "example: title1,title2,title3"
|
348 |
msgstr "пример: заглавие1,заглавие2,заглавие3"
|
349 |
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
351 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
357 |
msgid "Authors & Users Extended"
|
358 |
msgstr "Автори & Потребители с разширения"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
361 |
msgid "Hide username field"
|
362 |
msgstr "Скрий полето за потребителско име"
|
363 |
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
365 |
msgid "Hide name field"
|
366 |
msgstr "Скрий полето за име"
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
369 |
msgid "Hide email field"
|
370 |
msgstr "Скрий полето за email"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
373 |
msgid "Hide role field"
|
374 |
msgstr "Скрий полето за роля"
|
375 |
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
377 |
msgid "Hide website field"
|
378 |
msgstr "Скрий полето за интернет сайт"
|
379 |
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
381 |
msgid "Hide n. posts field"
|
382 |
msgstr "Скрий полето за брой постове"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
385 |
msgid "WordPress hidden fields"
|
386 |
msgstr "Скрити полета на WordPress"
|
387 |
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
389 |
msgid "Show password"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
393 |
msgid "Show confirmation password"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
397 |
msgid "Show password strength meter"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
401 |
msgid "Show first name"
|
402 |
msgstr "Покажи първото име"
|
403 |
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
405 |
msgid "Show last name"
|
406 |
msgstr "Покажи второто име"
|
407 |
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
409 |
msgid "Show nickname"
|
410 |
msgstr "Покажи потребителското име"
|
411 |
|
412 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
413 |
msgid "Show website"
|
414 |
msgstr "Покажи интернет сайта"
|
415 |
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
417 |
msgid "Show AIM"
|
418 |
msgstr "Покажи AIM"
|
419 |
|
420 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
421 |
msgid "Show Yahoo IM"
|
422 |
msgstr "Покажи Yahoo IM"
|
423 |
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
425 |
msgid "Show Jabber / Google Talk"
|
426 |
msgstr "Покажи Jabber / Google Talk"
|
427 |
|
428 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
429 |
msgid "Show Biographical Info"
|
430 |
msgstr ""
|
431 |
|
@@ -457,8 +497,8 @@ msgid "Nickname"
|
|
457 |
msgstr "Име"
|
458 |
|
459 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
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 "Website"
|
463 |
msgstr "Интернет сайт"
|
464 |
|
@@ -480,17 +520,17 @@ msgstr "Покажи Jabber / Google Talk"
|
|
480 |
msgid "Biographical Info"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
484 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
485 |
msgid "Fields"
|
486 |
msgstr "Полета"
|
487 |
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
489 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
490 |
msgid "A&U Extended"
|
491 |
msgstr "А&П с разширения"
|
492 |
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
494 |
#, fuzzy
|
495 |
msgid "Users Extended"
|
496 |
msgstr "Разширен списък с Автори & Потребители"
|
@@ -509,44 +549,65 @@ msgstr ""
|
|
509 |
msgid "File '%s' is not an image."
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
513 |
#, php-format
|
514 |
msgid "New user registration on your site %s:"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
519 |
#, fuzzy, php-format
|
520 |
msgid "Username: %s"
|
521 |
msgstr "Потребителско име"
|
522 |
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
524 |
#, fuzzy, php-format
|
525 |
msgid "E-mail: %s"
|
526 |
msgstr "e-mail: %s"
|
527 |
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
529 |
#, php-format
|
530 |
msgid "[%s] New User Registration"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
534 |
#, php-format
|
535 |
msgid "Password: %s"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
539 |
#, php-format
|
540 |
msgid "[%s] Your username and password"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
545 |
#, php-format
|
546 |
msgid "%s: %s"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
"To activate your user, please click the following link:\n"
|
@@ -557,76 +618,57 @@ msgid ""
|
|
557 |
"\n"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
562 |
msgid "Your account is now active!"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
566 |
#, php-format
|
567 |
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>."
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
571 |
msgid "An error occurred during the activation"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
575 |
#, fuzzy
|
576 |
msgid "Username:"
|
577 |
msgstr "Потребителско име"
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
580 |
msgid "Password:"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
584 |
msgid "Invalid activation key."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
588 |
msgid "The site is already active."
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
592 |
msgid "Could not create user"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
596 |
msgid "That username is already activated."
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
600 |
msgid "That username is currently reserved but may be available in a couple of days."
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
604 |
msgid "username and email used"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
608 |
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."
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
612 |
-
#, fuzzy
|
613 |
-
msgid "Delete the file"
|
614 |
-
msgstr "Изтрий поле"
|
615 |
-
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
617 |
-
#, fuzzy
|
618 |
-
msgid "Update the file"
|
619 |
-
msgstr "Поднови поле"
|
620 |
-
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
622 |
-
#, fuzzy
|
623 |
-
msgid "Update the picture"
|
624 |
-
msgstr "Поднови поле"
|
625 |
-
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
627 |
-
msgid "Picture URL:"
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
631 |
msgid "Add field"
|
632 |
msgstr "Добави поле"
|
@@ -648,17 +690,17 @@ msgid "Change order"
|
|
648 |
msgstr "Смени реда"
|
649 |
|
650 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
651 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
652 |
msgid "Min length"
|
653 |
msgstr "Минимална дължина"
|
654 |
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
657 |
msgid "Exact length"
|
658 |
msgstr "Точна дължина"
|
659 |
|
660 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
661 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
662 |
msgid "Max length"
|
663 |
msgstr "Максимална дължина"
|
664 |
|
@@ -688,17 +730,17 @@ msgid "deleted correctly"
|
|
688 |
msgstr "изтрит успешно"
|
689 |
|
690 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
692 |
msgid "Min size"
|
693 |
msgstr "Минимален размер"
|
694 |
|
695 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
697 |
msgid "Exact size"
|
698 |
msgstr "Точен размер"
|
699 |
|
700 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
702 |
msgid "Max size"
|
703 |
msgstr "Максимален размер"
|
704 |
|
@@ -773,276 +815,276 @@ msgstr "подновено успешно"
|
|
773 |
msgid "Name inserted is just in the database, change to another one"
|
774 |
msgstr "Въведеното име е в базата данни, променето го"
|
775 |
|
776 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
777 |
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."
|
778 |
msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
|
779 |
|
780 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
781 |
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'"
|
782 |
msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
|
783 |
|
784 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
785 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
786 |
msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
|
787 |
|
788 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
789 |
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"
|
790 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
791 |
|
792 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
793 |
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)"
|
794 |
msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
|
795 |
|
796 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
797 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
798 |
msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
|
799 |
|
800 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
801 |
#, fuzzy
|
802 |
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"
|
803 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
804 |
|
805 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
806 |
#, fuzzy
|
807 |
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"
|
808 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
813 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
msgid "Name"
|
817 |
msgstr "Име"
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
821 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
msgid "Value"
|
824 |
msgstr "Стойност"
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
829 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
830 |
msgid "Type"
|
831 |
msgstr "Тип"
|
832 |
|
833 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
837 |
msgid "Label"
|
838 |
msgstr "Етикет"
|
839 |
|
|
|
840 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
844 |
msgid "Description"
|
845 |
msgstr "Описание"
|
846 |
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
msgid "Rules"
|
850 |
msgstr "Правила"
|
851 |
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
msgid "Actions"
|
855 |
msgstr "Действия"
|
856 |
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
#, fuzzy
|
860 |
msgid "Fieldset"
|
861 |
msgstr "Полета"
|
862 |
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
864 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
865 |
msgid "Can be empty"
|
866 |
msgstr "Може да е празно"
|
867 |
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
870 |
msgid "Check for E-mail syntax"
|
871 |
msgstr "Провери за Email синтаксис"
|
872 |
|
873 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
874 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
875 |
msgid "Can be modified"
|
876 |
msgstr "Може да бъде променяно"
|
877 |
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
880 |
msgid "Can be modified only if empty"
|
881 |
msgstr "Може да бъде променяно само ако е празно"
|
882 |
|
883 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
885 |
msgid "Can be modified only by admin"
|
886 |
msgstr "Може да бъде променяно само от администратора"
|
887 |
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
890 |
msgid "Can be modified only by admin or if empty"
|
891 |
msgstr "Може да бъде променяно само от администратора или ако е празно"
|
892 |
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
895 |
msgid "Cannot be modified"
|
896 |
msgstr "Не може да бъде променяно"
|
897 |
|
898 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
899 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
900 |
msgid "Should be equal TO"
|
901 |
msgstr "Би трябвало да е равно НА"
|
902 |
|
903 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
905 |
msgid "Case sensitive"
|
906 |
msgstr "Различават се големи и малко букви"
|
907 |
|
908 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
910 |
msgid "Regular Expression"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
914 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
915 |
msgid "Show the field in the registration"
|
916 |
msgstr "Покажи полето при регистрация"
|
917 |
|
918 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
919 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
920 |
msgid "Show the field in User's profile"
|
921 |
msgstr "Покажи полето в профила на потребителя"
|
922 |
|
923 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
925 |
msgid "Show the field in A&U Extended menu"
|
926 |
msgstr "Покажи полето в A&П разширеното меню"
|
927 |
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
#, fuzzy
|
931 |
msgid "Show the field in the search engine"
|
932 |
msgstr "Покажи полето при регистрация"
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
#, fuzzy
|
937 |
msgid "Show the field in the blog"
|
938 |
msgstr "Покажи полето при регистрация"
|
939 |
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
942 |
#, fuzzy
|
943 |
msgid "Show the field if the role is at least:"
|
944 |
msgstr "Покажи полето при регистрация"
|
945 |
|
946 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
948 |
msgid "Anonymous"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
952 |
msgid "Clear"
|
953 |
msgstr "Изчисти"
|
954 |
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
msgid "Invert selection"
|
957 |
msgstr "Обърни избора"
|
958 |
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
961 |
msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
|
962 |
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
964 |
msgid "WordPress Fields"
|
965 |
msgstr "WordPress полета"
|
966 |
|
967 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
968 |
msgid "None!"
|
969 |
msgstr "Няма!"
|
970 |
|
971 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
973 |
msgid "Order"
|
974 |
msgstr "Подреди"
|
975 |
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
977 |
msgid "Reset"
|
978 |
msgstr "Отмени"
|
979 |
|
980 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
981 |
#, fuzzy
|
982 |
msgid "select"
|
983 |
msgstr "Изтрий"
|
984 |
|
985 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
986 |
#, php-format
|
987 |
msgid "Users Matching \"%s\""
|
988 |
msgstr "Потребители отговарящи на \"%s\""
|
989 |
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
991 |
#, fuzzy
|
992 |
msgid "Users Extended List"
|
993 |
msgstr "Разширен списък с Автори & Потребители"
|
994 |
|
995 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
996 |
msgid "Authors & Users Extended List"
|
997 |
msgstr "Разширен списък с Автори & Потребители"
|
998 |
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1000 |
#, php-format
|
1001 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1005 |
msgid "Search Users"
|
1006 |
msgstr "Търсене на потребители"
|
1007 |
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1009 |
msgid "« Back to All Users"
|
1010 |
msgstr "« Назад към Всички потребители"
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1013 |
#, fuzzy
|
1014 |
msgid "Users per page"
|
1015 |
msgstr "Таблица с потребителски данни"
|
1016 |
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1018 |
msgid "Apply"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1023 |
msgid "Username"
|
1024 |
msgstr "Потребителско име"
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1027 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1028 |
msgid "E-mail"
|
1029 |
msgstr "E-mail"
|
1030 |
|
1031 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1033 |
msgid "Role"
|
1034 |
msgstr "Роля"
|
1035 |
|
1036 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1037 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1038 |
msgid "Posts"
|
1039 |
msgstr "Постове"
|
1040 |
|
1041 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1042 |
msgid "View posts by this author"
|
1043 |
msgstr "Виж постовете на този автор"
|
1044 |
|
1045 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1046 |
#, php-format
|
1047 |
msgid "e-mail: %s"
|
1048 |
msgstr "e-mail: %s"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-09-21 00:22+0300\n"
|
6 |
+
"PO-Revision-Date: 2010-09-21 00:22+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:442
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
27 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
|
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "ГРЕШКА"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "няма правилен email синтаксис."
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "не може да е празно."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:441
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "не е правилно"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
55 |
msgid "YES"
|
56 |
msgstr "ДА"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
59 |
msgid "NO"
|
60 |
msgstr "НЕ"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
63 |
msgid "should be"
|
64 |
msgstr "трябва да е"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
67 |
msgid "should be an image."
|
68 |
msgstr "трябва да е снимка."
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "не може да е с по-малък размер от"
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "не може да има по-малка дължина от"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "не може да има размер различен от"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "не може да има дължина различна от"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "не може да има размер по-голям от"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "не може да има дължина по-голяма от"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:824
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Моля качете снимка с някое от тези разширения"
|
104 |
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:369
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Моля качете снимка с някое от тези разширения"
|
110 |
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:910
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:911
|
116 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \\\" ? $ % ^ & )."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:948
|
120 |
+
#, fuzzy
|
121 |
+
msgid "Change image"
|
122 |
+
msgstr "Смени реда"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:951
|
125 |
+
msgid "Insert the code:"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
162 |
msgid "Options deleted"
|
163 |
msgstr "Вариантите са изтрити"
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:345
|
166 |
msgid "Options changed"
|
167 |
msgstr "Вариантите са променени"
|
168 |
|
169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:472
|
170 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
174 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:726
|
176 |
msgid "Options"
|
177 |
msgstr "Настройки"
|
178 |
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
180 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
181 |
msgid "Add a new Field"
|
182 |
msgstr "Добави друго поле"
|
183 |
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:796
|
186 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:249
|
188 |
msgid "Extra Fields"
|
189 |
msgstr "Допълнителни полета"
|
190 |
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
192 |
msgid "Support the Cimy Project"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
196 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:508
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1221
|
201 |
msgid "SUCCESSFUL"
|
202 |
msgstr "УСПЕХ"
|
203 |
|
204 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
206 |
msgid "Save Changes"
|
207 |
msgstr "Запази промените"
|
208 |
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:522
|
210 |
msgid "General"
|
211 |
msgstr "Общи"
|
212 |
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
214 |
msgid "installed is"
|
215 |
msgstr "инсталирано е"
|
216 |
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
218 |
msgid "OPTIONS DELETED!"
|
219 |
msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:542
|
223 |
msgid "Fix the problem"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
227 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
228 |
msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
|
229 |
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
231 |
msgid "Picture/Avatar upload"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:552
|
235 |
msgid "is created and writable"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
239 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
243 |
#, fuzzy
|
244 |
msgid "Show all fields in the welcome email"
|
245 |
msgstr "Покажи полето при регистрация"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
248 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
|
252 |
msgid "Enable email confirmation"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:577
|
256 |
msgid "user that registers should confirm its email address via a link click"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
|
260 |
+
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
264 |
+
msgid "Redirect to the source"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:590
|
268 |
+
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
272 |
+
msgid "No captcha"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
|
276 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:610
|
280 |
msgid "Public KEY"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
284 |
msgid "Private KEY"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:622
|
288 |
+
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
292 |
+
msgid "This captcha is probably weaker, but is easier for users"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
296 |
+
#, php-format
|
297 |
+
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:636
|
301 |
msgid "Change login/registration page logo"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:641
|
305 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
306 |
#, fuzzy
|
307 |
msgid "Delete the picture"
|
308 |
msgstr "Изтрий поле"
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
311 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
|
315 |
msgid "Database"
|
316 |
msgstr "База данни"
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:677
|
320 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
322 |
msgid "select action"
|
323 |
msgstr "избери действие"
|
324 |
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:660
|
326 |
msgid "Default values"
|
327 |
msgstr "Стойност по подразбиране"
|
328 |
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:698
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
|
333 |
msgid "Delete"
|
334 |
msgstr "Изтрий"
|
335 |
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:702
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
340 |
msgid "NOT PRESENT"
|
341 |
msgstr "НЕ СЪЩЕСТВУВА"
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
344 |
msgid "WordPress Fields table"
|
345 |
msgstr "Таблица с WordPress полета"
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:678
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
|
350 |
msgid "Empty"
|
351 |
msgstr "Празно"
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
354 |
msgid "Extra Fields table"
|
355 |
msgstr "Таблица с допълнителни полета"
|
356 |
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
358 |
msgid "Users Data table"
|
359 |
msgstr "Таблица с потребителски данни"
|
360 |
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
362 |
msgid "all data inserted by users in all and only extra fields"
|
363 |
msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
|
364 |
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
366 |
msgid "Force tables creation"
|
367 |
msgstr "Задължително създаване на таблица"
|
368 |
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
370 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
374 |
msgid "User Profile"
|
375 |
msgstr "Потребителски профил"
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
378 |
#, fuzzy
|
379 |
msgid "Extra Fields section title"
|
380 |
msgstr "Таблица с допълнителни полета"
|
381 |
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
383 |
msgid "Fieldset's titles, separates with comma"
|
384 |
msgstr "Заглавията на колекция разделени със запетайка"
|
385 |
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
387 |
msgid "example: title1,title2,title3"
|
388 |
msgstr "пример: заглавие1,заглавие2,заглавие3"
|
389 |
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
391 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:747
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
397 |
msgid "Authors & Users Extended"
|
398 |
msgstr "Автори & Потребители с разширения"
|
399 |
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
|
401 |
msgid "Hide username field"
|
402 |
msgstr "Скрий полето за потребителско име"
|
403 |
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
405 |
msgid "Hide name field"
|
406 |
msgstr "Скрий полето за име"
|
407 |
|
408 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:762
|
409 |
msgid "Hide email field"
|
410 |
msgstr "Скрий полето за email"
|
411 |
|
412 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
413 |
msgid "Hide role field"
|
414 |
msgstr "Скрий полето за роля"
|
415 |
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
417 |
msgid "Hide website field"
|
418 |
msgstr "Скрий полето за интернет сайт"
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:774
|
421 |
msgid "Hide n. posts field"
|
422 |
msgstr "Скрий полето за брой постове"
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
|
425 |
msgid "WordPress hidden fields"
|
426 |
msgstr "Скрити полета на WordPress"
|
427 |
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
429 |
msgid "Show password"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
433 |
msgid "Show confirmation password"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:790
|
437 |
msgid "Show password strength meter"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:794
|
441 |
msgid "Show first name"
|
442 |
msgstr "Покажи първото име"
|
443 |
|
444 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:798
|
445 |
msgid "Show last name"
|
446 |
msgstr "Покажи второто име"
|
447 |
|
448 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:802
|
449 |
msgid "Show nickname"
|
450 |
msgstr "Покажи потребителското име"
|
451 |
|
452 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:806
|
453 |
msgid "Show website"
|
454 |
msgstr "Покажи интернет сайта"
|
455 |
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:810
|
457 |
msgid "Show AIM"
|
458 |
msgstr "Покажи AIM"
|
459 |
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:814
|
461 |
msgid "Show Yahoo IM"
|
462 |
msgstr "Покажи Yahoo IM"
|
463 |
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:818
|
465 |
msgid "Show Jabber / Google Talk"
|
466 |
msgstr "Покажи Jabber / Google Talk"
|
467 |
|
468 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:822
|
469 |
msgid "Show Biographical Info"
|
470 |
msgstr ""
|
471 |
|
497 |
msgstr "Име"
|
498 |
|
499 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
500 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
502 |
msgid "Website"
|
503 |
msgstr "Интернет сайт"
|
504 |
|
520 |
msgid "Biographical Info"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:727
|
524 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
525 |
msgid "Fields"
|
526 |
msgstr "Полета"
|
527 |
|
528 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
530 |
msgid "A&U Extended"
|
531 |
msgstr "А&П с разширения"
|
532 |
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:732
|
534 |
#, fuzzy
|
535 |
msgid "Users Extended"
|
536 |
msgstr "Разширен списък с Автори & Потребители"
|
549 |
msgid "File '%s' is not an image."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
553 |
+
#, fuzzy
|
554 |
+
msgid "Delete the file"
|
555 |
+
msgstr "Изтрий поле"
|
556 |
+
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
558 |
+
#, fuzzy
|
559 |
+
msgid "Update the file"
|
560 |
+
msgstr "Поднови поле"
|
561 |
+
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
563 |
+
#, fuzzy
|
564 |
+
msgid "Update the picture"
|
565 |
+
msgstr "Поднови поле"
|
566 |
+
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
568 |
+
msgid "Picture URL:"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:38
|
572 |
#, php-format
|
573 |
msgid "New user registration on your site %s:"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:39
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:50
|
578 |
#, fuzzy, php-format
|
579 |
msgid "Username: %s"
|
580 |
msgstr "Потребителско име"
|
581 |
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:40
|
583 |
#, fuzzy, php-format
|
584 |
msgid "E-mail: %s"
|
585 |
msgstr "e-mail: %s"
|
586 |
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
588 |
#, php-format
|
589 |
msgid "[%s] New User Registration"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:51
|
593 |
#, php-format
|
594 |
msgid "Password: %s"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
598 |
#, php-format
|
599 |
msgid "[%s] Your username and password"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:91
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:97
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:109
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:115
|
606 |
#, php-format
|
607 |
msgid "%s: %s"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:189
|
611 |
#, php-format
|
612 |
msgid ""
|
613 |
"To activate your user, please click the following link:\n"
|
618 |
"\n"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:204
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
623 |
msgid "Your account is now active!"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
627 |
#, php-format
|
628 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:207
|
632 |
msgid "An error occurred during the activation"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
636 |
#, fuzzy
|
637 |
msgid "Username:"
|
638 |
msgstr "Потребителско име"
|
639 |
|
640 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
641 |
msgid "Password:"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:226
|
645 |
msgid "Invalid activation key."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:229
|
649 |
msgid "The site is already active."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:248
|
653 |
msgid "Could not create user"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
657 |
msgid "That username is already activated."
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:279
|
661 |
msgid "That username is currently reserved but may be available in a couple of days."
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:282
|
665 |
msgid "username and email used"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
669 |
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."
|
670 |
msgstr ""
|
671 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
673 |
msgid "Add field"
|
674 |
msgstr "Добави поле"
|
690 |
msgstr "Смени реда"
|
691 |
|
692 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
|
694 |
msgid "Min length"
|
695 |
msgstr "Минимална дължина"
|
696 |
|
697 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1041
|
699 |
msgid "Exact length"
|
700 |
msgstr "Точна дължина"
|
701 |
|
702 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1042
|
704 |
msgid "Max length"
|
705 |
msgstr "Максимална дължина"
|
706 |
|
730 |
msgstr "изтрит успешно"
|
731 |
|
732 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
|
734 |
msgid "Min size"
|
735 |
msgstr "Минимален размер"
|
736 |
|
737 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1033
|
739 |
msgid "Exact size"
|
740 |
msgstr "Точен размер"
|
741 |
|
742 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1034
|
744 |
msgid "Max size"
|
745 |
msgstr "Максимален размер"
|
746 |
|
815 |
msgid "Name inserted is just in the database, change to another one"
|
816 |
msgstr "Въведеното име е в базата данни, променето го"
|
817 |
|
818 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
819 |
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."
|
820 |
msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
|
821 |
|
822 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
823 |
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'"
|
824 |
msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
|
825 |
|
826 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
827 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
828 |
msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
|
829 |
|
830 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
831 |
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"
|
832 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
833 |
|
834 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
|
835 |
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)"
|
836 |
msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
|
837 |
|
838 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
839 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
840 |
msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
|
841 |
|
842 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
|
843 |
#, fuzzy
|
844 |
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"
|
845 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
848 |
#, fuzzy
|
849 |
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"
|
850 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
851 |
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1475
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
858 |
msgid "Name"
|
859 |
msgstr "Име"
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:643
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
865 |
msgid "Value"
|
866 |
msgstr "Стойност"
|
867 |
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1071
|
872 |
msgid "Type"
|
873 |
msgstr "Тип"
|
874 |
|
875 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:665
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1093
|
879 |
msgid "Label"
|
880 |
msgstr "Етикет"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
883 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
884 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1096
|
|
|
886 |
msgid "Description"
|
887 |
msgstr "Описание"
|
888 |
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
891 |
msgid "Rules"
|
892 |
msgstr "Правила"
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:636
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:826
|
896 |
msgid "Actions"
|
897 |
msgstr "Действия"
|
898 |
|
899 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
900 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1087
|
901 |
#, fuzzy
|
902 |
msgid "Fieldset"
|
903 |
msgstr "Полета"
|
904 |
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1110
|
907 |
msgid "Can be empty"
|
908 |
msgstr "Може да е празно"
|
909 |
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
912 |
msgid "Check for E-mail syntax"
|
913 |
msgstr "Провери за Email синтаксис"
|
914 |
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
917 |
msgid "Can be modified"
|
918 |
msgstr "Може да бъде променяно"
|
919 |
|
920 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:683
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
922 |
msgid "Can be modified only if empty"
|
923 |
msgstr "Може да бъде променяно само ако е празно"
|
924 |
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1116
|
927 |
msgid "Can be modified only by admin"
|
928 |
msgstr "Може да бъде променяно само от администратора"
|
929 |
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
932 |
msgid "Can be modified only by admin or if empty"
|
933 |
msgstr "Може да бъде променяно само от администратора или ако е празно"
|
934 |
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
937 |
msgid "Cannot be modified"
|
938 |
msgstr "Не може да бъде променяно"
|
939 |
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1123
|
942 |
msgid "Should be equal TO"
|
943 |
msgstr "Би трябвало да е равно НА"
|
944 |
|
945 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:696
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1125
|
947 |
msgid "Case sensitive"
|
948 |
msgstr "Различават се големи и малко букви"
|
949 |
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:699
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
952 |
msgid "Regular Expression"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
957 |
msgid "Show the field in the registration"
|
958 |
msgstr "Покажи полето при регистрация"
|
959 |
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
962 |
msgid "Show the field in User's profile"
|
963 |
msgstr "Покажи полето в профила на потребителя"
|
964 |
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
967 |
msgid "Show the field in A&U Extended menu"
|
968 |
msgstr "Покажи полето в A&П разширеното меню"
|
969 |
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1146
|
972 |
#, fuzzy
|
973 |
msgid "Show the field in the search engine"
|
974 |
msgstr "Покажи полето при регистрация"
|
975 |
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
978 |
#, fuzzy
|
979 |
msgid "Show the field in the blog"
|
980 |
msgstr "Покажи полето при регистрация"
|
981 |
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1152
|
984 |
#, fuzzy
|
985 |
msgid "Show the field if the role is at least:"
|
986 |
msgstr "Покажи полето при регистрация"
|
987 |
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1154
|
990 |
msgid "Anonymous"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
|
994 |
msgid "Clear"
|
995 |
msgstr "Изчисти"
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
998 |
msgid "Invert selection"
|
999 |
msgstr "Обърни избора"
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:788
|
1002 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1003 |
msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
|
1004 |
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:794
|
1006 |
msgid "WordPress Fields"
|
1007 |
msgstr "WordPress полета"
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1010 |
msgid "None!"
|
1011 |
msgstr "Няма!"
|
1012 |
|
1013 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1053
|
1015 |
msgid "Order"
|
1016 |
msgstr "Подреди"
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1165
|
1019 |
msgid "Reset"
|
1020 |
msgstr "Отмени"
|
1021 |
|
1022 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1250
|
1023 |
#, fuzzy
|
1024 |
msgid "select"
|
1025 |
msgstr "Изтрий"
|
1026 |
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1353
|
1028 |
#, php-format
|
1029 |
msgid "Users Matching \"%s\""
|
1030 |
msgstr "Потребители отговарящи на \"%s\""
|
1031 |
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
1033 |
#, fuzzy
|
1034 |
msgid "Users Extended List"
|
1035 |
msgstr "Разширен списък с Автори & Потребители"
|
1036 |
|
1037 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1359
|
1038 |
msgid "Authors & Users Extended List"
|
1039 |
msgstr "Разширен списък с Автори & Потребители"
|
1040 |
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1042 |
#, php-format
|
1043 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
1047 |
msgid "Search Users"
|
1048 |
msgstr "Търсене на потребители"
|
1049 |
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1436
|
1051 |
msgid "« Back to All Users"
|
1052 |
msgstr "« Назад към Всички потребители"
|
1053 |
|
1054 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
1055 |
#, fuzzy
|
1056 |
msgid "Users per page"
|
1057 |
msgstr "Таблица с потребителски данни"
|
1058 |
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
1060 |
msgid "Apply"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1470
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
1065 |
msgid "Username"
|
1066 |
msgstr "Потребителско име"
|
1067 |
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1480
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
1070 |
msgid "E-mail"
|
1071 |
msgstr "E-mail"
|
1072 |
|
1073 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1485
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
1075 |
msgid "Role"
|
1076 |
msgstr "Роля"
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1495
|
1079 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
1080 |
msgid "Posts"
|
1081 |
msgstr "Постове"
|
1082 |
|
1083 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1605
|
1084 |
msgid "View posts by this author"
|
1085 |
msgstr "Виж постовете на този автор"
|
1086 |
|
1087 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
|
1088 |
#, php-format
|
1089 |
msgid "e-mail: %s"
|
1090 |
msgstr "e-mail: %s"
|
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: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,104 +16,115 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
|
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
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/
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:567
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:435
|
33 |
msgid "ERROR"
|
34 |
msgstr "FEJL"
|
35 |
|
36 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
37 |
msgid "does not match."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
41 |
msgid "hasn’t a correct email syntax."
|
42 |
msgstr "E-mail adresse angivet forkert. "
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
45 |
msgid "couldn’t be empty."
|
46 |
msgstr "Må ikke være tomt."
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
msgid "isn’t correct"
|
51 |
msgstr "er forkert"
|
52 |
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
54 |
msgid "YES"
|
55 |
msgstr "JA"
|
56 |
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
msgid "NO"
|
59 |
msgstr "NEJ"
|
60 |
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
62 |
msgid "should be"
|
63 |
msgstr "skulle være"
|
64 |
|
65 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
66 |
msgid "should be an image."
|
67 |
msgstr "burde være et billede."
|
68 |
|
69 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
70 |
msgid "couldn’t have size less than"
|
71 |
msgstr "Størrelse må ikke være mindre end"
|
72 |
|
73 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
74 |
msgid "couldn’t have length less than"
|
75 |
msgstr "Længden må ikke være mindre end"
|
76 |
|
77 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
78 |
msgid "couldn’t have size different than"
|
79 |
msgstr "Størrelse må ikke afvige fra"
|
80 |
|
81 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
82 |
msgid "couldn’t have length different than"
|
83 |
msgstr "Længde må ikke afvige fra"
|
84 |
|
85 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
86 |
msgid "couldn’t have size more than"
|
87 |
msgstr "Størrelse må ikke overstige"
|
88 |
|
89 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
90 |
msgid "couldn’t have length more than"
|
91 |
msgstr "Længde må ikke overstige"
|
92 |
|
93 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
94 |
msgid "Typed code is not correct."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
98 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
99 |
#, fuzzy
|
100 |
msgid "Please upload a file with one of the following extensions"
|
101 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
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_options.php:
|
105 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
106 |
msgid "Please upload an image with one of the following extensions"
|
107 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
msgid "Strength indicator"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
114 |
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 ! \\\" ? $ % ^ & )."
|
115 |
msgstr ""
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
118 |
#, fuzzy
|
119 |
msgid "no fieldset"
|
@@ -151,282 +162,311 @@ msgstr "Indstillinger nulstillet"
|
|
151 |
msgid "Options deleted"
|
152 |
msgstr "Indstillinger slettet"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
155 |
msgid "Options changed"
|
156 |
msgstr "Indstillinger ændret"
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
159 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
164 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
165 |
msgid "Options"
|
166 |
msgstr "Indstillinger"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
169 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
170 |
msgid "Add a new Field"
|
171 |
msgstr "Tilføj et nyt felt"
|
172 |
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
175 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
176 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
177 |
msgid "Extra Fields"
|
178 |
msgstr "Ekstra felter"
|
179 |
|
180 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
181 |
msgid "Support the Cimy Project"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
185 |
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!"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
msgid "SUCCESSFUL"
|
191 |
msgstr "GENNEMFØRT"
|
192 |
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
195 |
msgid "Save Changes"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
199 |
msgid "General"
|
200 |
msgstr "Generelle indstillinger"
|
201 |
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
203 |
msgid "installed is"
|
204 |
msgstr "installeret er"
|
205 |
|
206 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
207 |
msgid "OPTIONS DELETED!"
|
208 |
msgstr "INDSTILLINGER SLETTET!"
|
209 |
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
msgid "Fix the problem"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
216 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
217 |
msgstr "VERSIONSKONFLIKT! Husk at deaktivere og genaktivere plugin'et efter opdatering!"
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
220 |
msgid "Picture/Avatar upload"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
msgid "is created and writable"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
228 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
232 |
#, fuzzy
|
233 |
msgid "Show all fields in the welcome email"
|
234 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
235 |
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
237 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
241 |
msgid "Enable email confirmation"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
245 |
msgid "user that registers should confirm its email address via a link click"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
253 |
msgid "Public KEY"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
257 |
msgid "Private KEY"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
msgid "Change login/registration page logo"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
265 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
266 |
#, fuzzy
|
267 |
msgid "Delete the picture"
|
268 |
msgstr "Slet felt"
|
269 |
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
271 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
275 |
msgid "Database"
|
276 |
msgstr "Database administration"
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
279 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
280 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
msgid "select action"
|
283 |
msgstr "Vælg handling"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
286 |
msgid "Default values"
|
287 |
msgstr "Standard værdier"
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
291 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
292 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
293 |
msgid "Delete"
|
294 |
msgstr "Slet"
|
295 |
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
299 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
300 |
msgid "NOT PRESENT"
|
301 |
msgstr "FINDES IKKE"
|
302 |
|
303 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
304 |
msgid "WordPress Fields table"
|
305 |
msgstr "WordPress tabel"
|
306 |
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
310 |
msgid "Empty"
|
311 |
msgstr "Tøm"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
314 |
msgid "Extra Fields table"
|
315 |
msgstr "Tabel med ekstra felter"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
318 |
msgid "Users Data table"
|
319 |
msgstr "Tabel for brugerdata"
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
322 |
msgid "all data inserted by users in all and only extra fields"
|
323 |
msgstr "al brugerdata i alle ekstra felter"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
msgid "Force tables creation"
|
327 |
msgstr "Gennemtving oprettelse af tabeller"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
330 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
334 |
msgid "User Profile"
|
335 |
msgstr "Brugerprofil"
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
338 |
#, fuzzy
|
339 |
msgid "Extra Fields section title"
|
340 |
msgstr "Tabel med ekstra felter"
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
343 |
msgid "Fieldset's titles, separates with comma"
|
344 |
msgstr "Feltrækkernes titel, adkilt med komma"
|
345 |
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
347 |
msgid "example: title1,title2,title3"
|
348 |
msgstr "F. eks.: Titel1,Titel2,Titel3"
|
349 |
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
351 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
357 |
msgid "Authors & Users Extended"
|
358 |
msgstr "Bruger liste"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
361 |
msgid "Hide username field"
|
362 |
msgstr "Skjul brugernavn"
|
363 |
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
365 |
msgid "Hide name field"
|
366 |
msgstr "Skjul fornavn"
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
369 |
msgid "Hide email field"
|
370 |
msgstr "Skjul e-mailadresse"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
373 |
#, fuzzy
|
374 |
msgid "Hide role field"
|
375 |
msgstr "Skjul fornavn"
|
376 |
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
378 |
msgid "Hide website field"
|
379 |
msgstr "Skjul website"
|
380 |
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
382 |
msgid "Hide n. posts field"
|
383 |
msgstr "Skjul angivelse af antal af brugerindlæg"
|
384 |
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
386 |
msgid "WordPress hidden fields"
|
387 |
msgstr "Wordpress skjulte felter"
|
388 |
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
390 |
msgid "Show password"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
394 |
msgid "Show confirmation password"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
398 |
msgid "Show password strength meter"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
402 |
msgid "Show first name"
|
403 |
msgstr "Vis fornavn"
|
404 |
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
406 |
msgid "Show last name"
|
407 |
msgstr "Vis Efternavn"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
410 |
msgid "Show nickname"
|
411 |
msgstr "Vis Kaldenavn"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
414 |
msgid "Show website"
|
415 |
msgstr "Website"
|
416 |
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
418 |
msgid "Show AIM"
|
419 |
msgstr "Vis AIM"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
422 |
msgid "Show Yahoo IM"
|
423 |
msgstr "Vis Yahoo IM"
|
424 |
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
426 |
msgid "Show Jabber / Google Talk"
|
427 |
msgstr "Vis Jabber / Google Talk"
|
428 |
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
430 |
msgid "Show Biographical Info"
|
431 |
msgstr ""
|
432 |
|
@@ -458,8 +498,8 @@ msgid "Nickname"
|
|
458 |
msgstr "Navn"
|
459 |
|
460 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
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 "Website"
|
464 |
msgstr "Website"
|
465 |
|
@@ -481,17 +521,17 @@ msgstr "Vis Jabber / Google Talk"
|
|
481 |
msgid "Biographical Info"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
485 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
486 |
msgid "Fields"
|
487 |
msgstr "Felter"
|
488 |
|
489 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
490 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
491 |
msgid "A&U Extended"
|
492 |
msgstr "Bruger liste"
|
493 |
|
494 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
495 |
#, fuzzy
|
496 |
msgid "Users Extended"
|
497 |
msgstr "Vis alle brugere"
|
@@ -510,44 +550,65 @@ msgstr ""
|
|
510 |
msgid "File '%s' is not an image."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
514 |
#, php-format
|
515 |
msgid "New user registration on your site %s:"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
519 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
520 |
#, fuzzy, php-format
|
521 |
msgid "Username: %s"
|
522 |
msgstr "Brugernavn"
|
523 |
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
525 |
#, fuzzy, php-format
|
526 |
msgid "E-mail: %s"
|
527 |
msgstr "e-mail: %s"
|
528 |
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
530 |
#, php-format
|
531 |
msgid "[%s] New User Registration"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
535 |
#, php-format
|
536 |
msgid "Password: %s"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
540 |
#, php-format
|
541 |
msgid "[%s] Your username and password"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
545 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
546 |
#, php-format
|
547 |
msgid "%s: %s"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
551 |
#, php-format
|
552 |
msgid ""
|
553 |
"To activate your user, please click the following link:\n"
|
@@ -558,76 +619,57 @@ msgid ""
|
|
558 |
"\n"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
563 |
msgid "Your account is now active!"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
567 |
#, php-format
|
568 |
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>."
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
572 |
msgid "An error occurred during the activation"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
576 |
#, fuzzy
|
577 |
msgid "Username:"
|
578 |
msgstr "Brugernavn"
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
581 |
msgid "Password:"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
585 |
msgid "Invalid activation key."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
589 |
msgid "The site is already active."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
593 |
msgid "Could not create user"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
597 |
msgid "That username is already activated."
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
601 |
msgid "That username is currently reserved but may be available in a couple of days."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
605 |
msgid "username and email used"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
609 |
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."
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
613 |
-
#, fuzzy
|
614 |
-
msgid "Delete the file"
|
615 |
-
msgstr "Slet felt"
|
616 |
-
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
618 |
-
#, fuzzy
|
619 |
-
msgid "Update the file"
|
620 |
-
msgstr "Opdater felt"
|
621 |
-
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
623 |
-
#, fuzzy
|
624 |
-
msgid "Update the picture"
|
625 |
-
msgstr "Opdater felt"
|
626 |
-
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
628 |
-
msgid "Picture URL:"
|
629 |
-
msgstr ""
|
630 |
-
|
631 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
632 |
msgid "Add field"
|
633 |
msgstr "Tilføj felt"
|
@@ -649,17 +691,17 @@ msgid "Change order"
|
|
649 |
msgstr "Ændre rækkefølge"
|
650 |
|
651 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
652 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
653 |
msgid "Min length"
|
654 |
msgstr "Min. længde"
|
655 |
|
656 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
657 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
658 |
msgid "Exact length"
|
659 |
msgstr "Eksakt længde"
|
660 |
|
661 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
662 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
663 |
msgid "Max length"
|
664 |
msgstr "Max. længde"
|
665 |
|
@@ -689,17 +731,17 @@ msgid "deleted correctly"
|
|
689 |
msgstr "Sletning gennemført"
|
690 |
|
691 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
693 |
msgid "Min size"
|
694 |
msgstr "Min. størrelse"
|
695 |
|
696 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
698 |
msgid "Exact size"
|
699 |
msgstr "Eksakt størrelse"
|
700 |
|
701 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
703 |
msgid "Max size"
|
704 |
msgstr "Max. størrelse"
|
705 |
|
@@ -774,277 +816,277 @@ msgstr "Opdatering gennemført"
|
|
774 |
msgid "Name inserted is just in the database, change to another one"
|
775 |
msgstr "Det valgte navn findes allerede, vælg venligst et andet"
|
776 |
|
777 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
778 |
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."
|
779 |
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."
|
780 |
|
781 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
782 |
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'"
|
783 |
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."
|
784 |
|
785 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
786 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
787 |
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"
|
788 |
|
789 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
790 |
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"
|
791 |
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."
|
792 |
|
793 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
794 |
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)"
|
795 |
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)."
|
796 |
|
797 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
798 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
799 |
msgstr "<strong>registration-date</strong>: <em>LIG MED</em> henviser til dato- og tidsformat."
|
800 |
|
801 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
802 |
#, fuzzy
|
803 |
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"
|
804 |
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."
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
#, fuzzy
|
808 |
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"
|
809 |
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."
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
813 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
817 |
msgid "Name"
|
818 |
msgstr "Navn"
|
819 |
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
821 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
msgid "Value"
|
825 |
msgstr "Værdi"
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
829 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
msgid "Type"
|
832 |
msgstr "Type"
|
833 |
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
837 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
838 |
msgid "Label"
|
839 |
msgstr "Betegnelse"
|
840 |
|
|
|
841 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
845 |
msgid "Description"
|
846 |
msgstr "Beskrivelse"
|
847 |
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
850 |
msgid "Rules"
|
851 |
msgstr "Regler"
|
852 |
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
855 |
msgid "Actions"
|
856 |
msgstr "Handlinger"
|
857 |
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
860 |
#, fuzzy
|
861 |
msgid "Fieldset"
|
862 |
msgstr "Felter"
|
863 |
|
864 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
865 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
866 |
msgid "Can be empty"
|
867 |
msgstr "Kan være tomt"
|
868 |
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
870 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
871 |
msgid "Check for E-mail syntax"
|
872 |
msgstr "Kontroller venligst e-mailadressen"
|
873 |
|
874 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
875 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
876 |
msgid "Can be modified"
|
877 |
msgstr "Kan ændres"
|
878 |
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
881 |
msgid "Can be modified only if empty"
|
882 |
msgstr "Kan kun ændres hvis feltet er tomt"
|
883 |
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
886 |
msgid "Can be modified only by admin"
|
887 |
msgstr "Kan kun ændres af Administrator"
|
888 |
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
891 |
msgid "Can be modified only by admin or if empty"
|
892 |
msgstr "Kan kun ændres hvis det er tomt"
|
893 |
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
895 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
896 |
msgid "Cannot be modified"
|
897 |
msgstr "Kan ikke ændres"
|
898 |
|
899 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
901 |
msgid "Should be equal TO"
|
902 |
msgstr "Skal være LIG MED"
|
903 |
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
906 |
msgid "Case sensitive"
|
907 |
msgstr "Forskel på store og små bogstaver"
|
908 |
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
910 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
911 |
msgid "Regular Expression"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
915 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
916 |
msgid "Show the field in the registration"
|
917 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
918 |
|
919 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
920 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
921 |
msgid "Show the field in User's profile"
|
922 |
msgstr "Vis felt i 'Brugerprofil'"
|
923 |
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
926 |
msgid "Show the field in A&U Extended menu"
|
927 |
msgstr "Vis felt under 'Vis alle brugere'"
|
928 |
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
931 |
#, fuzzy
|
932 |
msgid "Show the field in the search engine"
|
933 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
934 |
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
937 |
#, fuzzy
|
938 |
msgid "Show the field in the blog"
|
939 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
940 |
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
942 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
943 |
#, fuzzy
|
944 |
msgid "Show the field if the role is at least:"
|
945 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
946 |
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
949 |
msgid "Anonymous"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
953 |
msgid "Clear"
|
954 |
msgstr "Slet"
|
955 |
|
956 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
957 |
msgid "Invert selection"
|
958 |
msgstr "Omvend markering"
|
959 |
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
961 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
962 |
msgstr "Er du sikker på at du vil slette dette/disse felt(er) og al tilknyttet brugerdata?"
|
963 |
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
msgid "WordPress Fields"
|
966 |
msgstr "WordPress felter"
|
967 |
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
969 |
msgid "None!"
|
970 |
msgstr "Ingen!"
|
971 |
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
974 |
msgid "Order"
|
975 |
msgstr "Rækkefølge"
|
976 |
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
978 |
msgid "Reset"
|
979 |
msgstr "Nulstil"
|
980 |
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
982 |
#, fuzzy
|
983 |
msgid "select"
|
984 |
msgstr "Slet"
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
987 |
#, php-format
|
988 |
msgid "Users Matching \"%s\""
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
992 |
#, fuzzy
|
993 |
msgid "Users Extended List"
|
994 |
msgstr "Vis alle brugere"
|
995 |
|
996 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
997 |
msgid "Authors & Users Extended List"
|
998 |
msgstr "Vis alle brugere"
|
999 |
|
1000 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1001 |
#, php-format
|
1002 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1006 |
msgid "Search Users"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1010 |
msgid "« Back to All Users"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1014 |
#, fuzzy
|
1015 |
msgid "Users per page"
|
1016 |
msgstr "Tabel for brugerdata"
|
1017 |
|
1018 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1019 |
msgid "Apply"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1023 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1024 |
msgid "Username"
|
1025 |
msgstr "Brugernavn"
|
1026 |
|
1027 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1028 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1029 |
msgid "E-mail"
|
1030 |
msgstr "E-mail"
|
1031 |
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1033 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1034 |
#, fuzzy
|
1035 |
msgid "Role"
|
1036 |
msgstr "Regler"
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1039 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1040 |
msgid "Posts"
|
1041 |
msgstr "Indlæg"
|
1042 |
|
1043 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1044 |
msgid "View posts by this author"
|
1045 |
msgstr "Vis denne brugers indlæg"
|
1046 |
|
1047 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1048 |
#, php-format
|
1049 |
msgid "e-mail: %s"
|
1050 |
msgstr "e-mail: %s"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-09-21 00:22+0300\n"
|
6 |
+
"PO-Revision-Date: 2010-09-21 00:22+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:442
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
27 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
|
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "FEJL"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "E-mail adresse angivet forkert. "
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "Må ikke være tomt."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:441
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "er forkert"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
55 |
msgid "YES"
|
56 |
msgstr "JA"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
59 |
msgid "NO"
|
60 |
msgstr "NEJ"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
63 |
msgid "should be"
|
64 |
msgstr "skulle være"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
67 |
msgid "should be an image."
|
68 |
msgstr "burde være et billede."
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "Størrelse må ikke være mindre end"
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "Længden må ikke være mindre end"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "Størrelse må ikke afvige fra"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "Længde må ikke afvige fra"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "Størrelse må ikke overstige"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "Længde må ikke overstige"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:824
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
104 |
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:369
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
110 |
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:910
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:911
|
116 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \\\" ? $ % ^ & )."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:948
|
120 |
+
#, fuzzy
|
121 |
+
msgid "Change image"
|
122 |
+
msgstr "Ændre rækkefølge"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:951
|
125 |
+
msgid "Insert the code:"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
162 |
msgid "Options deleted"
|
163 |
msgstr "Indstillinger slettet"
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:345
|
166 |
msgid "Options changed"
|
167 |
msgstr "Indstillinger ændret"
|
168 |
|
169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:472
|
170 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
174 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:726
|
176 |
msgid "Options"
|
177 |
msgstr "Indstillinger"
|
178 |
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
180 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
181 |
msgid "Add a new Field"
|
182 |
msgstr "Tilføj et nyt felt"
|
183 |
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:796
|
186 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:249
|
188 |
msgid "Extra Fields"
|
189 |
msgstr "Ekstra felter"
|
190 |
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
192 |
msgid "Support the Cimy Project"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
196 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:508
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1221
|
201 |
msgid "SUCCESSFUL"
|
202 |
msgstr "GENNEMFØRT"
|
203 |
|
204 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
206 |
msgid "Save Changes"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:522
|
210 |
msgid "General"
|
211 |
msgstr "Generelle indstillinger"
|
212 |
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
214 |
msgid "installed is"
|
215 |
msgstr "installeret er"
|
216 |
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
218 |
msgid "OPTIONS DELETED!"
|
219 |
msgstr "INDSTILLINGER SLETTET!"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:542
|
223 |
msgid "Fix the problem"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
227 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
228 |
msgstr "VERSIONSKONFLIKT! Husk at deaktivere og genaktivere plugin'et efter opdatering!"
|
229 |
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
231 |
msgid "Picture/Avatar upload"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:552
|
235 |
msgid "is created and writable"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
239 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
243 |
#, fuzzy
|
244 |
msgid "Show all fields in the welcome email"
|
245 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
248 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
|
252 |
msgid "Enable email confirmation"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:577
|
256 |
msgid "user that registers should confirm its email address via a link click"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
|
260 |
+
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
264 |
+
msgid "Redirect to the source"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:590
|
268 |
+
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
272 |
+
msgid "No captcha"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
|
276 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:610
|
280 |
msgid "Public KEY"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
284 |
msgid "Private KEY"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:622
|
288 |
+
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
292 |
+
msgid "This captcha is probably weaker, but is easier for users"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
296 |
+
#, php-format
|
297 |
+
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:636
|
301 |
msgid "Change login/registration page logo"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:641
|
305 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
306 |
#, fuzzy
|
307 |
msgid "Delete the picture"
|
308 |
msgstr "Slet felt"
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
311 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
|
315 |
msgid "Database"
|
316 |
msgstr "Database administration"
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:677
|
320 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
322 |
msgid "select action"
|
323 |
msgstr "Vælg handling"
|
324 |
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:660
|
326 |
msgid "Default values"
|
327 |
msgstr "Standard værdier"
|
328 |
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:698
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
|
333 |
msgid "Delete"
|
334 |
msgstr "Slet"
|
335 |
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:702
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
340 |
msgid "NOT PRESENT"
|
341 |
msgstr "FINDES IKKE"
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
344 |
msgid "WordPress Fields table"
|
345 |
msgstr "WordPress tabel"
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:678
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
|
350 |
msgid "Empty"
|
351 |
msgstr "Tøm"
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
354 |
msgid "Extra Fields table"
|
355 |
msgstr "Tabel med ekstra felter"
|
356 |
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
358 |
msgid "Users Data table"
|
359 |
msgstr "Tabel for brugerdata"
|
360 |
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
362 |
msgid "all data inserted by users in all and only extra fields"
|
363 |
msgstr "al brugerdata i alle ekstra felter"
|
364 |
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
366 |
msgid "Force tables creation"
|
367 |
msgstr "Gennemtving oprettelse af tabeller"
|
368 |
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
370 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
374 |
msgid "User Profile"
|
375 |
msgstr "Brugerprofil"
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
378 |
#, fuzzy
|
379 |
msgid "Extra Fields section title"
|
380 |
msgstr "Tabel med ekstra felter"
|
381 |
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
383 |
msgid "Fieldset's titles, separates with comma"
|
384 |
msgstr "Feltrækkernes titel, adkilt med komma"
|
385 |
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
387 |
msgid "example: title1,title2,title3"
|
388 |
msgstr "F. eks.: Titel1,Titel2,Titel3"
|
389 |
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
391 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:747
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
397 |
msgid "Authors & Users Extended"
|
398 |
msgstr "Bruger liste"
|
399 |
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
|
401 |
msgid "Hide username field"
|
402 |
msgstr "Skjul brugernavn"
|
403 |
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
405 |
msgid "Hide name field"
|
406 |
msgstr "Skjul fornavn"
|
407 |
|
408 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:762
|
409 |
msgid "Hide email field"
|
410 |
msgstr "Skjul e-mailadresse"
|
411 |
|
412 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
413 |
#, fuzzy
|
414 |
msgid "Hide role field"
|
415 |
msgstr "Skjul fornavn"
|
416 |
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
418 |
msgid "Hide website field"
|
419 |
msgstr "Skjul website"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:774
|
422 |
msgid "Hide n. posts field"
|
423 |
msgstr "Skjul angivelse af antal af brugerindlæg"
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
|
426 |
msgid "WordPress hidden fields"
|
427 |
msgstr "Wordpress skjulte felter"
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
430 |
msgid "Show password"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
434 |
msgid "Show confirmation password"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:790
|
438 |
msgid "Show password strength meter"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:794
|
442 |
msgid "Show first name"
|
443 |
msgstr "Vis fornavn"
|
444 |
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:798
|
446 |
msgid "Show last name"
|
447 |
msgstr "Vis Efternavn"
|
448 |
|
449 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:802
|
450 |
msgid "Show nickname"
|
451 |
msgstr "Vis Kaldenavn"
|
452 |
|
453 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:806
|
454 |
msgid "Show website"
|
455 |
msgstr "Website"
|
456 |
|
457 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:810
|
458 |
msgid "Show AIM"
|
459 |
msgstr "Vis AIM"
|
460 |
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:814
|
462 |
msgid "Show Yahoo IM"
|
463 |
msgstr "Vis Yahoo IM"
|
464 |
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:818
|
466 |
msgid "Show Jabber / Google Talk"
|
467 |
msgstr "Vis Jabber / Google Talk"
|
468 |
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:822
|
470 |
msgid "Show Biographical Info"
|
471 |
msgstr ""
|
472 |
|
498 |
msgstr "Navn"
|
499 |
|
500 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
503 |
msgid "Website"
|
504 |
msgstr "Website"
|
505 |
|
521 |
msgid "Biographical Info"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:727
|
525 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
526 |
msgid "Fields"
|
527 |
msgstr "Felter"
|
528 |
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
531 |
msgid "A&U Extended"
|
532 |
msgstr "Bruger liste"
|
533 |
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:732
|
535 |
#, fuzzy
|
536 |
msgid "Users Extended"
|
537 |
msgstr "Vis alle brugere"
|
550 |
msgid "File '%s' is not an image."
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
554 |
+
#, fuzzy
|
555 |
+
msgid "Delete the file"
|
556 |
+
msgstr "Slet felt"
|
557 |
+
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
559 |
+
#, fuzzy
|
560 |
+
msgid "Update the file"
|
561 |
+
msgstr "Opdater felt"
|
562 |
+
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
564 |
+
#, fuzzy
|
565 |
+
msgid "Update the picture"
|
566 |
+
msgstr "Opdater felt"
|
567 |
+
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
569 |
+
msgid "Picture URL:"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:38
|
573 |
#, php-format
|
574 |
msgid "New user registration on your site %s:"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:39
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:50
|
579 |
#, fuzzy, php-format
|
580 |
msgid "Username: %s"
|
581 |
msgstr "Brugernavn"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:40
|
584 |
#, fuzzy, php-format
|
585 |
msgid "E-mail: %s"
|
586 |
msgstr "e-mail: %s"
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
589 |
#, php-format
|
590 |
msgid "[%s] New User Registration"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:51
|
594 |
#, php-format
|
595 |
msgid "Password: %s"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
599 |
#, php-format
|
600 |
msgid "[%s] Your username and password"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:91
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:97
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:109
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:115
|
607 |
#, php-format
|
608 |
msgid "%s: %s"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:189
|
612 |
#, php-format
|
613 |
msgid ""
|
614 |
"To activate your user, please click the following link:\n"
|
619 |
"\n"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:204
|
623 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
624 |
msgid "Your account is now active!"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
628 |
#, php-format
|
629 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:207
|
633 |
msgid "An error occurred during the activation"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
637 |
#, fuzzy
|
638 |
msgid "Username:"
|
639 |
msgstr "Brugernavn"
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
642 |
msgid "Password:"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:226
|
646 |
msgid "Invalid activation key."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:229
|
650 |
msgid "The site is already active."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:248
|
654 |
msgid "Could not create user"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
658 |
msgid "That username is already activated."
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:279
|
662 |
msgid "That username is currently reserved but may be available in a couple of days."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:282
|
666 |
msgid "username and email used"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
670 |
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."
|
671 |
msgstr ""
|
672 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
673 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
674 |
msgid "Add field"
|
675 |
msgstr "Tilføj felt"
|
691 |
msgstr "Ændre rækkefølge"
|
692 |
|
693 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
694 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
|
695 |
msgid "Min length"
|
696 |
msgstr "Min. længde"
|
697 |
|
698 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1041
|
700 |
msgid "Exact length"
|
701 |
msgstr "Eksakt længde"
|
702 |
|
703 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1042
|
705 |
msgid "Max length"
|
706 |
msgstr "Max. længde"
|
707 |
|
731 |
msgstr "Sletning gennemført"
|
732 |
|
733 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
734 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
|
735 |
msgid "Min size"
|
736 |
msgstr "Min. størrelse"
|
737 |
|
738 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
739 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1033
|
740 |
msgid "Exact size"
|
741 |
msgstr "Eksakt størrelse"
|
742 |
|
743 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
744 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1034
|
745 |
msgid "Max size"
|
746 |
msgstr "Max. størrelse"
|
747 |
|
816 |
msgid "Name inserted is just in the database, change to another one"
|
817 |
msgstr "Det valgte navn findes allerede, vælg venligst et andet"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
820 |
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."
|
821 |
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."
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
824 |
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'"
|
825 |
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."
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
828 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
829 |
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"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
832 |
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"
|
833 |
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."
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
|
836 |
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)"
|
837 |
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)."
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
840 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
841 |
msgstr "<strong>registration-date</strong>: <em>LIG MED</em> henviser til dato- og tidsformat."
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
|
844 |
#, fuzzy
|
845 |
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"
|
846 |
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."
|
847 |
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
849 |
#, fuzzy
|
850 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
851 |
msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1475
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
859 |
msgid "Name"
|
860 |
msgstr "Navn"
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:643
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
866 |
msgid "Value"
|
867 |
msgstr "Værdi"
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1071
|
873 |
msgid "Type"
|
874 |
msgstr "Type"
|
875 |
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:665
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
879 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1093
|
880 |
msgid "Label"
|
881 |
msgstr "Betegnelse"
|
882 |
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
884 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1096
|
|
|
887 |
msgid "Description"
|
888 |
msgstr "Beskrivelse"
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
891 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
892 |
msgid "Rules"
|
893 |
msgstr "Regler"
|
894 |
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:636
|
896 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:826
|
897 |
msgid "Actions"
|
898 |
msgstr "Handlinger"
|
899 |
|
900 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1087
|
902 |
#, fuzzy
|
903 |
msgid "Fieldset"
|
904 |
msgstr "Felter"
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1110
|
908 |
msgid "Can be empty"
|
909 |
msgstr "Kan være tomt"
|
910 |
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
912 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
913 |
msgid "Check for E-mail syntax"
|
914 |
msgstr "Kontroller venligst e-mailadressen"
|
915 |
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
918 |
msgid "Can be modified"
|
919 |
msgstr "Kan ændres"
|
920 |
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:683
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
923 |
msgid "Can be modified only if empty"
|
924 |
msgstr "Kan kun ændres hvis feltet er tomt"
|
925 |
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1116
|
928 |
msgid "Can be modified only by admin"
|
929 |
msgstr "Kan kun ændres af Administrator"
|
930 |
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
933 |
msgid "Can be modified only by admin or if empty"
|
934 |
msgstr "Kan kun ændres hvis det er tomt"
|
935 |
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
938 |
msgid "Cannot be modified"
|
939 |
msgstr "Kan ikke ændres"
|
940 |
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1123
|
943 |
msgid "Should be equal TO"
|
944 |
msgstr "Skal være LIG MED"
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:696
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1125
|
948 |
msgid "Case sensitive"
|
949 |
msgstr "Forskel på store og små bogstaver"
|
950 |
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:699
|
952 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
953 |
msgid "Regular Expression"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
958 |
msgid "Show the field in the registration"
|
959 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
960 |
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
963 |
msgid "Show the field in User's profile"
|
964 |
msgstr "Vis felt i 'Brugerprofil'"
|
965 |
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
968 |
msgid "Show the field in A&U Extended menu"
|
969 |
msgstr "Vis felt under 'Vis alle brugere'"
|
970 |
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1146
|
973 |
#, fuzzy
|
974 |
msgid "Show the field in the search engine"
|
975 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
976 |
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
979 |
#, fuzzy
|
980 |
msgid "Show the field in the blog"
|
981 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
982 |
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1152
|
985 |
#, fuzzy
|
986 |
msgid "Show the field if the role is at least:"
|
987 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
990 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1154
|
991 |
msgid "Anonymous"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
|
995 |
msgid "Clear"
|
996 |
msgstr "Slet"
|
997 |
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
999 |
msgid "Invert selection"
|
1000 |
msgstr "Omvend markering"
|
1001 |
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:788
|
1003 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1004 |
msgstr "Er du sikker på at du vil slette dette/disse felt(er) og al tilknyttet brugerdata?"
|
1005 |
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:794
|
1007 |
msgid "WordPress Fields"
|
1008 |
msgstr "WordPress felter"
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1011 |
msgid "None!"
|
1012 |
msgstr "Ingen!"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1053
|
1016 |
msgid "Order"
|
1017 |
msgstr "Rækkefølge"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1165
|
1020 |
msgid "Reset"
|
1021 |
msgstr "Nulstil"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1250
|
1024 |
#, fuzzy
|
1025 |
msgid "select"
|
1026 |
msgstr "Slet"
|
1027 |
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1353
|
1029 |
#, php-format
|
1030 |
msgid "Users Matching \"%s\""
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
1034 |
#, fuzzy
|
1035 |
msgid "Users Extended List"
|
1036 |
msgstr "Vis alle brugere"
|
1037 |
|
1038 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1359
|
1039 |
msgid "Authors & Users Extended List"
|
1040 |
msgstr "Vis alle brugere"
|
1041 |
|
1042 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1043 |
#, php-format
|
1044 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
1048 |
msgid "Search Users"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1436
|
1052 |
msgid "« Back to All Users"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
1056 |
#, fuzzy
|
1057 |
msgid "Users per page"
|
1058 |
msgstr "Tabel for brugerdata"
|
1059 |
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
1061 |
msgid "Apply"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1470
|
1065 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
1066 |
msgid "Username"
|
1067 |
msgstr "Brugernavn"
|
1068 |
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1480
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
1071 |
msgid "E-mail"
|
1072 |
msgstr "E-mail"
|
1073 |
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1485
|
1075 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
1076 |
#, fuzzy
|
1077 |
msgid "Role"
|
1078 |
msgstr "Regler"
|
1079 |
|
1080 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1495
|
1081 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
1082 |
msgid "Posts"
|
1083 |
msgstr "Indlæg"
|
1084 |
|
1085 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1605
|
1086 |
msgid "View posts by this author"
|
1087 |
msgstr "Vis denne brugers indlæg"
|
1088 |
|
1089 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
|
1090 |
#, php-format
|
1091 |
msgid "e-mail: %s"
|
1092 |
msgstr "e-mail: %s"
|
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: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,104 +16,115 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
|
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
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/
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:567
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:435
|
33 |
msgid "ERROR"
|
34 |
msgstr "FEHLER"
|
35 |
|
36 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
37 |
msgid "does not match."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
41 |
msgid "hasn’t a correct email syntax."
|
42 |
msgstr "hat eine fehlerhafte Email-Syntax. "
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
45 |
msgid "couldn’t be empty."
|
46 |
msgstr "darf nicht leer sein."
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
msgid "isn’t correct"
|
51 |
msgstr "ist nicht richtig"
|
52 |
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
54 |
msgid "YES"
|
55 |
msgstr "JA"
|
56 |
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
msgid "NO"
|
59 |
msgstr "NEIN"
|
60 |
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
62 |
msgid "should be"
|
63 |
msgstr "sollte sein"
|
64 |
|
65 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
66 |
msgid "should be an image."
|
67 |
msgstr "sollte ein Bild sein."
|
68 |
|
69 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
70 |
msgid "couldn’t have size less than"
|
71 |
msgstr "darf keine Größe haben unter"
|
72 |
|
73 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
74 |
msgid "couldn’t have length less than"
|
75 |
msgstr "darf keine Länge haben unter"
|
76 |
|
77 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
78 |
msgid "couldn’t have size different than"
|
79 |
msgstr "darf keine Größe haben, die um mehr abweicht als"
|
80 |
|
81 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
82 |
msgid "couldn’t have length different than"
|
83 |
msgstr "darf keine Länge habe, die um mehr abweicht als"
|
84 |
|
85 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
86 |
msgid "couldn’t have size more than"
|
87 |
msgstr "darf keine Größe haben über"
|
88 |
|
89 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
90 |
msgid "couldn’t have length more than"
|
91 |
msgstr "darf keine Länge haben über"
|
92 |
|
93 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
94 |
msgid "Typed code is not correct."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
98 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
99 |
#, fuzzy
|
100 |
msgid "Please upload a file with one of the following extensions"
|
101 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
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_options.php:
|
105 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
106 |
msgid "Please upload an image with one of the following extensions"
|
107 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
msgid "Strength indicator"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
114 |
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 ! \\\" ? $ % ^ & )."
|
115 |
msgstr ""
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
118 |
#, fuzzy
|
119 |
msgid "no fieldset"
|
@@ -151,281 +162,310 @@ msgstr "Einstellungen auf Grundeinstellungen zurück gesetzt"
|
|
151 |
msgid "Options deleted"
|
152 |
msgstr "Einstellungen gelöscht"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
155 |
msgid "Options changed"
|
156 |
msgstr "Einstellungen aktualisiert"
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
159 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
164 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
165 |
msgid "Options"
|
166 |
msgstr "Einstellungen"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
169 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
170 |
msgid "Add a new Field"
|
171 |
msgstr "Ein neues Feld hinzufügen"
|
172 |
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
175 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
176 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
177 |
msgid "Extra Fields"
|
178 |
msgstr "Benutzerdefinierte Felder"
|
179 |
|
180 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
181 |
msgid "Support the Cimy Project"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
185 |
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!"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
msgid "SUCCESSFUL"
|
191 |
msgstr "ERFOLGREICH"
|
192 |
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
195 |
msgid "Save Changes"
|
196 |
msgstr "Einstellungen aktualisieren"
|
197 |
|
198 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
199 |
msgid "General"
|
200 |
msgstr "Allgemein"
|
201 |
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
203 |
msgid "installed is"
|
204 |
msgstr "installiert ist"
|
205 |
|
206 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
207 |
msgid "OPTIONS DELETED!"
|
208 |
msgstr "EINSTELLUNGEN GELÖSCHT!"
|
209 |
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
msgid "Fix the problem"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
216 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
217 |
msgstr "VERSIONEN NICHT KOMPATIBEL! Du hast das Plugin nach dem Update nicht deaktiviert und anschließend reaktiviert. Das könnte Probleme geben..."
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
220 |
msgid "Picture/Avatar upload"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
msgid "is created and writable"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
228 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
232 |
#, fuzzy
|
233 |
msgid "Show all fields in the welcome email"
|
234 |
msgstr "Zeige das Feld bei der Registrierung"
|
235 |
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
237 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
241 |
msgid "Enable email confirmation"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
245 |
msgid "user that registers should confirm its email address via a link click"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
253 |
msgid "Public KEY"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
257 |
msgid "Private KEY"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
msgid "Change login/registration page logo"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
265 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
266 |
msgid "Delete the picture"
|
267 |
msgstr "Bild löschen"
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
270 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
274 |
msgid "Database"
|
275 |
msgstr "Datenbank"
|
276 |
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
279 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
280 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
281 |
msgid "select action"
|
282 |
msgstr "Wähle Aktion"
|
283 |
|
284 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
285 |
msgid "Default values"
|
286 |
msgstr "Werte: Grundeinstellung"
|
287 |
|
288 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
291 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
292 |
msgid "Delete"
|
293 |
msgstr "Löschen"
|
294 |
|
295 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
299 |
msgid "NOT PRESENT"
|
300 |
msgstr "NICHT VORHANDEN"
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
303 |
msgid "WordPress Fields table"
|
304 |
msgstr "WP-Datenbank-Tabelle"
|
305 |
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
309 |
msgid "Empty"
|
310 |
msgstr "Leer"
|
311 |
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
313 |
msgid "Extra Fields table"
|
314 |
msgstr "Tabelle \"Benutzerdefinierte Felder\""
|
315 |
|
316 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
317 |
msgid "Users Data table"
|
318 |
msgstr "Tabelle \"Benutzerdaten\""
|
319 |
|
320 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
321 |
msgid "all data inserted by users in all and only extra fields"
|
322 |
msgstr "alle von \"Benutzern\" in die Cimy-Zusatzfelder eingetragenen Daten"
|
323 |
|
324 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
325 |
msgid "Force tables creation"
|
326 |
msgstr "Erzwingt die Erstellung der Datenbanktabellen"
|
327 |
|
328 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
329 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
330 |
msgstr "Achtung: Mit dieser Einstellung zwingen Sie das PlugIn die Datenbanktabellen zu erstellen. Dieser Schritt wird auch bei (De-)Aktivierung des PlugIns durchgeführt."
|
331 |
|
332 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
333 |
msgid "User Profile"
|
334 |
msgstr "\"Benutzer\" Profil"
|
335 |
|
336 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
337 |
msgid "Extra Fields section title"
|
338 |
msgstr "Titel für \"Benutzerdefinierte Felder\""
|
339 |
|
340 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
341 |
msgid "Fieldset's titles, separates with comma"
|
342 |
msgstr "Titel des Abschnitts der \"Benutzerdefinierten Felder\", abgetrennt durch Kommata (',')"
|
343 |
|
344 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
345 |
msgid "example: title1,title2,title3"
|
346 |
msgstr "Beispiel: Titel1, Titel2, Titel3"
|
347 |
|
348 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
349 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
355 |
msgid "Authors & Users Extended"
|
356 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
357 |
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
359 |
msgid "Hide username field"
|
360 |
msgstr "Feld: \"'Benutzer'-Name\" nicht anzeigen"
|
361 |
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
363 |
msgid "Hide name field"
|
364 |
msgstr "Feld: \"Name\" nicht anzeigen"
|
365 |
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
367 |
msgid "Hide email field"
|
368 |
msgstr "Feld: \"E-mail Adresse\" nicht anzeigen"
|
369 |
|
370 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
371 |
msgid "Hide role field"
|
372 |
msgstr "Feld: \"Rolle\" des \"Benutzers\" nicht anzeigen"
|
373 |
|
374 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
375 |
msgid "Hide website field"
|
376 |
msgstr "Feld: \"Webseite\" nicht anzeigen"
|
377 |
|
378 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
379 |
msgid "Hide n. posts field"
|
380 |
msgstr "Feld: Anzahl der von \"Benutzer(n)\" erstellten Artikel nicht anzeigen"
|
381 |
|
382 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
383 |
msgid "WordPress hidden fields"
|
384 |
msgstr "Feld: \"Wordpress hidden fields\" (verborgene Felder)"
|
385 |
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
387 |
msgid "Show password"
|
388 |
msgstr "\"Passwort\" anzeigen"
|
389 |
|
390 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
391 |
#, fuzzy
|
392 |
msgid "Show confirmation password"
|
393 |
msgstr "\"Passwort\" anzeigen"
|
394 |
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
396 |
#, fuzzy
|
397 |
msgid "Show password strength meter"
|
398 |
msgstr "\"Passwort\" anzeigen"
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
401 |
msgid "Show first name"
|
402 |
msgstr "Zeige \"Vornamen\""
|
403 |
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
405 |
msgid "Show last name"
|
406 |
msgstr "Zeige \"Nachnamen\""
|
407 |
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
409 |
msgid "Show nickname"
|
410 |
msgstr "Zeige \"Nicknamen\"/Spitznamen"
|
411 |
|
412 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
413 |
msgid "Show website"
|
414 |
msgstr "Zeige \"Webseite\""
|
415 |
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
417 |
msgid "Show AIM"
|
418 |
msgstr "Zeige \"AIM\""
|
419 |
|
420 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
421 |
msgid "Show Yahoo IM"
|
422 |
msgstr "Zeige \"Yahoo IM\""
|
423 |
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
425 |
msgid "Show Jabber / Google Talk"
|
426 |
msgstr "Zeige \"Jabber / Google Talk\""
|
427 |
|
428 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
429 |
msgid "Show Biographical Info"
|
430 |
msgstr "\"Weitere Informationen\" anzeigen"
|
431 |
|
@@ -454,8 +494,8 @@ msgid "Nickname"
|
|
454 |
msgstr "Spitzname"
|
455 |
|
456 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
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 "Website"
|
460 |
msgstr "Webseite"
|
461 |
|
@@ -475,17 +515,17 @@ msgstr "Jabber / Google Talk"
|
|
475 |
msgid "Biographical Info"
|
476 |
msgstr "Weitere Informationen"
|
477 |
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
479 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
480 |
msgid "Fields"
|
481 |
msgstr "Felder"
|
482 |
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
484 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
485 |
msgid "A&U Extended"
|
486 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
487 |
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
489 |
#, fuzzy
|
490 |
msgid "Users Extended"
|
491 |
msgstr "Liste aller \"Benutzer\""
|
@@ -504,44 +544,64 @@ msgstr "Die \"GD image library\" ist nicht installiert"
|
|
504 |
msgid "File '%s' is not an image."
|
505 |
msgstr "Datei '%s' muss Bild-Datei sein"
|
506 |
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
508 |
#, php-format
|
509 |
msgid "New user registration on your site %s:"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
514 |
#, fuzzy, php-format
|
515 |
msgid "Username: %s"
|
516 |
msgstr "\"Benutzer\"name"
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
519 |
#, fuzzy, php-format
|
520 |
msgid "E-mail: %s"
|
521 |
msgstr "E-Mail: %s"
|
522 |
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
524 |
#, php-format
|
525 |
msgid "[%s] New User Registration"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
529 |
#, fuzzy, php-format
|
530 |
msgid "Password: %s"
|
531 |
msgstr "Passwort"
|
532 |
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
534 |
#, php-format
|
535 |
msgid "[%s] Your username and password"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
540 |
#, php-format
|
541 |
msgid "%s: %s"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
545 |
#, php-format
|
546 |
msgid ""
|
547 |
"To activate your user, please click the following link:\n"
|
@@ -552,76 +612,58 @@ msgid ""
|
|
552 |
"\n"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
557 |
msgid "Your account is now active!"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
561 |
#, php-format
|
562 |
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>."
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
566 |
msgid "An error occurred during the activation"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
570 |
#, fuzzy
|
571 |
msgid "Username:"
|
572 |
msgstr "\"Benutzer\"name"
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
575 |
#, fuzzy
|
576 |
msgid "Password:"
|
577 |
msgstr "Passwort"
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
580 |
msgid "Invalid activation key."
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
584 |
msgid "The site is already active."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
588 |
msgid "Could not create user"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
592 |
msgid "That username is already activated."
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
596 |
msgid "That username is currently reserved but may be available in a couple of days."
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
600 |
msgid "username and email used"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
604 |
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."
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
608 |
-
#, fuzzy
|
609 |
-
msgid "Delete the file"
|
610 |
-
msgstr "Bild löschen"
|
611 |
-
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
613 |
-
#, fuzzy
|
614 |
-
msgid "Update the file"
|
615 |
-
msgstr "Bild aktualisieren"
|
616 |
-
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
618 |
-
msgid "Update the picture"
|
619 |
-
msgstr "Bild aktualisieren"
|
620 |
-
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
622 |
-
msgid "Picture URL:"
|
623 |
-
msgstr "URL für Bild:"
|
624 |
-
|
625 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
626 |
msgid "Add field"
|
627 |
msgstr "Feld hinzufügen"
|
@@ -643,17 +685,17 @@ msgid "Change order"
|
|
643 |
msgstr "Reihenfolge ändern "
|
644 |
|
645 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
646 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
647 |
msgid "Min length"
|
648 |
msgstr "Minimale Länge"
|
649 |
|
650 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
651 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
652 |
msgid "Exact length"
|
653 |
msgstr "Exakte Länge"
|
654 |
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
657 |
msgid "Max length"
|
658 |
msgstr "Maximale Länge"
|
659 |
|
@@ -683,17 +725,17 @@ msgid "deleted correctly"
|
|
683 |
msgstr "erfolgreich gelöscht"
|
684 |
|
685 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
687 |
msgid "Min size"
|
688 |
msgstr "Minimale Größe"
|
689 |
|
690 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
692 |
msgid "Exact size"
|
693 |
msgstr "Exakte Größe"
|
694 |
|
695 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
697 |
msgid "Max size"
|
698 |
msgstr "Maximale Größe"
|
699 |
|
@@ -768,274 +810,274 @@ msgstr "Update erfolgreich"
|
|
768 |
msgid "Name inserted is just in the database, change to another one"
|
769 |
msgstr "Dieser Name ist in der Datenbank bereits vorhanden, bitte wähle einen anderen"
|
770 |
|
771 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
772 |
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."
|
773 |
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."
|
774 |
|
775 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
776 |
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'"
|
777 |
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."
|
778 |
|
779 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
780 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
781 |
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"
|
782 |
|
783 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
784 |
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"
|
785 |
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."
|
786 |
|
787 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
788 |
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)"
|
789 |
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)."
|
790 |
|
791 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
792 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
793 |
msgstr "Bei <strong>registration-date</strong> gilt: <em>ENTSRPICHT(equal TO)</em> meint das Format für Datum und Zeit."
|
794 |
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
796 |
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"
|
797 |
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."
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
800 |
#, fuzzy
|
801 |
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"
|
802 |
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."
|
803 |
|
804 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
805 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
808 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
809 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
810 |
msgid "Name"
|
811 |
msgstr "Name"
|
812 |
|
813 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
817 |
msgid "Value"
|
818 |
msgstr "Wert/$value"
|
819 |
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
821 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
msgid "Type"
|
825 |
msgstr "Typ"
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
829 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
msgid "Label"
|
832 |
msgstr "Bezeichnung/\"label\""
|
833 |
|
|
|
834 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
837 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
838 |
msgid "Description"
|
839 |
msgstr "Beschreibung"
|
840 |
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
843 |
msgid "Rules"
|
844 |
msgstr "Regeln"
|
845 |
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
msgid "Actions"
|
849 |
msgstr "Aktion"
|
850 |
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
853 |
#, fuzzy
|
854 |
msgid "Fieldset"
|
855 |
msgstr "Felder"
|
856 |
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
msgid "Can be empty"
|
860 |
msgstr "Kann leer sein"
|
861 |
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
864 |
msgid "Check for E-mail syntax"
|
865 |
msgstr "Kontrollieren Sie bitte die E-Mail-Syntax"
|
866 |
|
867 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
869 |
msgid "Can be modified"
|
870 |
msgstr "Änderung des Feldes möglich"
|
871 |
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
873 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
874 |
msgid "Can be modified only if empty"
|
875 |
msgstr "Änderung des Feldes möglich wenn leer"
|
876 |
|
877 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
879 |
msgid "Can be modified only by admin"
|
880 |
msgstr "Änderung des Feldes nur durch Admin möglich"
|
881 |
|
882 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
883 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
884 |
msgid "Can be modified only by admin or if empty"
|
885 |
msgstr "Änderung des Feldes nur durch Admin, oder wenn leer"
|
886 |
|
887 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
889 |
msgid "Cannot be modified"
|
890 |
msgstr "Änderung des Feldes nicht möglich"
|
891 |
|
892 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
894 |
msgid "Should be equal TO"
|
895 |
msgstr "ENTSPRICHT (equal TO) folgendem"
|
896 |
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
898 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
899 |
msgid "Case sensitive"
|
900 |
msgstr "Groß-/Kleinschreibung beachten"
|
901 |
|
902 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
903 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
904 |
msgid "Regular Expression"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
908 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
909 |
msgid "Show the field in the registration"
|
910 |
msgstr "Zeige das Feld bei der Registrierung"
|
911 |
|
912 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
913 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
914 |
msgid "Show the field in User's profile"
|
915 |
msgstr "Zeige das Feld im \"Benutzer\"profil"
|
916 |
|
917 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
918 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
919 |
msgid "Show the field in A&U Extended menu"
|
920 |
msgstr "Zeige das Feld in der \"Liste aller Benutzer\""
|
921 |
|
922 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
923 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
924 |
#, fuzzy
|
925 |
msgid "Show the field in the search engine"
|
926 |
msgstr "Zeige das Feld bei der Registrierung"
|
927 |
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
#, fuzzy
|
931 |
msgid "Show the field in the blog"
|
932 |
msgstr "Zeige das Feld bei der Registrierung"
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
#, fuzzy
|
937 |
msgid "Show the field if the role is at least:"
|
938 |
msgstr "Zeige das Feld bei der Registrierung"
|
939 |
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
942 |
msgid "Anonymous"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
946 |
msgid "Clear"
|
947 |
msgstr "Löschen"
|
948 |
|
949 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
950 |
msgid "Invert selection"
|
951 |
msgstr "Auswahl umkehren"
|
952 |
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
954 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
955 |
msgstr "Bist Du sicher, dass du diese(s) Feld(er) und alle Daten, die von \"Benutzer\"n angelegt wurden, löschen möchtest?"
|
956 |
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
958 |
msgid "WordPress Fields"
|
959 |
msgstr "WordPress Felder"
|
960 |
|
961 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
962 |
msgid "None!"
|
963 |
msgstr "Keine!"
|
964 |
|
965 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
966 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
967 |
msgid "Order"
|
968 |
msgstr "Reihenfolge"
|
969 |
|
970 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
971 |
msgid "Reset"
|
972 |
msgstr "Reset"
|
973 |
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
975 |
#, fuzzy
|
976 |
msgid "select"
|
977 |
msgstr "Löschen"
|
978 |
|
979 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
980 |
#, php-format
|
981 |
msgid "Users Matching \"%s\""
|
982 |
msgstr "Benutzer Matching \"%s\""
|
983 |
|
984 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
985 |
#, fuzzy
|
986 |
msgid "Users Extended List"
|
987 |
msgstr "Liste aller \"Benutzer\""
|
988 |
|
989 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
990 |
msgid "Authors & Users Extended List"
|
991 |
msgstr "Liste aller \"Benutzer\""
|
992 |
|
993 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
994 |
#, php-format
|
995 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
999 |
msgid "Search Users"
|
1000 |
msgstr "Suche \"Benutzer\""
|
1001 |
|
1002 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1003 |
msgid "« Back to All Users"
|
1004 |
msgstr "« Zurück zu \"Alle Benutzer\""
|
1005 |
|
1006 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1007 |
msgid "Users per page"
|
1008 |
msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
|
1009 |
|
1010 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1011 |
msgid "Apply"
|
1012 |
msgstr "anwenden"
|
1013 |
|
1014 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1015 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1016 |
msgid "Username"
|
1017 |
msgstr "\"Benutzer\"name"
|
1018 |
|
1019 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1020 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1021 |
msgid "E-mail"
|
1022 |
msgstr "E-Mail"
|
1023 |
|
1024 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1025 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1026 |
msgid "Role"
|
1027 |
msgstr "\"Benutzer\"-Rollen"
|
1028 |
|
1029 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1030 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1031 |
msgid "Posts"
|
1032 |
msgstr "Artikel"
|
1033 |
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1035 |
msgid "View posts by this author"
|
1036 |
msgstr "Zeige Artikel dieses Autors"
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1039 |
#, php-format
|
1040 |
msgid "e-mail: %s"
|
1041 |
msgstr "E-Mail: %s"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-09-21 00:22+0300\n"
|
6 |
+
"PO-Revision-Date: 2010-09-21 00:22+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:442
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
27 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
|
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "FEHLER"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "hat eine fehlerhafte Email-Syntax. "
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "darf nicht leer sein."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:441
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "ist nicht richtig"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
55 |
msgid "YES"
|
56 |
msgstr "JA"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
59 |
msgid "NO"
|
60 |
msgstr "NEIN"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
63 |
msgid "should be"
|
64 |
msgstr "sollte sein"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
67 |
msgid "should be an image."
|
68 |
msgstr "sollte ein Bild sein."
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "darf keine Größe haben unter"
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "darf keine Länge haben unter"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "darf keine Größe haben, die um mehr abweicht als"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "darf keine Länge habe, die um mehr abweicht als"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "darf keine Größe haben über"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "darf keine Länge haben über"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:824
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
104 |
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:369
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
110 |
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:910
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:911
|
116 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \\\" ? $ % ^ & )."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:948
|
120 |
+
#, fuzzy
|
121 |
+
msgid "Change image"
|
122 |
+
msgstr "Reihenfolge ändern "
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:951
|
125 |
+
msgid "Insert the code:"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
162 |
msgid "Options deleted"
|
163 |
msgstr "Einstellungen gelöscht"
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:345
|
166 |
msgid "Options changed"
|
167 |
msgstr "Einstellungen aktualisiert"
|
168 |
|
169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:472
|
170 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
174 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:726
|
176 |
msgid "Options"
|
177 |
msgstr "Einstellungen"
|
178 |
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
180 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
181 |
msgid "Add a new Field"
|
182 |
msgstr "Ein neues Feld hinzufügen"
|
183 |
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:796
|
186 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:249
|
188 |
msgid "Extra Fields"
|
189 |
msgstr "Benutzerdefinierte Felder"
|
190 |
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
192 |
msgid "Support the Cimy Project"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
196 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:508
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1221
|
201 |
msgid "SUCCESSFUL"
|
202 |
msgstr "ERFOLGREICH"
|
203 |
|
204 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
206 |
msgid "Save Changes"
|
207 |
msgstr "Einstellungen aktualisieren"
|
208 |
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:522
|
210 |
msgid "General"
|
211 |
msgstr "Allgemein"
|
212 |
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
214 |
msgid "installed is"
|
215 |
msgstr "installiert ist"
|
216 |
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
218 |
msgid "OPTIONS DELETED!"
|
219 |
msgstr "EINSTELLUNGEN GELÖSCHT!"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:542
|
223 |
msgid "Fix the problem"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
227 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
228 |
msgstr "VERSIONEN NICHT KOMPATIBEL! Du hast das Plugin nach dem Update nicht deaktiviert und anschließend reaktiviert. Das könnte Probleme geben..."
|
229 |
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
231 |
msgid "Picture/Avatar upload"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:552
|
235 |
msgid "is created and writable"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
239 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
243 |
#, fuzzy
|
244 |
msgid "Show all fields in the welcome email"
|
245 |
msgstr "Zeige das Feld bei der Registrierung"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
248 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
|
252 |
msgid "Enable email confirmation"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:577
|
256 |
msgid "user that registers should confirm its email address via a link click"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
|
260 |
+
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
264 |
+
msgid "Redirect to the source"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:590
|
268 |
+
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
272 |
+
msgid "No captcha"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
|
276 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:610
|
280 |
msgid "Public KEY"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
284 |
msgid "Private KEY"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:622
|
288 |
+
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
292 |
+
msgid "This captcha is probably weaker, but is easier for users"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
296 |
+
#, php-format
|
297 |
+
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:636
|
301 |
msgid "Change login/registration page logo"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:641
|
305 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
306 |
msgid "Delete the picture"
|
307 |
msgstr "Bild löschen"
|
308 |
|
309 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
310 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
|
314 |
msgid "Database"
|
315 |
msgstr "Datenbank"
|
316 |
|
317 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:677
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
|
320 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
321 |
msgid "select action"
|
322 |
msgstr "Wähle Aktion"
|
323 |
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:660
|
325 |
msgid "Default values"
|
326 |
msgstr "Werte: Grundeinstellung"
|
327 |
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:698
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
|
332 |
msgid "Delete"
|
333 |
msgstr "Löschen"
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:702
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
339 |
msgid "NOT PRESENT"
|
340 |
msgstr "NICHT VORHANDEN"
|
341 |
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
343 |
msgid "WordPress Fields table"
|
344 |
msgstr "WP-Datenbank-Tabelle"
|
345 |
|
346 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:678
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
|
349 |
msgid "Empty"
|
350 |
msgstr "Leer"
|
351 |
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
353 |
msgid "Extra Fields table"
|
354 |
msgstr "Tabelle \"Benutzerdefinierte Felder\""
|
355 |
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
357 |
msgid "Users Data table"
|
358 |
msgstr "Tabelle \"Benutzerdaten\""
|
359 |
|
360 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
361 |
msgid "all data inserted by users in all and only extra fields"
|
362 |
msgstr "alle von \"Benutzern\" in die Cimy-Zusatzfelder eingetragenen Daten"
|
363 |
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
365 |
msgid "Force tables creation"
|
366 |
msgstr "Erzwingt die Erstellung der Datenbanktabellen"
|
367 |
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
369 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
370 |
msgstr "Achtung: Mit dieser Einstellung zwingen Sie das PlugIn die Datenbanktabellen zu erstellen. Dieser Schritt wird auch bei (De-)Aktivierung des PlugIns durchgeführt."
|
371 |
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
373 |
msgid "User Profile"
|
374 |
msgstr "\"Benutzer\" Profil"
|
375 |
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
377 |
msgid "Extra Fields section title"
|
378 |
msgstr "Titel für \"Benutzerdefinierte Felder\""
|
379 |
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
381 |
msgid "Fieldset's titles, separates with comma"
|
382 |
msgstr "Titel des Abschnitts der \"Benutzerdefinierten Felder\", abgetrennt durch Kommata (',')"
|
383 |
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
385 |
msgid "example: title1,title2,title3"
|
386 |
msgstr "Beispiel: Titel1, Titel2, Titel3"
|
387 |
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
389 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:747
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
395 |
msgid "Authors & Users Extended"
|
396 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
397 |
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
|
399 |
msgid "Hide username field"
|
400 |
msgstr "Feld: \"'Benutzer'-Name\" nicht anzeigen"
|
401 |
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
403 |
msgid "Hide name field"
|
404 |
msgstr "Feld: \"Name\" nicht anzeigen"
|
405 |
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:762
|
407 |
msgid "Hide email field"
|
408 |
msgstr "Feld: \"E-mail Adresse\" nicht anzeigen"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
411 |
msgid "Hide role field"
|
412 |
msgstr "Feld: \"Rolle\" des \"Benutzers\" nicht anzeigen"
|
413 |
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
415 |
msgid "Hide website field"
|
416 |
msgstr "Feld: \"Webseite\" nicht anzeigen"
|
417 |
|
418 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:774
|
419 |
msgid "Hide n. posts field"
|
420 |
msgstr "Feld: Anzahl der von \"Benutzer(n)\" erstellten Artikel nicht anzeigen"
|
421 |
|
422 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
|
423 |
msgid "WordPress hidden fields"
|
424 |
msgstr "Feld: \"Wordpress hidden fields\" (verborgene Felder)"
|
425 |
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
427 |
msgid "Show password"
|
428 |
msgstr "\"Passwort\" anzeigen"
|
429 |
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
431 |
#, fuzzy
|
432 |
msgid "Show confirmation password"
|
433 |
msgstr "\"Passwort\" anzeigen"
|
434 |
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:790
|
436 |
#, fuzzy
|
437 |
msgid "Show password strength meter"
|
438 |
msgstr "\"Passwort\" anzeigen"
|
439 |
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:794
|
441 |
msgid "Show first name"
|
442 |
msgstr "Zeige \"Vornamen\""
|
443 |
|
444 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:798
|
445 |
msgid "Show last name"
|
446 |
msgstr "Zeige \"Nachnamen\""
|
447 |
|
448 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:802
|
449 |
msgid "Show nickname"
|
450 |
msgstr "Zeige \"Nicknamen\"/Spitznamen"
|
451 |
|
452 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:806
|
453 |
msgid "Show website"
|
454 |
msgstr "Zeige \"Webseite\""
|
455 |
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:810
|
457 |
msgid "Show AIM"
|
458 |
msgstr "Zeige \"AIM\""
|
459 |
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:814
|
461 |
msgid "Show Yahoo IM"
|
462 |
msgstr "Zeige \"Yahoo IM\""
|
463 |
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:818
|
465 |
msgid "Show Jabber / Google Talk"
|
466 |
msgstr "Zeige \"Jabber / Google Talk\""
|
467 |
|
468 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:822
|
469 |
msgid "Show Biographical Info"
|
470 |
msgstr "\"Weitere Informationen\" anzeigen"
|
471 |
|
494 |
msgstr "Spitzname"
|
495 |
|
496 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
499 |
msgid "Website"
|
500 |
msgstr "Webseite"
|
501 |
|
515 |
msgid "Biographical Info"
|
516 |
msgstr "Weitere Informationen"
|
517 |
|
518 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:727
|
519 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
520 |
msgid "Fields"
|
521 |
msgstr "Felder"
|
522 |
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
525 |
msgid "A&U Extended"
|
526 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
527 |
|
528 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:732
|
529 |
#, fuzzy
|
530 |
msgid "Users Extended"
|
531 |
msgstr "Liste aller \"Benutzer\""
|
544 |
msgid "File '%s' is not an image."
|
545 |
msgstr "Datei '%s' muss Bild-Datei sein"
|
546 |
|
547 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
548 |
+
#, fuzzy
|
549 |
+
msgid "Delete the file"
|
550 |
+
msgstr "Bild löschen"
|
551 |
+
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
553 |
+
#, fuzzy
|
554 |
+
msgid "Update the file"
|
555 |
+
msgstr "Bild aktualisieren"
|
556 |
+
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
558 |
+
msgid "Update the picture"
|
559 |
+
msgstr "Bild aktualisieren"
|
560 |
+
|
561 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
562 |
+
msgid "Picture URL:"
|
563 |
+
msgstr "URL für Bild:"
|
564 |
+
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:38
|
566 |
#, php-format
|
567 |
msgid "New user registration on your site %s:"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:39
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:50
|
572 |
#, fuzzy, php-format
|
573 |
msgid "Username: %s"
|
574 |
msgstr "\"Benutzer\"name"
|
575 |
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:40
|
577 |
#, fuzzy, php-format
|
578 |
msgid "E-mail: %s"
|
579 |
msgstr "E-Mail: %s"
|
580 |
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
582 |
#, php-format
|
583 |
msgid "[%s] New User Registration"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:51
|
587 |
#, fuzzy, php-format
|
588 |
msgid "Password: %s"
|
589 |
msgstr "Passwort"
|
590 |
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
592 |
#, php-format
|
593 |
msgid "[%s] Your username and password"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:91
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:97
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:109
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:115
|
600 |
#, php-format
|
601 |
msgid "%s: %s"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:189
|
605 |
#, php-format
|
606 |
msgid ""
|
607 |
"To activate your user, please click the following link:\n"
|
612 |
"\n"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:204
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
617 |
msgid "Your account is now active!"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
621 |
#, php-format
|
622 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:207
|
626 |
msgid "An error occurred during the activation"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
630 |
#, fuzzy
|
631 |
msgid "Username:"
|
632 |
msgstr "\"Benutzer\"name"
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
635 |
#, fuzzy
|
636 |
msgid "Password:"
|
637 |
msgstr "Passwort"
|
638 |
|
639 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:226
|
640 |
msgid "Invalid activation key."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:229
|
644 |
msgid "The site is already active."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:248
|
648 |
msgid "Could not create user"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
652 |
msgid "That username is already activated."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:279
|
656 |
msgid "That username is currently reserved but may be available in a couple of days."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:282
|
660 |
msgid "username and email used"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
664 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
665 |
msgstr ""
|
666 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
667 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
668 |
msgid "Add field"
|
669 |
msgstr "Feld hinzufügen"
|
685 |
msgstr "Reihenfolge ändern "
|
686 |
|
687 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
688 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
|
689 |
msgid "Min length"
|
690 |
msgstr "Minimale Länge"
|
691 |
|
692 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1041
|
694 |
msgid "Exact length"
|
695 |
msgstr "Exakte Länge"
|
696 |
|
697 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1042
|
699 |
msgid "Max length"
|
700 |
msgstr "Maximale Länge"
|
701 |
|
725 |
msgstr "erfolgreich gelöscht"
|
726 |
|
727 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
728 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
|
729 |
msgid "Min size"
|
730 |
msgstr "Minimale Größe"
|
731 |
|
732 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1033
|
734 |
msgid "Exact size"
|
735 |
msgstr "Exakte Größe"
|
736 |
|
737 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1034
|
739 |
msgid "Max size"
|
740 |
msgstr "Maximale Größe"
|
741 |
|
810 |
msgid "Name inserted is just in the database, change to another one"
|
811 |
msgstr "Dieser Name ist in der Datenbank bereits vorhanden, bitte wähle einen anderen"
|
812 |
|
813 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
814 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
815 |
msgstr "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."
|
816 |
|
817 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
818 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
819 |
msgstr "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."
|
820 |
|
821 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
822 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
823 |
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"
|
824 |
|
825 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
826 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
827 |
msgstr "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."
|
828 |
|
829 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
|
830 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
831 |
msgstr "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)."
|
832 |
|
833 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
834 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
835 |
msgstr "Bei <strong>registration-date</strong> gilt: <em>ENTSRPICHT(equal TO)</em> meint das Format für Datum und Zeit."
|
836 |
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
|
838 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
839 |
msgstr "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."
|
840 |
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
842 |
#, fuzzy
|
843 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
844 |
msgstr "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."
|
845 |
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1475
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
852 |
msgid "Name"
|
853 |
msgstr "Name"
|
854 |
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:643
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
859 |
msgid "Value"
|
860 |
msgstr "Wert/$value"
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1071
|
866 |
msgid "Type"
|
867 |
msgstr "Typ"
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:665
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1093
|
873 |
msgid "Label"
|
874 |
msgstr "Bezeichnung/\"label\""
|
875 |
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
877 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
879 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1096
|
|
|
880 |
msgid "Description"
|
881 |
msgstr "Beschreibung"
|
882 |
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
884 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
885 |
msgid "Rules"
|
886 |
msgstr "Regeln"
|
887 |
|
888 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:636
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:826
|
890 |
msgid "Actions"
|
891 |
msgstr "Aktion"
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1087
|
895 |
#, fuzzy
|
896 |
msgid "Fieldset"
|
897 |
msgstr "Felder"
|
898 |
|
899 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
900 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1110
|
901 |
msgid "Can be empty"
|
902 |
msgstr "Kann leer sein"
|
903 |
|
904 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
906 |
msgid "Check for E-mail syntax"
|
907 |
msgstr "Kontrollieren Sie bitte die E-Mail-Syntax"
|
908 |
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
911 |
msgid "Can be modified"
|
912 |
msgstr "Änderung des Feldes möglich"
|
913 |
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:683
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
916 |
msgid "Can be modified only if empty"
|
917 |
msgstr "Änderung des Feldes möglich wenn leer"
|
918 |
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
920 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1116
|
921 |
msgid "Can be modified only by admin"
|
922 |
msgstr "Änderung des Feldes nur durch Admin möglich"
|
923 |
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
926 |
msgid "Can be modified only by admin or if empty"
|
927 |
msgstr "Änderung des Feldes nur durch Admin, oder wenn leer"
|
928 |
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
931 |
msgid "Cannot be modified"
|
932 |
msgstr "Änderung des Feldes nicht möglich"
|
933 |
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1123
|
936 |
msgid "Should be equal TO"
|
937 |
msgstr "ENTSPRICHT (equal TO) folgendem"
|
938 |
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:696
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1125
|
941 |
msgid "Case sensitive"
|
942 |
msgstr "Groß-/Kleinschreibung beachten"
|
943 |
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:699
|
945 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
946 |
msgid "Regular Expression"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
951 |
msgid "Show the field in the registration"
|
952 |
msgstr "Zeige das Feld bei der Registrierung"
|
953 |
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
956 |
msgid "Show the field in User's profile"
|
957 |
msgstr "Zeige das Feld im \"Benutzer\"profil"
|
958 |
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
961 |
msgid "Show the field in A&U Extended menu"
|
962 |
msgstr "Zeige das Feld in der \"Liste aller Benutzer\""
|
963 |
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1146
|
966 |
#, fuzzy
|
967 |
msgid "Show the field in the search engine"
|
968 |
msgstr "Zeige das Feld bei der Registrierung"
|
969 |
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
972 |
#, fuzzy
|
973 |
msgid "Show the field in the blog"
|
974 |
msgstr "Zeige das Feld bei der Registrierung"
|
975 |
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1152
|
978 |
#, fuzzy
|
979 |
msgid "Show the field if the role is at least:"
|
980 |
msgstr "Zeige das Feld bei der Registrierung"
|
981 |
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1154
|
984 |
msgid "Anonymous"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
|
988 |
msgid "Clear"
|
989 |
msgstr "Löschen"
|
990 |
|
991 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
992 |
msgid "Invert selection"
|
993 |
msgstr "Auswahl umkehren"
|
994 |
|
995 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:788
|
996 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
997 |
msgstr "Bist Du sicher, dass du diese(s) Feld(er) und alle Daten, die von \"Benutzer\"n angelegt wurden, löschen möchtest?"
|
998 |
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:794
|
1000 |
msgid "WordPress Fields"
|
1001 |
msgstr "WordPress Felder"
|
1002 |
|
1003 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1004 |
msgid "None!"
|
1005 |
msgstr "Keine!"
|
1006 |
|
1007 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
1008 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1053
|
1009 |
msgid "Order"
|
1010 |
msgstr "Reihenfolge"
|
1011 |
|
1012 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1165
|
1013 |
msgid "Reset"
|
1014 |
msgstr "Reset"
|
1015 |
|
1016 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1250
|
1017 |
#, fuzzy
|
1018 |
msgid "select"
|
1019 |
msgstr "Löschen"
|
1020 |
|
1021 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1353
|
1022 |
#, php-format
|
1023 |
msgid "Users Matching \"%s\""
|
1024 |
msgstr "Benutzer Matching \"%s\""
|
1025 |
|
1026 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
1027 |
#, fuzzy
|
1028 |
msgid "Users Extended List"
|
1029 |
msgstr "Liste aller \"Benutzer\""
|
1030 |
|
1031 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1359
|
1032 |
msgid "Authors & Users Extended List"
|
1033 |
msgstr "Liste aller \"Benutzer\""
|
1034 |
|
1035 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1036 |
#, php-format
|
1037 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
1041 |
msgid "Search Users"
|
1042 |
msgstr "Suche \"Benutzer\""
|
1043 |
|
1044 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1436
|
1045 |
msgid "« Back to All Users"
|
1046 |
msgstr "« Zurück zu \"Alle Benutzer\""
|
1047 |
|
1048 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
1049 |
msgid "Users per page"
|
1050 |
msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
|
1051 |
|
1052 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
1053 |
msgid "Apply"
|
1054 |
msgstr "anwenden"
|
1055 |
|
1056 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1470
|
1057 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
1058 |
msgid "Username"
|
1059 |
msgstr "\"Benutzer\"name"
|
1060 |
|
1061 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1480
|
1062 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
1063 |
msgid "E-mail"
|
1064 |
msgstr "E-Mail"
|
1065 |
|
1066 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1485
|
1067 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
1068 |
msgid "Role"
|
1069 |
msgstr "\"Benutzer\"-Rollen"
|
1070 |
|
1071 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1495
|
1072 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
1073 |
msgid "Posts"
|
1074 |
msgstr "Artikel"
|
1075 |
|
1076 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1605
|
1077 |
msgid "View posts by this author"
|
1078 |
msgstr "Zeige Artikel dieses Autors"
|
1079 |
|
1080 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
|
1081 |
#, php-format
|
1082 |
msgid "e-mail: %s"
|
1083 |
msgstr "E-Mail: %s"
|
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: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,104 +16,115 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
|
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
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/
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:567
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:435
|
33 |
msgid "ERROR"
|
34 |
msgstr "ERROR"
|
35 |
|
36 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
37 |
msgid "does not match."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
41 |
msgid "hasn’t a correct email syntax."
|
42 |
msgstr "no está en el formato correcto de e-mail. "
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
45 |
msgid "couldn’t be empty."
|
46 |
msgstr "no puede estar vacío."
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
msgid "isn’t correct"
|
51 |
msgstr "no es correcto"
|
52 |
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
54 |
msgid "YES"
|
55 |
msgstr "SI"
|
56 |
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
msgid "NO"
|
59 |
msgstr "NO"
|
60 |
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
62 |
msgid "should be"
|
63 |
msgstr "no debe ser"
|
64 |
|
65 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
66 |
msgid "should be an image."
|
67 |
msgstr "no debe ser una imagen."
|
68 |
|
69 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
70 |
msgid "couldn’t have size less than"
|
71 |
msgstr "no puede tener un tamaño menor a"
|
72 |
|
73 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
74 |
msgid "couldn’t have length less than"
|
75 |
msgstr "no puede tener una longitud menor a"
|
76 |
|
77 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
78 |
msgid "couldn’t have size different than"
|
79 |
msgstr "no puede tener tamaño diferente a"
|
80 |
|
81 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
82 |
msgid "couldn’t have length different than"
|
83 |
msgstr "no puede tener longitud diferente a"
|
84 |
|
85 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
86 |
msgid "couldn’t have size more than"
|
87 |
msgstr "no puede tener tamaño mayor a"
|
88 |
|
89 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
90 |
msgid "couldn’t have length more than"
|
91 |
msgstr "no puede tener longitud mayor a"
|
92 |
|
93 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
94 |
msgid "Typed code is not correct."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
98 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
99 |
#, fuzzy
|
100 |
msgid "Please upload a file with one of the following extensions"
|
101 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
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_options.php:
|
105 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
106 |
msgid "Please upload an image with one of the following extensions"
|
107 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
msgid "Strength indicator"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
114 |
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 ! \\\" ? $ % ^ & )."
|
115 |
msgstr ""
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
118 |
msgid "no fieldset"
|
119 |
msgstr "no hay grupo de campos"
|
@@ -150,281 +161,310 @@ msgstr "Opciones asignadas los valores por defecto"
|
|
150 |
msgid "Options deleted"
|
151 |
msgstr "Opciones borradas"
|
152 |
|
153 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
154 |
msgid "Options changed"
|
155 |
msgstr "Opciones cambiadas"
|
156 |
|
157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
158 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
159 |
msgstr "Esta operación creará/actualizará todas las opciones/tablas faltantes ¿Desea continuar?"
|
160 |
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
162 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
164 |
msgid "Options"
|
165 |
msgstr "Opciones"
|
166 |
|
167 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
168 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
169 |
msgid "Add a new Field"
|
170 |
msgstr "Agregar un nuevo Campo"
|
171 |
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
174 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
175 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
176 |
msgid "Extra Fields"
|
177 |
msgstr "Campos Adicionales"
|
178 |
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
180 |
msgid "Support the Cimy Project"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
184 |
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!"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
189 |
msgid "SUCCESSFUL"
|
190 |
msgstr "EXITOSO"
|
191 |
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
194 |
msgid "Save Changes"
|
195 |
msgstr "Salvar cambios"
|
196 |
|
197 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
198 |
msgid "General"
|
199 |
msgstr "General"
|
200 |
|
201 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
202 |
msgid "installed is"
|
203 |
msgstr "instalada es"
|
204 |
|
205 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
206 |
msgid "OPTIONS DELETED!"
|
207 |
msgstr "OPCIONES BORRADAS!"
|
208 |
|
209 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
msgid "Fix the problem"
|
212 |
msgstr "Arreglar el problema"
|
213 |
|
214 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
215 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
216 |
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..."
|
217 |
|
218 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
219 |
msgid "Picture/Avatar upload"
|
220 |
msgstr "Subida de foto/avatar"
|
221 |
|
222 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
223 |
msgid "is created and writable"
|
224 |
msgstr "existe y tiene permisos de escritura"
|
225 |
|
226 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
227 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
228 |
msgstr "no está creado o el servidor web no tiene permisos de escritura"
|
229 |
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
231 |
#, fuzzy
|
232 |
msgid "Show all fields in the welcome email"
|
233 |
msgstr "Mostrar el campo en el registro"
|
234 |
|
235 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
236 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
240 |
msgid "Enable email confirmation"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
244 |
msgid "user that registers should confirm its email address via a link click"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
252 |
msgid "Public KEY"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
256 |
msgid "Private KEY"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
msgid "Change login/registration page logo"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
264 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
265 |
msgid "Delete the picture"
|
266 |
msgstr "Borrar la imagen"
|
267 |
|
268 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
269 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
273 |
msgid "Database"
|
274 |
msgstr "Base de Datos"
|
275 |
|
276 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
279 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
280 |
msgid "select action"
|
281 |
msgstr "seleccione acción"
|
282 |
|
283 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
284 |
msgid "Default values"
|
285 |
msgstr "Valores por defecto"
|
286 |
|
287 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
288 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
291 |
msgid "Delete"
|
292 |
msgstr "Borrar"
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
295 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
msgid "NOT PRESENT"
|
299 |
msgstr "NO EXISTE"
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
302 |
msgid "WordPress Fields table"
|
303 |
msgstr "tabla de Campos WordPress"
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
308 |
msgid "Empty"
|
309 |
msgstr "Vacío"
|
310 |
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
312 |
msgid "Extra Fields table"
|
313 |
msgstr "Tabla de campos adicionales"
|
314 |
|
315 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
316 |
msgid "Users Data table"
|
317 |
msgstr "Tabla de datos del usuario"
|
318 |
|
319 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
320 |
msgid "all data inserted by users in all and only extra fields"
|
321 |
msgstr "todos las datos insertados por los usuarios en todos (y unicamente) los campos adicionales"
|
322 |
|
323 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
324 |
msgid "Force tables creation"
|
325 |
msgstr "Forzar la creación de tablas"
|
326 |
|
327 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
328 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
329 |
msgstr "Equivalente a desactivar y activar el plug-in. No se realizará otra operación."
|
330 |
|
331 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
332 |
msgid "User Profile"
|
333 |
msgstr "Perfil de usuario"
|
334 |
|
335 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
336 |
msgid "Extra Fields section title"
|
337 |
msgstr "Título de la sección de campos adicionales"
|
338 |
|
339 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
340 |
msgid "Fieldset's titles, separates with comma"
|
341 |
msgstr "Títulos de los grupos de campo, separar con coma"
|
342 |
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
344 |
msgid "example: title1,title2,title3"
|
345 |
msgstr "ejemplo: título 1, título 2, título 3"
|
346 |
|
347 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
348 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
349 |
msgstr "<strong>nota:</strong> si cambia el orden o quita grupos de campos posiblemente deba reasignar todos los campos adicionales a su grupo correspondiente"
|
350 |
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
354 |
msgid "Authors & Users Extended"
|
355 |
msgstr "Autores & Usuarios Extendido"
|
356 |
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
358 |
msgid "Hide username field"
|
359 |
msgstr "Esconder campo de nombre de usuario"
|
360 |
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
362 |
msgid "Hide name field"
|
363 |
msgstr "Esconder campo de nombre"
|
364 |
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
366 |
msgid "Hide email field"
|
367 |
msgstr "Esconder campo de correo electrónico"
|
368 |
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
370 |
msgid "Hide role field"
|
371 |
msgstr "Esconder campo de rol"
|
372 |
|
373 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
374 |
msgid "Hide website field"
|
375 |
msgstr "Esconder el campo de sitio web"
|
376 |
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
378 |
msgid "Hide n. posts field"
|
379 |
msgstr "Esconder el campo de n. entradas"
|
380 |
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
382 |
msgid "WordPress hidden fields"
|
383 |
msgstr "Campos escondidos WordPress"
|
384 |
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
386 |
msgid "Show password"
|
387 |
msgstr "Mostrar contraseña"
|
388 |
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
390 |
#, fuzzy
|
391 |
msgid "Show confirmation password"
|
392 |
msgstr "Mostrar contraseña"
|
393 |
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
395 |
#, fuzzy
|
396 |
msgid "Show password strength meter"
|
397 |
msgstr "Mostrar contraseña"
|
398 |
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
400 |
msgid "Show first name"
|
401 |
msgstr "Mostrar primer nombre"
|
402 |
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
404 |
msgid "Show last name"
|
405 |
msgstr "Mostrar apellido"
|
406 |
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
408 |
msgid "Show nickname"
|
409 |
msgstr "Mostrar sobrenombre"
|
410 |
|
411 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
412 |
msgid "Show website"
|
413 |
msgstr "Mostrar sitio web"
|
414 |
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
416 |
msgid "Show AIM"
|
417 |
msgstr "Mostrar AIM"
|
418 |
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
420 |
msgid "Show Yahoo IM"
|
421 |
msgstr "Mostrar mensajero Yahoo"
|
422 |
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
424 |
msgid "Show Jabber / Google Talk"
|
425 |
msgstr "Mostrar Jabber / Google Talk"
|
426 |
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
428 |
msgid "Show Biographical Info"
|
429 |
msgstr "Mostrar información biográfica"
|
430 |
|
@@ -453,8 +493,8 @@ msgid "Nickname"
|
|
453 |
msgstr "Sobrenombre"
|
454 |
|
455 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
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 "Website"
|
459 |
msgstr "Sitio Web"
|
460 |
|
@@ -474,17 +514,17 @@ msgstr "Jabber / Google Talk"
|
|
474 |
msgid "Biographical Info"
|
475 |
msgstr "Información Biográfica"
|
476 |
|
477 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
478 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
479 |
msgid "Fields"
|
480 |
msgstr "Campos"
|
481 |
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
484 |
msgid "A&U Extended"
|
485 |
msgstr "A&U Extendido"
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
488 |
#, fuzzy
|
489 |
msgid "Users Extended"
|
490 |
msgstr "Usuarios extendido"
|
@@ -503,44 +543,64 @@ msgstr "La librería GD image no está instalada."
|
|
503 |
msgid "File '%s' is not an image."
|
504 |
msgstr "El archivo '%s' no es una imagen."
|
505 |
|
506 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
507 |
#, php-format
|
508 |
msgid "New user registration on your site %s:"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
513 |
#, fuzzy, php-format
|
514 |
msgid "Username: %s"
|
515 |
msgstr "Nombre de usuario"
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
518 |
#, fuzzy, php-format
|
519 |
msgid "E-mail: %s"
|
520 |
msgstr "correo electrónico: %s"
|
521 |
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
523 |
#, php-format
|
524 |
msgid "[%s] New User Registration"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
528 |
#, fuzzy, php-format
|
529 |
msgid "Password: %s"
|
530 |
msgstr "Contraseña"
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
533 |
#, php-format
|
534 |
msgid "[%s] Your username and password"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
539 |
#, php-format
|
540 |
msgid "%s: %s"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
544 |
#, php-format
|
545 |
msgid ""
|
546 |
"To activate your user, please click the following link:\n"
|
@@ -551,76 +611,58 @@ msgid ""
|
|
551 |
"\n"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
556 |
msgid "Your account is now active!"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
560 |
#, php-format
|
561 |
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>."
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
565 |
msgid "An error occurred during the activation"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
569 |
#, fuzzy
|
570 |
msgid "Username:"
|
571 |
msgstr "Nombre de usuario"
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
574 |
#, fuzzy
|
575 |
msgid "Password:"
|
576 |
msgstr "Contraseña"
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
579 |
msgid "Invalid activation key."
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
583 |
msgid "The site is already active."
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
587 |
msgid "Could not create user"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
591 |
msgid "That username is already activated."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
595 |
msgid "That username is currently reserved but may be available in a couple of days."
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
599 |
msgid "username and email used"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
603 |
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."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
607 |
-
#, fuzzy
|
608 |
-
msgid "Delete the file"
|
609 |
-
msgstr "Borrar la imagen"
|
610 |
-
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
612 |
-
#, fuzzy
|
613 |
-
msgid "Update the file"
|
614 |
-
msgstr "Actualizar la imagen"
|
615 |
-
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
617 |
-
msgid "Update the picture"
|
618 |
-
msgstr "Actualizar la imagen"
|
619 |
-
|
620 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
621 |
-
msgid "Picture URL:"
|
622 |
-
msgstr "URL de la imagen:"
|
623 |
-
|
624 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
625 |
msgid "Add field"
|
626 |
msgstr "Agregar campo"
|
@@ -642,17 +684,17 @@ msgid "Change order"
|
|
642 |
msgstr "Cambiar orden"
|
643 |
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
645 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
646 |
msgid "Min length"
|
647 |
msgstr "Longitud mínima"
|
648 |
|
649 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
650 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
651 |
msgid "Exact length"
|
652 |
msgstr "Longitud exacta"
|
653 |
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
656 |
msgid "Max length"
|
657 |
msgstr "Longitud máxima"
|
658 |
|
@@ -682,17 +724,17 @@ msgid "deleted correctly"
|
|
682 |
msgstr "borrado correctamente"
|
683 |
|
684 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
686 |
msgid "Min size"
|
687 |
msgstr "Tamaño mínimo"
|
688 |
|
689 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
691 |
msgid "Exact size"
|
692 |
msgstr "Tamaño exacto"
|
693 |
|
694 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
696 |
msgid "Max size"
|
697 |
msgstr "Tamaño máximo"
|
698 |
|
@@ -767,272 +809,272 @@ msgstr "Actualizado correctamente"
|
|
767 |
msgid "Name inserted is just in the database, change to another one"
|
768 |
msgstr "El nombre insertado"
|
769 |
|
770 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
771 |
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."
|
772 |
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."
|
773 |
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
775 |
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'"
|
776 |
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"
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
779 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
780 |
msgstr "Con <strong>drop-down</strong>: debe agregar todas las opciones en \"etiqueta\" por ejemplo: etiqueta/elemento1,elemento2,elemento3"
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
783 |
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"
|
784 |
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"
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
787 |
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)"
|
788 |
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)"
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
791 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
792 |
msgstr "Con <strong>registration-date</strong>: <em>igual a</em> significa el formato de fecha y hora"
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
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"
|
796 |
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"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
799 |
#, fuzzy
|
800 |
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"
|
801 |
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"
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
804 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
805 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
808 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
809 |
msgid "Name"
|
810 |
msgstr "Nombre"
|
811 |
|
812 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
813 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
msgid "Value"
|
817 |
msgstr "Valor"
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
821 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
msgid "Type"
|
824 |
msgstr "Tipo"
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
829 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
830 |
msgid "Label"
|
831 |
msgstr "Etiqueta"
|
832 |
|
|
|
833 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
837 |
msgid "Description"
|
838 |
msgstr "Descripción"
|
839 |
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
842 |
msgid "Rules"
|
843 |
msgstr "Reglas"
|
844 |
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
msgid "Actions"
|
848 |
msgstr "Acciones"
|
849 |
|
850 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
852 |
msgid "Fieldset"
|
853 |
msgstr "Grupo de campos"
|
854 |
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
857 |
msgid "Can be empty"
|
858 |
msgstr "Puede estar vacío"
|
859 |
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
861 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
862 |
msgid "Check for E-mail syntax"
|
863 |
msgstr "Checar formato de e-mail"
|
864 |
|
865 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
866 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
867 |
msgid "Can be modified"
|
868 |
msgstr "Puede ser modificado"
|
869 |
|
870 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
871 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
872 |
msgid "Can be modified only if empty"
|
873 |
msgstr "Puede ser modificado solo si está vacío"
|
874 |
|
875 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
877 |
msgid "Can be modified only by admin"
|
878 |
msgstr "Puede ser modificado solo por el administrador"
|
879 |
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
882 |
msgid "Can be modified only by admin or if empty"
|
883 |
msgstr "Puede ser modificado solo por el administrador o si está vacío"
|
884 |
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
886 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
887 |
msgid "Cannot be modified"
|
888 |
msgstr "No puede ser modificado"
|
889 |
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
891 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
892 |
msgid "Should be equal TO"
|
893 |
msgstr "Debe ser igual a"
|
894 |
|
895 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
897 |
msgid "Case sensitive"
|
898 |
msgstr "Distinción mayúsculas y minúsculas"
|
899 |
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
901 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
902 |
msgid "Regular Expression"
|
903 |
msgstr "Expresión regular"
|
904 |
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
906 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
907 |
msgid "Show the field in the registration"
|
908 |
msgstr "Mostrar el campo en el registro"
|
909 |
|
910 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
911 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
912 |
msgid "Show the field in User's profile"
|
913 |
msgstr "Mostrar el campo en el perfil del usuario"
|
914 |
|
915 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
917 |
msgid "Show the field in A&U Extended menu"
|
918 |
msgstr "Mostrar el campo en el menú extendido de A&U"
|
919 |
|
920 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
921 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
922 |
#, fuzzy
|
923 |
msgid "Show the field in the search engine"
|
924 |
msgstr "Mostrar el campo en el registro"
|
925 |
|
926 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
927 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
928 |
#, fuzzy
|
929 |
msgid "Show the field in the blog"
|
930 |
msgstr "Mostrar el campo en el registro"
|
931 |
|
932 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
934 |
#, fuzzy
|
935 |
msgid "Show the field if the role is at least:"
|
936 |
msgstr "Mostrar el campo en el registro"
|
937 |
|
938 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
msgid "Anonymous"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
944 |
msgid "Clear"
|
945 |
msgstr "Vaciar"
|
946 |
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
948 |
msgid "Invert selection"
|
949 |
msgstr "Invertir Selección"
|
950 |
|
951 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
952 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
953 |
msgstr "&lquot;Está seguro de que quiere borrar los campos y todos los datos insertados por los usuarios?"
|
954 |
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
msgid "WordPress Fields"
|
957 |
msgstr "Campos WordPress"
|
958 |
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
msgid "None!"
|
961 |
msgstr "Ninguno!"
|
962 |
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
msgid "Order"
|
966 |
msgstr "Orden"
|
967 |
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
969 |
msgid "Reset"
|
970 |
msgstr "Reestablecer"
|
971 |
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
973 |
#, fuzzy
|
974 |
msgid "select"
|
975 |
msgstr "Borrar"
|
976 |
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
978 |
#, php-format
|
979 |
msgid "Users Matching \"%s\""
|
980 |
msgstr "Usuarios que concuerdan con \"%s\""
|
981 |
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
983 |
msgid "Users Extended List"
|
984 |
msgstr "Lista de usuarios extendida"
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
987 |
msgid "Authors & Users Extended List"
|
988 |
msgstr "Lista de autores y usuarios extendida"
|
989 |
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
991 |
#, php-format
|
992 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
996 |
msgid "Search Users"
|
997 |
msgstr "Buscar Usuarios"
|
998 |
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1000 |
msgid "« Back to All Users"
|
1001 |
msgstr "« Regresar a \"todos los usuarios\""
|
1002 |
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
msgid "Users per page"
|
1005 |
msgstr "Usuarios por página"
|
1006 |
|
1007 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1008 |
msgid "Apply"
|
1009 |
msgstr "Aplicar"
|
1010 |
|
1011 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1013 |
msgid "Username"
|
1014 |
msgstr "Nombre de usuario"
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1018 |
msgid "E-mail"
|
1019 |
msgstr "Correo electrónico"
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1023 |
msgid "Role"
|
1024 |
msgstr "Rol"
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1027 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1028 |
msgid "Posts"
|
1029 |
msgstr "Entradas"
|
1030 |
|
1031 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1032 |
msgid "View posts by this author"
|
1033 |
msgstr "Ver entradas de este autor"
|
1034 |
|
1035 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1036 |
#, php-format
|
1037 |
msgid "e-mail: %s"
|
1038 |
msgstr "correo electrónico: %s"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-09-21 00:22+0300\n"
|
6 |
+
"PO-Revision-Date: 2010-09-21 00:22+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:442
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
27 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
|
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERROR"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "no está en el formato correcto de e-mail. "
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "no puede estar vacío."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:441
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "no es correcto"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
55 |
msgid "YES"
|
56 |
msgstr "SI"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
59 |
msgid "NO"
|
60 |
msgstr "NO"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
63 |
msgid "should be"
|
64 |
msgstr "no debe ser"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
67 |
msgid "should be an image."
|
68 |
msgstr "no debe ser una imagen."
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "no puede tener un tamaño menor a"
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "no puede tener una longitud menor a"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "no puede tener tamaño diferente a"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "no puede tener longitud diferente a"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "no puede tener tamaño mayor a"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "no puede tener longitud mayor a"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:824
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
104 |
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:369
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
110 |
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:910
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:911
|
116 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \\\" ? $ % ^ & )."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:948
|
120 |
+
#, fuzzy
|
121 |
+
msgid "Change image"
|
122 |
+
msgstr "Cambiar orden"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:951
|
125 |
+
msgid "Insert the code:"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
129 |
msgid "no fieldset"
|
130 |
msgstr "no hay grupo de campos"
|
161 |
msgid "Options deleted"
|
162 |
msgstr "Opciones borradas"
|
163 |
|
164 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:345
|
165 |
msgid "Options changed"
|
166 |
msgstr "Opciones cambiadas"
|
167 |
|
168 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:472
|
169 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
170 |
msgstr "Esta operación creará/actualizará todas las opciones/tablas faltantes ¿Desea continuar?"
|
171 |
|
172 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
174 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:726
|
175 |
msgid "Options"
|
176 |
msgstr "Opciones"
|
177 |
|
178 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
179 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
180 |
msgid "Add a new Field"
|
181 |
msgstr "Agregar un nuevo Campo"
|
182 |
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:796
|
185 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
186 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:249
|
187 |
msgid "Extra Fields"
|
188 |
msgstr "Campos Adicionales"
|
189 |
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
191 |
msgid "Support the Cimy Project"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
195 |
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!"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:508
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1221
|
200 |
msgid "SUCCESSFUL"
|
201 |
msgstr "EXITOSO"
|
202 |
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
204 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
205 |
msgid "Save Changes"
|
206 |
msgstr "Salvar cambios"
|
207 |
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:522
|
209 |
msgid "General"
|
210 |
msgstr "General"
|
211 |
|
212 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
213 |
msgid "installed is"
|
214 |
msgstr "instalada es"
|
215 |
|
216 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
217 |
msgid "OPTIONS DELETED!"
|
218 |
msgstr "OPCIONES BORRADAS!"
|
219 |
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:542
|
222 |
msgid "Fix the problem"
|
223 |
msgstr "Arreglar el problema"
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
226 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
227 |
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..."
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
230 |
msgid "Picture/Avatar upload"
|
231 |
msgstr "Subida de foto/avatar"
|
232 |
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:552
|
234 |
msgid "is created and writable"
|
235 |
msgstr "existe y tiene permisos de escritura"
|
236 |
|
237 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
238 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
239 |
msgstr "no está creado o el servidor web no tiene permisos de escritura"
|
240 |
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
242 |
#, fuzzy
|
243 |
msgid "Show all fields in the welcome email"
|
244 |
msgstr "Mostrar el campo en el registro"
|
245 |
|
246 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
247 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
|
251 |
msgid "Enable email confirmation"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:577
|
255 |
msgid "user that registers should confirm its email address via a link click"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
|
259 |
+
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
263 |
+
msgid "Redirect to the source"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:590
|
267 |
+
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
271 |
+
msgid "No captcha"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
|
275 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:610
|
279 |
msgid "Public KEY"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
283 |
msgid "Private KEY"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:622
|
287 |
+
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
291 |
+
msgid "This captcha is probably weaker, but is easier for users"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
295 |
+
#, php-format
|
296 |
+
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:636
|
300 |
msgid "Change login/registration page logo"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:641
|
304 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
305 |
msgid "Delete the picture"
|
306 |
msgstr "Borrar la imagen"
|
307 |
|
308 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
309 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
|
313 |
msgid "Database"
|
314 |
msgstr "Base de Datos"
|
315 |
|
316 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
|
317 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:677
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
320 |
msgid "select action"
|
321 |
msgstr "seleccione acción"
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:660
|
324 |
msgid "Default values"
|
325 |
msgstr "Valores por defecto"
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:698
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
|
331 |
msgid "Delete"
|
332 |
msgstr "Borrar"
|
333 |
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:702
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
338 |
msgid "NOT PRESENT"
|
339 |
msgstr "NO EXISTE"
|
340 |
|
341 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
342 |
msgid "WordPress Fields table"
|
343 |
msgstr "tabla de Campos WordPress"
|
344 |
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:678
|
346 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
|
348 |
msgid "Empty"
|
349 |
msgstr "Vacío"
|
350 |
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
352 |
msgid "Extra Fields table"
|
353 |
msgstr "Tabla de campos adicionales"
|
354 |
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
356 |
msgid "Users Data table"
|
357 |
msgstr "Tabla de datos del usuario"
|
358 |
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
360 |
msgid "all data inserted by users in all and only extra fields"
|
361 |
msgstr "todos las datos insertados por los usuarios en todos (y unicamente) los campos adicionales"
|
362 |
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
364 |
msgid "Force tables creation"
|
365 |
msgstr "Forzar la creación de tablas"
|
366 |
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
368 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
369 |
msgstr "Equivalente a desactivar y activar el plug-in. No se realizará otra operación."
|
370 |
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
372 |
msgid "User Profile"
|
373 |
msgstr "Perfil de usuario"
|
374 |
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
376 |
msgid "Extra Fields section title"
|
377 |
msgstr "Título de la sección de campos adicionales"
|
378 |
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
380 |
msgid "Fieldset's titles, separates with comma"
|
381 |
msgstr "Títulos de los grupos de campo, separar con coma"
|
382 |
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
384 |
msgid "example: title1,title2,title3"
|
385 |
msgstr "ejemplo: título 1, título 2, título 3"
|
386 |
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
388 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
389 |
msgstr "<strong>nota:</strong> si cambia el orden o quita grupos de campos posiblemente deba reasignar todos los campos adicionales a su grupo correspondiente"
|
390 |
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:747
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
394 |
msgid "Authors & Users Extended"
|
395 |
msgstr "Autores & Usuarios Extendido"
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
|
398 |
msgid "Hide username field"
|
399 |
msgstr "Esconder campo de nombre de usuario"
|
400 |
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
402 |
msgid "Hide name field"
|
403 |
msgstr "Esconder campo de nombre"
|
404 |
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:762
|
406 |
msgid "Hide email field"
|
407 |
msgstr "Esconder campo de correo electrónico"
|
408 |
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
410 |
msgid "Hide role field"
|
411 |
msgstr "Esconder campo de rol"
|
412 |
|
413 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
414 |
msgid "Hide website field"
|
415 |
msgstr "Esconder el campo de sitio web"
|
416 |
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:774
|
418 |
msgid "Hide n. posts field"
|
419 |
msgstr "Esconder el campo de n. entradas"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
|
422 |
msgid "WordPress hidden fields"
|
423 |
msgstr "Campos escondidos WordPress"
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
426 |
msgid "Show password"
|
427 |
msgstr "Mostrar contraseña"
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
430 |
#, fuzzy
|
431 |
msgid "Show confirmation password"
|
432 |
msgstr "Mostrar contraseña"
|
433 |
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:790
|
435 |
#, fuzzy
|
436 |
msgid "Show password strength meter"
|
437 |
msgstr "Mostrar contraseña"
|
438 |
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:794
|
440 |
msgid "Show first name"
|
441 |
msgstr "Mostrar primer nombre"
|
442 |
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:798
|
444 |
msgid "Show last name"
|
445 |
msgstr "Mostrar apellido"
|
446 |
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:802
|
448 |
msgid "Show nickname"
|
449 |
msgstr "Mostrar sobrenombre"
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:806
|
452 |
msgid "Show website"
|
453 |
msgstr "Mostrar sitio web"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:810
|
456 |
msgid "Show AIM"
|
457 |
msgstr "Mostrar AIM"
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:814
|
460 |
msgid "Show Yahoo IM"
|
461 |
msgstr "Mostrar mensajero Yahoo"
|
462 |
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:818
|
464 |
msgid "Show Jabber / Google Talk"
|
465 |
msgstr "Mostrar Jabber / Google Talk"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:822
|
468 |
msgid "Show Biographical Info"
|
469 |
msgstr "Mostrar información biográfica"
|
470 |
|
493 |
msgstr "Sobrenombre"
|
494 |
|
495 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
498 |
msgid "Website"
|
499 |
msgstr "Sitio Web"
|
500 |
|
514 |
msgid "Biographical Info"
|
515 |
msgstr "Información Biográfica"
|
516 |
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:727
|
518 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
519 |
msgid "Fields"
|
520 |
msgstr "Campos"
|
521 |
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
524 |
msgid "A&U Extended"
|
525 |
msgstr "A&U Extendido"
|
526 |
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:732
|
528 |
#, fuzzy
|
529 |
msgid "Users Extended"
|
530 |
msgstr "Usuarios extendido"
|
543 |
msgid "File '%s' is not an image."
|
544 |
msgstr "El archivo '%s' no es una imagen."
|
545 |
|
546 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
547 |
+
#, fuzzy
|
548 |
+
msgid "Delete the file"
|
549 |
+
msgstr "Borrar la imagen"
|
550 |
+
|
551 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
552 |
+
#, fuzzy
|
553 |
+
msgid "Update the file"
|
554 |
+
msgstr "Actualizar la imagen"
|
555 |
+
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
557 |
+
msgid "Update the picture"
|
558 |
+
msgstr "Actualizar la imagen"
|
559 |
+
|
560 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
561 |
+
msgid "Picture URL:"
|
562 |
+
msgstr "URL de la imagen:"
|
563 |
+
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:38
|
565 |
#, php-format
|
566 |
msgid "New user registration on your site %s:"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:39
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:50
|
571 |
#, fuzzy, php-format
|
572 |
msgid "Username: %s"
|
573 |
msgstr "Nombre de usuario"
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:40
|
576 |
#, fuzzy, php-format
|
577 |
msgid "E-mail: %s"
|
578 |
msgstr "correo electrónico: %s"
|
579 |
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
581 |
#, php-format
|
582 |
msgid "[%s] New User Registration"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:51
|
586 |
#, fuzzy, php-format
|
587 |
msgid "Password: %s"
|
588 |
msgstr "Contraseña"
|
589 |
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
591 |
#, php-format
|
592 |
msgid "[%s] Your username and password"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:91
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:97
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:109
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:115
|
599 |
#, php-format
|
600 |
msgid "%s: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:189
|
604 |
#, php-format
|
605 |
msgid ""
|
606 |
"To activate your user, please click the following link:\n"
|
611 |
"\n"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:204
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
616 |
msgid "Your account is now active!"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
620 |
#, php-format
|
621 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:207
|
625 |
msgid "An error occurred during the activation"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
629 |
#, fuzzy
|
630 |
msgid "Username:"
|
631 |
msgstr "Nombre de usuario"
|
632 |
|
633 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
634 |
#, fuzzy
|
635 |
msgid "Password:"
|
636 |
msgstr "Contraseña"
|
637 |
|
638 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:226
|
639 |
msgid "Invalid activation key."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:229
|
643 |
msgid "The site is already active."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:248
|
647 |
msgid "Could not create user"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
651 |
msgid "That username is already activated."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:279
|
655 |
msgid "That username is currently reserved but may be available in a couple of days."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:282
|
659 |
msgid "username and email used"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
663 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
664 |
msgstr ""
|
665 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
666 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
667 |
msgid "Add field"
|
668 |
msgstr "Agregar campo"
|
684 |
msgstr "Cambiar orden"
|
685 |
|
686 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
687 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
|
688 |
msgid "Min length"
|
689 |
msgstr "Longitud mínima"
|
690 |
|
691 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
692 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1041
|
693 |
msgid "Exact length"
|
694 |
msgstr "Longitud exacta"
|
695 |
|
696 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1042
|
698 |
msgid "Max length"
|
699 |
msgstr "Longitud máxima"
|
700 |
|
724 |
msgstr "borrado correctamente"
|
725 |
|
726 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
|
728 |
msgid "Min size"
|
729 |
msgstr "Tamaño mínimo"
|
730 |
|
731 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1033
|
733 |
msgid "Exact size"
|
734 |
msgstr "Tamaño exacto"
|
735 |
|
736 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
737 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1034
|
738 |
msgid "Max size"
|
739 |
msgstr "Tamaño máximo"
|
740 |
|
809 |
msgid "Name inserted is just in the database, change to another one"
|
810 |
msgstr "El nombre insertado"
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
813 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
814 |
msgstr "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."
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
817 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
818 |
msgstr "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"
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
821 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
822 |
msgstr "Con <strong>drop-down</strong>: debe agregar todas las opciones en \"etiqueta\" por ejemplo: etiqueta/elemento1,elemento2,elemento3"
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
825 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
826 |
msgstr "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"
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
|
829 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
830 |
msgstr "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)"
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
833 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
834 |
msgstr "Con <strong>registration-date</strong>: <em>igual a</em> significa el formato de fecha y hora"
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
|
837 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
838 |
msgstr "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"
|
839 |
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
841 |
#, fuzzy
|
842 |
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"
|
843 |
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"
|
844 |
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1475
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
851 |
msgid "Name"
|
852 |
msgstr "Nombre"
|
853 |
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:643
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
858 |
msgid "Value"
|
859 |
msgstr "Valor"
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1071
|
865 |
msgid "Type"
|
866 |
msgstr "Tipo"
|
867 |
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:665
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1093
|
872 |
msgid "Label"
|
873 |
msgstr "Etiqueta"
|
874 |
|
875 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
876 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1096
|
|
|
879 |
msgid "Description"
|
880 |
msgstr "Descripción"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
884 |
msgid "Rules"
|
885 |
msgstr "Reglas"
|
886 |
|
887 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:636
|
888 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:826
|
889 |
msgid "Actions"
|
890 |
msgstr "Acciones"
|
891 |
|
892 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1087
|
894 |
msgid "Fieldset"
|
895 |
msgstr "Grupo de campos"
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1110
|
899 |
msgid "Can be empty"
|
900 |
msgstr "Puede estar vacío"
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
903 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
904 |
msgid "Check for E-mail syntax"
|
905 |
msgstr "Checar formato de e-mail"
|
906 |
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
|
908 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
909 |
msgid "Can be modified"
|
910 |
msgstr "Puede ser modificado"
|
911 |
|
912 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:683
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
914 |
msgid "Can be modified only if empty"
|
915 |
msgstr "Puede ser modificado solo si está vacío"
|
916 |
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1116
|
919 |
msgid "Can be modified only by admin"
|
920 |
msgstr "Puede ser modificado solo por el administrador"
|
921 |
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
924 |
msgid "Can be modified only by admin or if empty"
|
925 |
msgstr "Puede ser modificado solo por el administrador o si está vacío"
|
926 |
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
929 |
msgid "Cannot be modified"
|
930 |
msgstr "No puede ser modificado"
|
931 |
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1123
|
934 |
msgid "Should be equal TO"
|
935 |
msgstr "Debe ser igual a"
|
936 |
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:696
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1125
|
939 |
msgid "Case sensitive"
|
940 |
msgstr "Distinción mayúsculas y minúsculas"
|
941 |
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:699
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
944 |
msgid "Regular Expression"
|
945 |
msgstr "Expresión regular"
|
946 |
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
949 |
msgid "Show the field in the registration"
|
950 |
msgstr "Mostrar el campo en el registro"
|
951 |
|
952 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
954 |
msgid "Show the field in User's profile"
|
955 |
msgstr "Mostrar el campo en el perfil del usuario"
|
956 |
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
959 |
msgid "Show the field in A&U Extended menu"
|
960 |
msgstr "Mostrar el campo en el menú extendido de A&U"
|
961 |
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1146
|
964 |
#, fuzzy
|
965 |
msgid "Show the field in the search engine"
|
966 |
msgstr "Mostrar el campo en el registro"
|
967 |
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
970 |
#, fuzzy
|
971 |
msgid "Show the field in the blog"
|
972 |
msgstr "Mostrar el campo en el registro"
|
973 |
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1152
|
976 |
#, fuzzy
|
977 |
msgid "Show the field if the role is at least:"
|
978 |
msgstr "Mostrar el campo en el registro"
|
979 |
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1154
|
982 |
msgid "Anonymous"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
|
986 |
msgid "Clear"
|
987 |
msgstr "Vaciar"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
990 |
msgid "Invert selection"
|
991 |
msgstr "Invertir Selección"
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:788
|
994 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
995 |
msgstr "&lquot;Está seguro de que quiere borrar los campos y todos los datos insertados por los usuarios?"
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:794
|
998 |
msgid "WordPress Fields"
|
999 |
msgstr "Campos WordPress"
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1002 |
msgid "None!"
|
1003 |
msgstr "Ninguno!"
|
1004 |
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1053
|
1007 |
msgid "Order"
|
1008 |
msgstr "Orden"
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1165
|
1011 |
msgid "Reset"
|
1012 |
msgstr "Reestablecer"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1250
|
1015 |
#, fuzzy
|
1016 |
msgid "select"
|
1017 |
msgstr "Borrar"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1353
|
1020 |
#, php-format
|
1021 |
msgid "Users Matching \"%s\""
|
1022 |
msgstr "Usuarios que concuerdan con \"%s\""
|
1023 |
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
1025 |
msgid "Users Extended List"
|
1026 |
msgstr "Lista de usuarios extendida"
|
1027 |
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1359
|
1029 |
msgid "Authors & Users Extended List"
|
1030 |
msgstr "Lista de autores y usuarios extendida"
|
1031 |
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1033 |
#, php-format
|
1034 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
1038 |
msgid "Search Users"
|
1039 |
msgstr "Buscar Usuarios"
|
1040 |
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1436
|
1042 |
msgid "« Back to All Users"
|
1043 |
msgstr "« Regresar a \"todos los usuarios\""
|
1044 |
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
1046 |
msgid "Users per page"
|
1047 |
msgstr "Usuarios por página"
|
1048 |
|
1049 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
1050 |
msgid "Apply"
|
1051 |
msgstr "Aplicar"
|
1052 |
|
1053 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1470
|
1054 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
1055 |
msgid "Username"
|
1056 |
msgstr "Nombre de usuario"
|
1057 |
|
1058 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1480
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
1060 |
msgid "E-mail"
|
1061 |
msgstr "Correo electrónico"
|
1062 |
|
1063 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1485
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
1065 |
msgid "Role"
|
1066 |
msgstr "Rol"
|
1067 |
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1495
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
1070 |
msgid "Posts"
|
1071 |
msgstr "Entradas"
|
1072 |
|
1073 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1605
|
1074 |
msgid "View posts by this author"
|
1075 |
msgstr "Ver entradas de este autor"
|
1076 |
|
1077 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
|
1078 |
#, php-format
|
1079 |
msgid "e-mail: %s"
|
1080 |
msgstr "correo electrónico: %s"
|
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: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,104 +16,115 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
|
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
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/
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:567
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:435
|
33 |
msgid "ERROR"
|
34 |
msgstr "ERREUR"
|
35 |
|
36 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
37 |
msgid "does not match."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
41 |
msgid "hasn’t a correct email syntax."
|
42 |
msgstr "n’a pas une syntaxe e-mail correcte"
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
45 |
msgid "couldn’t be empty."
|
46 |
msgstr "ne peut pas être vide."
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
msgid "isn’t correct"
|
51 |
msgstr "n’est pas correct"
|
52 |
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
54 |
msgid "YES"
|
55 |
msgstr "OUI"
|
56 |
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
msgid "NO"
|
59 |
msgstr "NON"
|
60 |
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
62 |
msgid "should be"
|
63 |
msgstr "doit être"
|
64 |
|
65 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
66 |
msgid "should be an image."
|
67 |
msgstr "doit être une image."
|
68 |
|
69 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
70 |
msgid "couldn’t have size less than"
|
71 |
msgstr "ne peut pas avoir une taille inférieure à"
|
72 |
|
73 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
74 |
msgid "couldn’t have length less than"
|
75 |
msgstr "ne peut pas avoir une longueur inférieure à"
|
76 |
|
77 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
78 |
msgid "couldn’t have size different than"
|
79 |
msgstr "ne peut pas avoir une taille différente de"
|
80 |
|
81 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
82 |
msgid "couldn’t have length different than"
|
83 |
msgstr "ne peut pas avoir une longueur différente de"
|
84 |
|
85 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
86 |
msgid "couldn’t have size more than"
|
87 |
msgstr "ne peut pas avoir une taille supérieure à"
|
88 |
|
89 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
90 |
msgid "couldn’t have length more than"
|
91 |
msgstr "ne peut pas avoir une longueur supérieure à"
|
92 |
|
93 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
94 |
msgid "Typed code is not correct."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
98 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
99 |
#, fuzzy
|
100 |
msgid "Please upload a file with one of the following extensions"
|
101 |
msgstr "SVP chargez une image avec l'une des extensions suivantes"
|
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_options.php:
|
105 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
106 |
msgid "Please upload an image with one of the following extensions"
|
107 |
msgstr "SVP chargez une image avec l'une des extensions suivantes"
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
msgid "Strength indicator"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
114 |
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 ! \\\" ? $ % ^ & )."
|
115 |
msgstr ""
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
118 |
#, fuzzy
|
119 |
msgid "no fieldset"
|
@@ -151,282 +162,311 @@ msgstr "Options réinitialisées avec les valeurs par défaut"
|
|
151 |
msgid "Options deleted"
|
152 |
msgstr "Options supprimées"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
155 |
msgid "Options changed"
|
156 |
msgstr "Options changées"
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
159 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
164 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
165 |
msgid "Options"
|
166 |
msgstr "Options"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
169 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
170 |
msgid "Add a new Field"
|
171 |
msgstr "Ajouter un nouveau champ"
|
172 |
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
175 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
176 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
177 |
msgid "Extra Fields"
|
178 |
msgstr "Champs Supplémentaires"
|
179 |
|
180 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
181 |
msgid "Support the Cimy Project"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
185 |
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!"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
msgid "SUCCESSFUL"
|
191 |
msgstr "AVEC SUCCES"
|
192 |
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
195 |
msgid "Save Changes"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
199 |
msgid "General"
|
200 |
msgstr "Général"
|
201 |
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
203 |
msgid "installed is"
|
204 |
msgstr "installé"
|
205 |
|
206 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
207 |
msgid "OPTIONS DELETED!"
|
208 |
msgstr "OPTIONS SUPPRIMEES!"
|
209 |
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
msgid "Fix the problem"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
216 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
217 |
msgstr "VERSION NE CORRESPONDANT PAS! Ceci arrive lorsque vous n'ave pas désactivé et réactivé le plug-in après sa mise à jour! Cela peut poser problème..."
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
220 |
msgid "Picture/Avatar upload"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
msgid "is created and writable"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
228 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
232 |
#, fuzzy
|
233 |
msgid "Show all fields in the welcome email"
|
234 |
msgstr "Montrer le champ lors de l'inscription"
|
235 |
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
237 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
241 |
msgid "Enable email confirmation"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
245 |
msgid "user that registers should confirm its email address via a link click"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
253 |
msgid "Public KEY"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
257 |
msgid "Private KEY"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
msgid "Change login/registration page logo"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
265 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
266 |
#, fuzzy
|
267 |
msgid "Delete the picture"
|
268 |
msgstr "Supprimer le champ"
|
269 |
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
271 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
275 |
msgid "Database"
|
276 |
msgstr "Database"
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
279 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
280 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
msgid "select action"
|
283 |
msgstr "sélectionner une action"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
286 |
msgid "Default values"
|
287 |
msgstr "Valeurs par défaut"
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
291 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
292 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
293 |
msgid "Delete"
|
294 |
msgstr "Supprimer"
|
295 |
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
299 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
300 |
msgid "NOT PRESENT"
|
301 |
msgstr "NON PRESENT"
|
302 |
|
303 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
304 |
msgid "WordPress Fields table"
|
305 |
msgstr "Table des champs Wordpress"
|
306 |
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
310 |
msgid "Empty"
|
311 |
msgstr "Vider"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
314 |
msgid "Extra Fields table"
|
315 |
msgstr "Table des champs supplémentaires"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
318 |
msgid "Users Data table"
|
319 |
msgstr "Table des données utilisateurs"
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
322 |
msgid "all data inserted by users in all and only extra fields"
|
323 |
msgstr "toutes les données insérées par les utilsateurs et seulement les champs supplémentaires"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
msgid "Force tables creation"
|
327 |
msgstr "Forcer la création des tables"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
330 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
334 |
msgid "User Profile"
|
335 |
msgstr "Profil utilisateur"
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
338 |
#, fuzzy
|
339 |
msgid "Extra Fields section title"
|
340 |
msgstr "Table des champs supplémentaires"
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
343 |
msgid "Fieldset's titles, separates with comma"
|
344 |
msgstr "Titres des regroupements, séparés par des virgules"
|
345 |
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
347 |
msgid "example: title1,title2,title3"
|
348 |
msgstr "exemple : titre1,titre2,titre3"
|
349 |
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
351 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
357 |
msgid "Authors & Users Extended"
|
358 |
msgstr "Auteurs & Utilisateurs Etendus"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
361 |
msgid "Hide username field"
|
362 |
msgstr "Cacher le champ nom d'utilisateur"
|
363 |
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
365 |
msgid "Hide name field"
|
366 |
msgstr "Cacher le champ nom"
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
369 |
msgid "Hide email field"
|
370 |
msgstr "Cacher le champ e-mail"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
373 |
#, fuzzy
|
374 |
msgid "Hide role field"
|
375 |
msgstr "Cacher le champ nom"
|
376 |
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
378 |
msgid "Hide website field"
|
379 |
msgstr "Cacher le champ du site web"
|
380 |
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
382 |
msgid "Hide n. posts field"
|
383 |
msgstr "Cacher le champ n. articles"
|
384 |
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
386 |
msgid "WordPress hidden fields"
|
387 |
msgstr "Champs Wordpress cachés"
|
388 |
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
390 |
msgid "Show password"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
394 |
msgid "Show confirmation password"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
398 |
msgid "Show password strength meter"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
402 |
msgid "Show first name"
|
403 |
msgstr "Montrer le prénom"
|
404 |
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
406 |
msgid "Show last name"
|
407 |
msgstr "Montrer le nom"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
410 |
msgid "Show nickname"
|
411 |
msgstr "Montrer le surnom"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
414 |
msgid "Show website"
|
415 |
msgstr "Montrer le site web"
|
416 |
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
418 |
msgid "Show AIM"
|
419 |
msgstr "Montrer AIM"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
422 |
msgid "Show Yahoo IM"
|
423 |
msgstr "Montrer Yahoo IM"
|
424 |
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
426 |
msgid "Show Jabber / Google Talk"
|
427 |
msgstr "Montrer Jabber / Google Talk"
|
428 |
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
430 |
msgid "Show Biographical Info"
|
431 |
msgstr ""
|
432 |
|
@@ -458,8 +498,8 @@ msgid "Nickname"
|
|
458 |
msgstr "Nom"
|
459 |
|
460 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
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 "Website"
|
464 |
msgstr ""
|
465 |
|
@@ -481,17 +521,17 @@ msgstr "Montrer Jabber / Google Talk"
|
|
481 |
msgid "Biographical Info"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
485 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
486 |
msgid "Fields"
|
487 |
msgstr "Champs"
|
488 |
|
489 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
490 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
491 |
msgid "A&U Extended"
|
492 |
msgstr "A&U Etendu"
|
493 |
|
494 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
495 |
#, fuzzy
|
496 |
msgid "Users Extended"
|
497 |
msgstr "Liste étendue des auteurs & utilisateurs"
|
@@ -510,44 +550,65 @@ msgstr ""
|
|
510 |
msgid "File '%s' is not an image."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
514 |
#, php-format
|
515 |
msgid "New user registration on your site %s:"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
519 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
520 |
#, php-format
|
521 |
msgid "Username: %s"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
525 |
#, php-format
|
526 |
msgid "E-mail: %s"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
530 |
#, php-format
|
531 |
msgid "[%s] New User Registration"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
535 |
#, php-format
|
536 |
msgid "Password: %s"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
540 |
#, php-format
|
541 |
msgid "[%s] Your username and password"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
545 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
546 |
#, php-format
|
547 |
msgid "%s: %s"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
551 |
#, php-format
|
552 |
msgid ""
|
553 |
"To activate your user, please click the following link:\n"
|
@@ -558,75 +619,56 @@ msgid ""
|
|
558 |
"\n"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
563 |
msgid "Your account is now active!"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
567 |
#, php-format
|
568 |
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>."
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
572 |
msgid "An error occurred during the activation"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
576 |
msgid "Username:"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
580 |
msgid "Password:"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
584 |
msgid "Invalid activation key."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
588 |
msgid "The site is already active."
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
592 |
msgid "Could not create user"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
596 |
msgid "That username is already activated."
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
600 |
msgid "That username is currently reserved but may be available in a couple of days."
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
604 |
msgid "username and email used"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
608 |
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."
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
612 |
-
#, fuzzy
|
613 |
-
msgid "Delete the file"
|
614 |
-
msgstr "Supprimer le champ"
|
615 |
-
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
617 |
-
#, fuzzy
|
618 |
-
msgid "Update the file"
|
619 |
-
msgstr "Mettre à jour le champ"
|
620 |
-
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
622 |
-
#, fuzzy
|
623 |
-
msgid "Update the picture"
|
624 |
-
msgstr "Mettre à jour le champ"
|
625 |
-
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
627 |
-
msgid "Picture URL:"
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
631 |
msgid "Add field"
|
632 |
msgstr "Ajouter un champ"
|
@@ -648,17 +690,17 @@ msgid "Change order"
|
|
648 |
msgstr "Changer l'ordre"
|
649 |
|
650 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
651 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
652 |
msgid "Min length"
|
653 |
msgstr "Longueur min"
|
654 |
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
657 |
msgid "Exact length"
|
658 |
msgstr "Longueur exacte"
|
659 |
|
660 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
661 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
662 |
msgid "Max length"
|
663 |
msgstr "Longueur max"
|
664 |
|
@@ -688,17 +730,17 @@ msgid "deleted correctly"
|
|
688 |
msgstr "supprmé(e) correctement"
|
689 |
|
690 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
692 |
msgid "Min size"
|
693 |
msgstr "Taille min"
|
694 |
|
695 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
697 |
msgid "Exact size"
|
698 |
msgstr "Taille exacte"
|
699 |
|
700 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
702 |
msgid "Max size"
|
703 |
msgstr "Taille max"
|
704 |
|
@@ -773,277 +815,277 @@ msgstr "mis à jour correctement"
|
|
773 |
msgid "Name inserted is just in the database, change to another one"
|
774 |
msgstr "Le nom est déjà dans la base de données, merci de le changer"
|
775 |
|
776 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
777 |
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."
|
778 |
msgstr "Pour ajouter un nouveau champ, vous devez choisir un nom, un type et un label; la valeur et la description sont optionnelles. Les règles sont appliquées lors de l'inscription d'un utilisateur."
|
779 |
|
780 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
781 |
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'"
|
782 |
msgstr "Avec les types <strong>radio</strong> et <strong>checkbox</strong>: <em>Valeur</em> et <em>égal A</em> peuvent seulement être 'Yes' ou 'No' ce qui signifie 'sélectionné' ou 'non sélectionné'"
|
783 |
|
784 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
785 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
786 |
msgstr "Avec le type <strong>drop-down</strong>: vous devez ajouter toutes les options dans le label, par exemple: label/item1,item2,item3"
|
787 |
|
788 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
789 |
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"
|
790 |
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 A</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
|
791 |
|
792 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
793 |
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)"
|
794 |
msgstr "Avec le type <strong>picture-url</strong>: vous pouvez pré-charger une image par défaut en indiqunt l'url dans <em>Valeur</em>; <em>égal A</em> indique la taille de la largeur max en pixels (la hauteur sera proportionnelle)"
|
795 |
|
796 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
797 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
798 |
msgstr "Avec le type <strong>registration-date</strong>: <em>égal A</em> indique un format date et heure"
|
799 |
|
800 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
801 |
#, fuzzy
|
802 |
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"
|
803 |
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 A</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
|
804 |
|
805 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
806 |
#, fuzzy
|
807 |
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"
|
808 |
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 A</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
813 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
msgid "Name"
|
817 |
msgstr "Nom"
|
818 |
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
821 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
msgid "Value"
|
824 |
msgstr "Valeur"
|
825 |
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
829 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
830 |
msgid "Type"
|
831 |
msgstr "Type"
|
832 |
|
833 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
837 |
msgid "Label"
|
838 |
msgstr "Label"
|
839 |
|
|
|
840 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
844 |
msgid "Description"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
msgid "Rules"
|
850 |
msgstr "Règles"
|
851 |
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
msgid "Actions"
|
855 |
msgstr "Actions"
|
856 |
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
#, fuzzy
|
860 |
msgid "Fieldset"
|
861 |
msgstr "Champs"
|
862 |
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
864 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
865 |
msgid "Can be empty"
|
866 |
msgstr "Peut être vide"
|
867 |
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
870 |
msgid "Check for E-mail syntax"
|
871 |
msgstr "Vérifier la syntaxe de l'e-mail"
|
872 |
|
873 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
874 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
875 |
msgid "Can be modified"
|
876 |
msgstr "Peut être modifié"
|
877 |
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
880 |
msgid "Can be modified only if empty"
|
881 |
msgstr "Ne peut être modifié que s'il est vide"
|
882 |
|
883 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
885 |
msgid "Can be modified only by admin"
|
886 |
msgstr "Ne peut être modifié que par un admin"
|
887 |
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
890 |
msgid "Can be modified only by admin or if empty"
|
891 |
msgstr "Ne peut être modifié que par un admin ou s'il est vide"
|
892 |
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
895 |
msgid "Cannot be modified"
|
896 |
msgstr "Ne peut pas être modifié"
|
897 |
|
898 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
899 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
900 |
msgid "Should be equal TO"
|
901 |
msgstr "Doit être égal A"
|
902 |
|
903 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
905 |
msgid "Case sensitive"
|
906 |
msgstr "Tenir compte des majuscules (case sensitive)"
|
907 |
|
908 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
910 |
msgid "Regular Expression"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
914 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
915 |
msgid "Show the field in the registration"
|
916 |
msgstr "Montrer le champ lors de l'inscription"
|
917 |
|
918 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
919 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
920 |
msgid "Show the field in User's profile"
|
921 |
msgstr "Montrer le champ dans le profil de l'utilisateur"
|
922 |
|
923 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
925 |
msgid "Show the field in A&U Extended menu"
|
926 |
msgstr "Montrer le champ dans le menu A&U étendu"
|
927 |
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
#, fuzzy
|
931 |
msgid "Show the field in the search engine"
|
932 |
msgstr "Montrer le champ lors de l'inscription"
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
#, fuzzy
|
937 |
msgid "Show the field in the blog"
|
938 |
msgstr "Montrer le champ lors de l'inscription"
|
939 |
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
942 |
#, fuzzy
|
943 |
msgid "Show the field if the role is at least:"
|
944 |
msgstr "Montrer le champ lors de l'inscription"
|
945 |
|
946 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
948 |
msgid "Anonymous"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
952 |
msgid "Clear"
|
953 |
msgstr "Vider (RAZ)"
|
954 |
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
msgid "Invert selection"
|
957 |
msgstr "Inverser la sélection"
|
958 |
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
961 |
msgstr "Etes vous sur de vouloir supprimer ce(s) champ(s) et toutes les données insérées par vos utilisateurs ?"
|
962 |
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
964 |
msgid "WordPress Fields"
|
965 |
msgstr "Champs Wordpress"
|
966 |
|
967 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
968 |
msgid "None!"
|
969 |
msgstr "Aucun !"
|
970 |
|
971 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
973 |
msgid "Order"
|
974 |
msgstr "Ordre"
|
975 |
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
977 |
msgid "Reset"
|
978 |
msgstr "Réinitialiser"
|
979 |
|
980 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
981 |
#, fuzzy
|
982 |
msgid "select"
|
983 |
msgstr "Supprimer"
|
984 |
|
985 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
986 |
#, php-format
|
987 |
msgid "Users Matching \"%s\""
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
991 |
#, fuzzy
|
992 |
msgid "Users Extended List"
|
993 |
msgstr "Liste étendue des auteurs & utilisateurs"
|
994 |
|
995 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
996 |
msgid "Authors & Users Extended List"
|
997 |
msgstr "Liste étendue des auteurs & utilisateurs"
|
998 |
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1000 |
#, php-format
|
1001 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1005 |
msgid "Search Users"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1009 |
msgid "« Back to All Users"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1013 |
#, fuzzy
|
1014 |
msgid "Users per page"
|
1015 |
msgstr "Table des données utilisateurs"
|
1016 |
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1018 |
msgid "Apply"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1023 |
msgid "Username"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1027 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1028 |
msgid "E-mail"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1033 |
#, fuzzy
|
1034 |
msgid "Role"
|
1035 |
msgstr "Règles"
|
1036 |
|
1037 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1039 |
msgid "Posts"
|
1040 |
msgstr "Articles"
|
1041 |
|
1042 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1043 |
msgid "View posts by this author"
|
1044 |
msgstr "Voir les articles de cet auteur"
|
1045 |
|
1046 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1047 |
#, php-format
|
1048 |
msgid "e-mail: %s"
|
1049 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-09-21 00:22+0300\n"
|
6 |
+
"PO-Revision-Date: 2010-09-21 00:23+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:442
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
27 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
|
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERREUR"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "n’a pas une syntaxe e-mail correcte"
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "ne peut pas être vide."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:441
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "n’est pas correct"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
55 |
msgid "YES"
|
56 |
msgstr "OUI"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
59 |
msgid "NO"
|
60 |
msgstr "NON"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
63 |
msgid "should be"
|
64 |
msgstr "doit être"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
67 |
msgid "should be an image."
|
68 |
msgstr "doit être une image."
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "ne peut pas avoir une taille inférieure à"
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "ne peut pas avoir une longueur inférieure à"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "ne peut pas avoir une taille différente de"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "ne peut pas avoir une longueur différente de"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "ne peut pas avoir une taille supérieure à"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "ne peut pas avoir une longueur supérieure à"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:824
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "SVP chargez une image avec l'une des extensions suivantes"
|
104 |
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:369
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "SVP chargez une image avec l'une des extensions suivantes"
|
110 |
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:910
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:911
|
116 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \\\" ? $ % ^ & )."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:948
|
120 |
+
#, fuzzy
|
121 |
+
msgid "Change image"
|
122 |
+
msgstr "Changer l'ordre"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:951
|
125 |
+
msgid "Insert the code:"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
162 |
msgid "Options deleted"
|
163 |
msgstr "Options supprimées"
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:345
|
166 |
msgid "Options changed"
|
167 |
msgstr "Options changées"
|
168 |
|
169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:472
|
170 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
174 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:726
|
176 |
msgid "Options"
|
177 |
msgstr "Options"
|
178 |
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
180 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
181 |
msgid "Add a new Field"
|
182 |
msgstr "Ajouter un nouveau champ"
|
183 |
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:796
|
186 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:249
|
188 |
msgid "Extra Fields"
|
189 |
msgstr "Champs Supplémentaires"
|
190 |
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
192 |
msgid "Support the Cimy Project"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
196 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:508
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1221
|
201 |
msgid "SUCCESSFUL"
|
202 |
msgstr "AVEC SUCCES"
|
203 |
|
204 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
206 |
msgid "Save Changes"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:522
|
210 |
msgid "General"
|
211 |
msgstr "Général"
|
212 |
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
214 |
msgid "installed is"
|
215 |
msgstr "installé"
|
216 |
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
218 |
msgid "OPTIONS DELETED!"
|
219 |
msgstr "OPTIONS SUPPRIMEES!"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:542
|
223 |
msgid "Fix the problem"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
227 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
228 |
msgstr "VERSION NE CORRESPONDANT PAS! Ceci arrive lorsque vous n'ave pas désactivé et réactivé le plug-in après sa mise à jour! Cela peut poser problème..."
|
229 |
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
231 |
msgid "Picture/Avatar upload"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:552
|
235 |
msgid "is created and writable"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
239 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
243 |
#, fuzzy
|
244 |
msgid "Show all fields in the welcome email"
|
245 |
msgstr "Montrer le champ lors de l'inscription"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
248 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
|
252 |
msgid "Enable email confirmation"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:577
|
256 |
msgid "user that registers should confirm its email address via a link click"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
|
260 |
+
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
264 |
+
msgid "Redirect to the source"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:590
|
268 |
+
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
272 |
+
msgid "No captcha"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
|
276 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:610
|
280 |
msgid "Public KEY"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
284 |
msgid "Private KEY"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:622
|
288 |
+
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
292 |
+
msgid "This captcha is probably weaker, but is easier for users"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
296 |
+
#, php-format
|
297 |
+
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:636
|
301 |
msgid "Change login/registration page logo"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:641
|
305 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
306 |
#, fuzzy
|
307 |
msgid "Delete the picture"
|
308 |
msgstr "Supprimer le champ"
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
311 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
|
315 |
msgid "Database"
|
316 |
msgstr "Database"
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:677
|
320 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
322 |
msgid "select action"
|
323 |
msgstr "sélectionner une action"
|
324 |
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:660
|
326 |
msgid "Default values"
|
327 |
msgstr "Valeurs par défaut"
|
328 |
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:698
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
|
333 |
msgid "Delete"
|
334 |
msgstr "Supprimer"
|
335 |
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:702
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
340 |
msgid "NOT PRESENT"
|
341 |
msgstr "NON PRESENT"
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
344 |
msgid "WordPress Fields table"
|
345 |
msgstr "Table des champs Wordpress"
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:678
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
|
350 |
msgid "Empty"
|
351 |
msgstr "Vider"
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
354 |
msgid "Extra Fields table"
|
355 |
msgstr "Table des champs supplémentaires"
|
356 |
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
358 |
msgid "Users Data table"
|
359 |
msgstr "Table des données utilisateurs"
|
360 |
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
362 |
msgid "all data inserted by users in all and only extra fields"
|
363 |
msgstr "toutes les données insérées par les utilsateurs et seulement les champs supplémentaires"
|
364 |
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
366 |
msgid "Force tables creation"
|
367 |
msgstr "Forcer la création des tables"
|
368 |
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
370 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
374 |
msgid "User Profile"
|
375 |
msgstr "Profil utilisateur"
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
378 |
#, fuzzy
|
379 |
msgid "Extra Fields section title"
|
380 |
msgstr "Table des champs supplémentaires"
|
381 |
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
383 |
msgid "Fieldset's titles, separates with comma"
|
384 |
msgstr "Titres des regroupements, séparés par des virgules"
|
385 |
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
387 |
msgid "example: title1,title2,title3"
|
388 |
msgstr "exemple : titre1,titre2,titre3"
|
389 |
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
391 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:747
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
397 |
msgid "Authors & Users Extended"
|
398 |
msgstr "Auteurs & Utilisateurs Etendus"
|
399 |
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
|
401 |
msgid "Hide username field"
|
402 |
msgstr "Cacher le champ nom d'utilisateur"
|
403 |
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
405 |
msgid "Hide name field"
|
406 |
msgstr "Cacher le champ nom"
|
407 |
|
408 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:762
|
409 |
msgid "Hide email field"
|
410 |
msgstr "Cacher le champ e-mail"
|
411 |
|
412 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
413 |
#, fuzzy
|
414 |
msgid "Hide role field"
|
415 |
msgstr "Cacher le champ nom"
|
416 |
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
418 |
msgid "Hide website field"
|
419 |
msgstr "Cacher le champ du site web"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:774
|
422 |
msgid "Hide n. posts field"
|
423 |
msgstr "Cacher le champ n. articles"
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
|
426 |
msgid "WordPress hidden fields"
|
427 |
msgstr "Champs Wordpress cachés"
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
430 |
msgid "Show password"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
434 |
msgid "Show confirmation password"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:790
|
438 |
msgid "Show password strength meter"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:794
|
442 |
msgid "Show first name"
|
443 |
msgstr "Montrer le prénom"
|
444 |
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:798
|
446 |
msgid "Show last name"
|
447 |
msgstr "Montrer le nom"
|
448 |
|
449 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:802
|
450 |
msgid "Show nickname"
|
451 |
msgstr "Montrer le surnom"
|
452 |
|
453 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:806
|
454 |
msgid "Show website"
|
455 |
msgstr "Montrer le site web"
|
456 |
|
457 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:810
|
458 |
msgid "Show AIM"
|
459 |
msgstr "Montrer AIM"
|
460 |
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:814
|
462 |
msgid "Show Yahoo IM"
|
463 |
msgstr "Montrer Yahoo IM"
|
464 |
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:818
|
466 |
msgid "Show Jabber / Google Talk"
|
467 |
msgstr "Montrer Jabber / Google Talk"
|
468 |
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:822
|
470 |
msgid "Show Biographical Info"
|
471 |
msgstr ""
|
472 |
|
498 |
msgstr "Nom"
|
499 |
|
500 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
503 |
msgid "Website"
|
504 |
msgstr ""
|
505 |
|
521 |
msgid "Biographical Info"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:727
|
525 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
526 |
msgid "Fields"
|
527 |
msgstr "Champs"
|
528 |
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
531 |
msgid "A&U Extended"
|
532 |
msgstr "A&U Etendu"
|
533 |
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:732
|
535 |
#, fuzzy
|
536 |
msgid "Users Extended"
|
537 |
msgstr "Liste étendue des auteurs & utilisateurs"
|
550 |
msgid "File '%s' is not an image."
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
554 |
+
#, fuzzy
|
555 |
+
msgid "Delete the file"
|
556 |
+
msgstr "Supprimer le champ"
|
557 |
+
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
559 |
+
#, fuzzy
|
560 |
+
msgid "Update the file"
|
561 |
+
msgstr "Mettre à jour le champ"
|
562 |
+
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
564 |
+
#, fuzzy
|
565 |
+
msgid "Update the picture"
|
566 |
+
msgstr "Mettre à jour le champ"
|
567 |
+
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
569 |
+
msgid "Picture URL:"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:38
|
573 |
#, php-format
|
574 |
msgid "New user registration on your site %s:"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:39
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:50
|
579 |
#, php-format
|
580 |
msgid "Username: %s"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:40
|
584 |
#, php-format
|
585 |
msgid "E-mail: %s"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
589 |
#, php-format
|
590 |
msgid "[%s] New User Registration"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:51
|
594 |
#, php-format
|
595 |
msgid "Password: %s"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
599 |
#, php-format
|
600 |
msgid "[%s] Your username and password"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:91
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:97
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:109
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:115
|
607 |
#, php-format
|
608 |
msgid "%s: %s"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:189
|
612 |
#, php-format
|
613 |
msgid ""
|
614 |
"To activate your user, please click the following link:\n"
|
619 |
"\n"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:204
|
623 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
624 |
msgid "Your account is now active!"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
628 |
#, php-format
|
629 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:207
|
633 |
msgid "An error occurred during the activation"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
637 |
msgid "Username:"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
641 |
msgid "Password:"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:226
|
645 |
msgid "Invalid activation key."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:229
|
649 |
msgid "The site is already active."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:248
|
653 |
msgid "Could not create user"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
657 |
msgid "That username is already activated."
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:279
|
661 |
msgid "That username is currently reserved but may be available in a couple of days."
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:282
|
665 |
msgid "username and email used"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
669 |
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."
|
670 |
msgstr ""
|
671 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
673 |
msgid "Add field"
|
674 |
msgstr "Ajouter un champ"
|
690 |
msgstr "Changer l'ordre"
|
691 |
|
692 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
|
694 |
msgid "Min length"
|
695 |
msgstr "Longueur min"
|
696 |
|
697 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1041
|
699 |
msgid "Exact length"
|
700 |
msgstr "Longueur exacte"
|
701 |
|
702 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1042
|
704 |
msgid "Max length"
|
705 |
msgstr "Longueur max"
|
706 |
|
730 |
msgstr "supprmé(e) correctement"
|
731 |
|
732 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
|
734 |
msgid "Min size"
|
735 |
msgstr "Taille min"
|
736 |
|
737 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1033
|
739 |
msgid "Exact size"
|
740 |
msgstr "Taille exacte"
|
741 |
|
742 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1034
|
744 |
msgid "Max size"
|
745 |
msgstr "Taille max"
|
746 |
|
815 |
msgid "Name inserted is just in the database, change to another one"
|
816 |
msgstr "Le nom est déjà dans la base de données, merci de le changer"
|
817 |
|
818 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
819 |
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."
|
820 |
msgstr "Pour ajouter un nouveau champ, vous devez choisir un nom, un type et un label; la valeur et la description sont optionnelles. Les règles sont appliquées lors de l'inscription d'un utilisateur."
|
821 |
|
822 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
823 |
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'"
|
824 |
msgstr "Avec les types <strong>radio</strong> et <strong>checkbox</strong>: <em>Valeur</em> et <em>égal A</em> peuvent seulement être 'Yes' ou 'No' ce qui signifie 'sélectionné' ou 'non sélectionné'"
|
825 |
|
826 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
827 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
828 |
msgstr "Avec le type <strong>drop-down</strong>: vous devez ajouter toutes les options dans le label, par exemple: label/item1,item2,item3"
|
829 |
|
830 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
831 |
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"
|
832 |
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 A</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
|
833 |
|
834 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
|
835 |
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)"
|
836 |
msgstr "Avec le type <strong>picture-url</strong>: vous pouvez pré-charger une image par défaut en indiqunt l'url dans <em>Valeur</em>; <em>égal A</em> indique la taille de la largeur max en pixels (la hauteur sera proportionnelle)"
|
837 |
|
838 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
839 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
840 |
msgstr "Avec le type <strong>registration-date</strong>: <em>égal A</em> indique un format date et heure"
|
841 |
|
842 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
|
843 |
#, fuzzy
|
844 |
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"
|
845 |
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 A</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
848 |
#, fuzzy
|
849 |
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"
|
850 |
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 A</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
|
851 |
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1475
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
858 |
msgid "Name"
|
859 |
msgstr "Nom"
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:643
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
865 |
msgid "Value"
|
866 |
msgstr "Valeur"
|
867 |
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1071
|
872 |
msgid "Type"
|
873 |
msgstr "Type"
|
874 |
|
875 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:665
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1093
|
879 |
msgid "Label"
|
880 |
msgstr "Label"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
883 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
884 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1096
|
|
|
886 |
msgid "Description"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
891 |
msgid "Rules"
|
892 |
msgstr "Règles"
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:636
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:826
|
896 |
msgid "Actions"
|
897 |
msgstr "Actions"
|
898 |
|
899 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
900 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1087
|
901 |
#, fuzzy
|
902 |
msgid "Fieldset"
|
903 |
msgstr "Champs"
|
904 |
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1110
|
907 |
msgid "Can be empty"
|
908 |
msgstr "Peut être vide"
|
909 |
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
912 |
msgid "Check for E-mail syntax"
|
913 |
msgstr "Vérifier la syntaxe de l'e-mail"
|
914 |
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
917 |
msgid "Can be modified"
|
918 |
msgstr "Peut être modifié"
|
919 |
|
920 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:683
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
922 |
msgid "Can be modified only if empty"
|
923 |
msgstr "Ne peut être modifié que s'il est vide"
|
924 |
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1116
|
927 |
msgid "Can be modified only by admin"
|
928 |
msgstr "Ne peut être modifié que par un admin"
|
929 |
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
932 |
msgid "Can be modified only by admin or if empty"
|
933 |
msgstr "Ne peut être modifié que par un admin ou s'il est vide"
|
934 |
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
937 |
msgid "Cannot be modified"
|
938 |
msgstr "Ne peut pas être modifié"
|
939 |
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1123
|
942 |
msgid "Should be equal TO"
|
943 |
msgstr "Doit être égal A"
|
944 |
|
945 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:696
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1125
|
947 |
msgid "Case sensitive"
|
948 |
msgstr "Tenir compte des majuscules (case sensitive)"
|
949 |
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:699
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
952 |
msgid "Regular Expression"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
957 |
msgid "Show the field in the registration"
|
958 |
msgstr "Montrer le champ lors de l'inscription"
|
959 |
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
962 |
msgid "Show the field in User's profile"
|
963 |
msgstr "Montrer le champ dans le profil de l'utilisateur"
|
964 |
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
967 |
msgid "Show the field in A&U Extended menu"
|
968 |
msgstr "Montrer le champ dans le menu A&U étendu"
|
969 |
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1146
|
972 |
#, fuzzy
|
973 |
msgid "Show the field in the search engine"
|
974 |
msgstr "Montrer le champ lors de l'inscription"
|
975 |
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
978 |
#, fuzzy
|
979 |
msgid "Show the field in the blog"
|
980 |
msgstr "Montrer le champ lors de l'inscription"
|
981 |
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1152
|
984 |
#, fuzzy
|
985 |
msgid "Show the field if the role is at least:"
|
986 |
msgstr "Montrer le champ lors de l'inscription"
|
987 |
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1154
|
990 |
msgid "Anonymous"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
|
994 |
msgid "Clear"
|
995 |
msgstr "Vider (RAZ)"
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
998 |
msgid "Invert selection"
|
999 |
msgstr "Inverser la sélection"
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:788
|
1002 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1003 |
msgstr "Etes vous sur de vouloir supprimer ce(s) champ(s) et toutes les données insérées par vos utilisateurs ?"
|
1004 |
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:794
|
1006 |
msgid "WordPress Fields"
|
1007 |
msgstr "Champs Wordpress"
|
1008 |
|
1009 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1010 |
msgid "None!"
|
1011 |
msgstr "Aucun !"
|
1012 |
|
1013 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1053
|
1015 |
msgid "Order"
|
1016 |
msgstr "Ordre"
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1165
|
1019 |
msgid "Reset"
|
1020 |
msgstr "Réinitialiser"
|
1021 |
|
1022 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1250
|
1023 |
#, fuzzy
|
1024 |
msgid "select"
|
1025 |
msgstr "Supprimer"
|
1026 |
|
1027 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1353
|
1028 |
#, php-format
|
1029 |
msgid "Users Matching \"%s\""
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
1033 |
#, fuzzy
|
1034 |
msgid "Users Extended List"
|
1035 |
msgstr "Liste étendue des auteurs & utilisateurs"
|
1036 |
|
1037 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1359
|
1038 |
msgid "Authors & Users Extended List"
|
1039 |
msgstr "Liste étendue des auteurs & utilisateurs"
|
1040 |
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1042 |
#, php-format
|
1043 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
1047 |
msgid "Search Users"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1436
|
1051 |
msgid "« Back to All Users"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
1055 |
#, fuzzy
|
1056 |
msgid "Users per page"
|
1057 |
msgstr "Table des données utilisateurs"
|
1058 |
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
1060 |
msgid "Apply"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1470
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
1065 |
msgid "Username"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1480
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
1070 |
msgid "E-mail"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1485
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
1075 |
#, fuzzy
|
1076 |
msgid "Role"
|
1077 |
msgstr "Règles"
|
1078 |
|
1079 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1495
|
1080 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
1081 |
msgid "Posts"
|
1082 |
msgstr "Articles"
|
1083 |
|
1084 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1605
|
1085 |
msgid "View posts by this author"
|
1086 |
msgstr "Voir les articles de cet auteur"
|
1087 |
|
1088 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
|
1089 |
#, php-format
|
1090 |
msgid "e-mail: %s"
|
1091 |
msgstr ""
|
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: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,103 +16,114 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
|
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
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/
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:567
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:435
|
33 |
msgid "ERROR"
|
34 |
msgstr "ERRORE"
|
35 |
|
36 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
37 |
msgid "does not match."
|
38 |
msgstr "non corrisponde."
|
39 |
|
40 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
41 |
msgid "hasn’t a correct email syntax."
|
42 |
msgstr "non ha una sintassi email corretta."
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
45 |
msgid "couldn’t be empty."
|
46 |
msgstr "non può essere vuoto."
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
msgid "isn’t correct"
|
51 |
msgstr "non è corretto"
|
52 |
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
54 |
msgid "YES"
|
55 |
msgstr "SI"
|
56 |
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
msgid "NO"
|
59 |
msgstr "NO"
|
60 |
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
62 |
msgid "should be"
|
63 |
msgstr "deve essere"
|
64 |
|
65 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
66 |
msgid "should be an image."
|
67 |
msgstr "deve essere una immagine."
|
68 |
|
69 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
70 |
msgid "couldn’t have size less than"
|
71 |
msgstr "non può avere dimensione minore di"
|
72 |
|
73 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
74 |
msgid "couldn’t have length less than"
|
75 |
msgstr "non può avere lunghezza minore di"
|
76 |
|
77 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
78 |
msgid "couldn’t have size different than"
|
79 |
msgstr "non può avere dimensione diversa da"
|
80 |
|
81 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
82 |
msgid "couldn’t have length different than"
|
83 |
msgstr "non può avere lunghezza diversa da"
|
84 |
|
85 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
86 |
msgid "couldn’t have size more than"
|
87 |
msgstr "non può avere dimensione maggiore di"
|
88 |
|
89 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
90 |
msgid "couldn’t have length more than"
|
91 |
msgstr "non può avere lunghezza maggiore di"
|
92 |
|
93 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
94 |
msgid "Typed code is not correct."
|
95 |
msgstr "Il codice inserito non è corretto."
|
96 |
|
97 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
98 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
99 |
msgid "Please upload a file with one of the following extensions"
|
100 |
msgstr "Per favore spedisci un file con una delle seguenti estensioni"
|
101 |
|
102 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
103 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
104 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
105 |
msgid "Please upload an image with one of the following extensions"
|
106 |
msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
|
107 |
|
108 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
109 |
msgid "Strength indicator"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
113 |
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 ! \\\" ? $ % ^ & )."
|
114 |
msgstr ""
|
115 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
117 |
msgid "no fieldset"
|
118 |
msgstr "Nessun raggruppamento"
|
@@ -149,278 +160,307 @@ msgstr "Opzioni settate ai valori di default"
|
|
149 |
msgid "Options deleted"
|
150 |
msgstr "Opzioni cancellate"
|
151 |
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
153 |
msgid "Options changed"
|
154 |
msgstr "Opzioni cambiate"
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
157 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
158 |
msgstr "Questa operazione creerà/aggiornerà tutte le tabelle/opzioni mancanti, vuoi procedere?"
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
162 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
163 |
msgid "Options"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
167 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
168 |
msgid "Add a new Field"
|
169 |
msgstr "Aggiungi un campo"
|
170 |
|
171 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
173 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
175 |
msgid "Extra Fields"
|
176 |
msgstr "Campi Extra"
|
177 |
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
179 |
msgid "Support the Cimy Project"
|
180 |
msgstr "Supporta il progetto Cimy"
|
181 |
|
182 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
183 |
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!"
|
184 |
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!"
|
185 |
|
186 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
188 |
msgid "SUCCESSFUL"
|
189 |
msgstr "SUCCESSO"
|
190 |
|
191 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
193 |
msgid "Save Changes"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
197 |
msgid "General"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
201 |
msgid "installed is"
|
202 |
msgstr "installata"
|
203 |
|
204 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
205 |
msgid "OPTIONS DELETED!"
|
206 |
msgstr "OPZIONI CANCELLATE!"
|
207 |
|
208 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
209 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
210 |
msgid "Fix the problem"
|
211 |
msgstr "Aggiusta il problema"
|
212 |
|
213 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
214 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
215 |
msgstr "VERSIONI NON CORRISPONDENTI! Avviene quando non hai disattivato e riattivato il plug-in dopo l'aggiornamento! Questo può dare dei problemi..."
|
216 |
|
217 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
218 |
msgid "Picture/Avatar upload"
|
219 |
msgstr "Picture/Avatar upload"
|
220 |
|
221 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
222 |
msgid "is created and writable"
|
223 |
msgstr "è creata e scrivibile"
|
224 |
|
225 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
226 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
227 |
msgstr "NON è stata creata o il webserver NON ha il permesso di scrittura su di essa"
|
228 |
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
230 |
msgid "Show all fields in the welcome email"
|
231 |
msgstr "Mostra tutti i campi nella email di benvenuto"
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
234 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
235 |
msgstr "l'email spedita all'amministratore e all'utente al momento della registrazione avrà tutti i campi"
|
236 |
|
237 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
238 |
msgid "Enable email confirmation"
|
239 |
msgstr "Abilita la conferma dell'email"
|
240 |
|
241 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
242 |
msgid "user that registers should confirm its email address via a link click"
|
243 |
msgstr "gli utenti che si registrano devono confermare il loro indirizzo email cliccando su un link"
|
244 |
|
245 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
247 |
msgstr "Abilita <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
248 |
|
249 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
250 |
msgid "Public KEY"
|
251 |
msgstr "Chiave pubblica"
|
252 |
|
253 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
254 |
msgid "Private KEY"
|
255 |
msgstr "Chiave privata"
|
256 |
|
257 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
msgid "Change login/registration page logo"
|
259 |
msgstr "Cambia il logo nella pagina di login/registrazione"
|
260 |
|
261 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
262 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
263 |
msgid "Delete the picture"
|
264 |
msgstr "Cancella l'immagine"
|
265 |
|
266 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
267 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
268 |
msgstr "La larghezza massima raccomandata del logo è 328 pixel, qualsiasi altezza dovrebbe funzionare."
|
269 |
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
271 |
msgid "Database"
|
272 |
msgstr "Database"
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
275 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
276 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
278 |
msgid "select action"
|
279 |
msgstr "seleziona una azione"
|
280 |
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
msgid "Default values"
|
283 |
msgstr "Valori di default"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
287 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
288 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
289 |
msgid "Delete"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
295 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
296 |
msgid "NOT PRESENT"
|
297 |
msgstr "NON PRESENTE"
|
298 |
|
299 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
300 |
msgid "WordPress Fields table"
|
301 |
msgstr "Tabella Campi WordPress"
|
302 |
|
303 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
306 |
msgid "Empty"
|
307 |
msgstr "Svuota"
|
308 |
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
310 |
msgid "Extra Fields table"
|
311 |
msgstr "Tabella Campi Extra"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
314 |
msgid "Users Data table"
|
315 |
msgstr "Tabella Dati degli Utenti"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
318 |
msgid "all data inserted by users in all and only extra fields"
|
319 |
msgstr "tutti i dati inseriti dagli utenti in tutti e soli i campi extra"
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
322 |
msgid "Force tables creation"
|
323 |
msgstr "Forza la creazione delle tabelle"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
327 |
msgstr "equivalente a disattivare e attivare il plug-in; nessun'altra operazione sarà effettuata"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
330 |
msgid "User Profile"
|
331 |
msgstr "Profilo utente"
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
334 |
msgid "Extra Fields section title"
|
335 |
msgstr "Titolo della sezione Campi Extra"
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
338 |
msgid "Fieldset's titles, separates with comma"
|
339 |
msgstr "Titoli dei raggruppamenti, separati dalla virgola"
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
342 |
msgid "example: title1,title2,title3"
|
343 |
msgstr "esempio: titolo1, titolo2, titolo3"
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
346 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
347 |
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"
|
348 |
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
352 |
msgid "Authors & Users Extended"
|
353 |
msgstr "Autori & Utenti Estesa"
|
354 |
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
356 |
msgid "Hide username field"
|
357 |
msgstr "Nascondi il campo nome utente"
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
360 |
msgid "Hide name field"
|
361 |
msgstr "Nascondi il campo nome"
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
364 |
msgid "Hide email field"
|
365 |
msgstr "Nascondi il campo email"
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
368 |
msgid "Hide role field"
|
369 |
msgstr "Nascondi il campo ruolo"
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
372 |
msgid "Hide website field"
|
373 |
msgstr "Nascondi il campo sito web"
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
376 |
msgid "Hide n. posts field"
|
377 |
msgstr "Nascondi il campo n. di post"
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
380 |
msgid "WordPress hidden fields"
|
381 |
msgstr "Campi nascosti di WordPress"
|
382 |
|
383 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
384 |
msgid "Show password"
|
385 |
msgstr "Mostra password"
|
386 |
|
387 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
388 |
msgid "Show confirmation password"
|
389 |
msgstr "Mostra conferma della password"
|
390 |
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
392 |
msgid "Show password strength meter"
|
393 |
msgstr "Mostra indicatore di forza della password"
|
394 |
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
396 |
msgid "Show first name"
|
397 |
msgstr "Mostra nome"
|
398 |
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
400 |
msgid "Show last name"
|
401 |
msgstr "Mostra cognome"
|
402 |
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
404 |
msgid "Show nickname"
|
405 |
msgstr "Mostra nickname"
|
406 |
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
408 |
msgid "Show website"
|
409 |
msgstr "Mostra sito web"
|
410 |
|
411 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
412 |
msgid "Show AIM"
|
413 |
msgstr "Mostra AIM"
|
414 |
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
416 |
msgid "Show Yahoo IM"
|
417 |
msgstr "Mostra Yahoo IM"
|
418 |
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
420 |
msgid "Show Jabber / Google Talk"
|
421 |
msgstr "Mostra Jabber / Google Talk"
|
422 |
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
424 |
msgid "Show Biographical Info"
|
425 |
msgstr "Mostra informazioni biografiche"
|
426 |
|
@@ -453,8 +493,8 @@ msgid "Nickname"
|
|
453 |
msgstr "Mostra nickname"
|
454 |
|
455 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
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 "Website"
|
459 |
msgstr ""
|
460 |
|
@@ -476,17 +516,17 @@ msgstr "Mostra Jabber / Google Talk"
|
|
476 |
msgid "Biographical Info"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
480 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
481 |
msgid "Fields"
|
482 |
msgstr "Campi"
|
483 |
|
484 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
485 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
486 |
msgid "A&U Extended"
|
487 |
msgstr "A&U Estesa"
|
488 |
|
489 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
490 |
msgid "Users Extended"
|
491 |
msgstr "Lista Utenti Estesa"
|
492 |
|
@@ -504,44 +544,62 @@ msgstr ""
|
|
504 |
msgid "File '%s' is not an image."
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
508 |
#, php-format
|
509 |
msgid "New user registration on your site %s:"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
514 |
#, php-format
|
515 |
msgid "Username: %s"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
519 |
#, php-format
|
520 |
msgid "E-mail: %s"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
524 |
#, php-format
|
525 |
msgid "[%s] New User Registration"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
529 |
#, fuzzy, php-format
|
530 |
msgid "Password: %s"
|
531 |
msgstr "Mostra password"
|
532 |
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
534 |
#, php-format
|
535 |
msgid "[%s] Your username and password"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
540 |
#, php-format
|
541 |
msgid "%s: %s"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
545 |
#, php-format
|
546 |
msgid ""
|
547 |
"To activate your user, please click the following link:\n"
|
@@ -558,73 +616,57 @@ msgstr ""
|
|
558 |
"Dopo l’attivazione, si riceverà *un’altra email* con i dati di login.\n"
|
559 |
"\n"
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
563 |
msgid "Your account is now active!"
|
564 |
msgstr "Il tuo account è ora attivo!"
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
567 |
#, php-format
|
568 |
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>."
|
569 |
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>"
|
570 |
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
572 |
msgid "An error occurred during the activation"
|
573 |
msgstr "Si è verificato un errore durante l'attivazione"
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
576 |
msgid "Username:"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
580 |
#, fuzzy
|
581 |
msgid "Password:"
|
582 |
msgstr "Mostra password"
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
585 |
msgid "Invalid activation key."
|
586 |
msgstr "Chiave di attivazione non valida."
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
589 |
msgid "The site is already active."
|
590 |
msgstr "Il sito è già attivo."
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
593 |
msgid "Could not create user"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
597 |
msgid "That username is already activated."
|
598 |
msgstr "Il nome utente è già stato attivato."
|
599 |
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
601 |
msgid "That username is currently reserved but may be available in a couple of days."
|
602 |
msgstr "Il nome utente è attualmente riservato ma potrebbe rendersi disponibile in un paio di giorni."
|
603 |
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
605 |
msgid "username and email used"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
609 |
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."
|
610 |
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."
|
611 |
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
613 |
-
msgid "Delete the file"
|
614 |
-
msgstr "Cancella il file"
|
615 |
-
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
617 |
-
msgid "Update the file"
|
618 |
-
msgstr "Aggiorna il file"
|
619 |
-
|
620 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
621 |
-
msgid "Update the picture"
|
622 |
-
msgstr "Aggiorna l'immagine"
|
623 |
-
|
624 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
625 |
-
msgid "Picture URL:"
|
626 |
-
msgstr "URL dell'immagine:"
|
627 |
-
|
628 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
629 |
msgid "Add field"
|
630 |
msgstr "Aggiungi campo"
|
@@ -646,17 +688,17 @@ msgid "Change order"
|
|
646 |
msgstr "Cambia ordine"
|
647 |
|
648 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
649 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
650 |
msgid "Min length"
|
651 |
msgstr "Lunghezza Min"
|
652 |
|
653 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
654 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
655 |
msgid "Exact length"
|
656 |
msgstr "Lunghezza Esatta"
|
657 |
|
658 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
659 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
660 |
msgid "Max length"
|
661 |
msgstr "Lunghezza Max"
|
662 |
|
@@ -686,17 +728,17 @@ msgid "deleted correctly"
|
|
686 |
msgstr "cancellato(i) correttamente"
|
687 |
|
688 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
689 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
690 |
msgid "Min size"
|
691 |
msgstr "Dimensione Min"
|
692 |
|
693 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
694 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
695 |
msgid "Exact size"
|
696 |
msgstr "Dimensione Esatta"
|
697 |
|
698 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
699 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
700 |
msgid "Max size"
|
701 |
msgstr "Dimensione Max"
|
702 |
|
@@ -771,269 +813,269 @@ msgstr "aggiornato correttamente"
|
|
771 |
msgid "Name inserted is just in the database, change to another one"
|
772 |
msgstr "Il Nome inserito è già nel database, cambialo con un altro"
|
773 |
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
775 |
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."
|
776 |
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."
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
779 |
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'"
|
780 |
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'"
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
783 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
784 |
msgstr "Con <strong>drop-down</strong>: devi aggiungere tutte le opzioni nell'etichetta per esempio: etichetta/oggetto1,oggetto2,oggetto3"
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
787 |
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"
|
788 |
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"
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
791 |
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)"
|
792 |
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)"
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
796 |
msgstr "Con <strong>registration-date</strong>: <em>uguale A</em> significa il formato della data e dell'ora"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
799 |
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"
|
800 |
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"
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
803 |
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"
|
804 |
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"
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
808 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
809 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
msgid "Name"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
817 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
819 |
msgid "Value"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
825 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
826 |
msgid "Type"
|
827 |
msgstr "Tipo"
|
828 |
|
829 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
833 |
msgid "Label"
|
834 |
msgstr "Etichetta"
|
835 |
|
|
|
836 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
837 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
838 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
840 |
msgid "Description"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
845 |
msgid "Rules"
|
846 |
msgstr "Regole"
|
847 |
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
850 |
msgid "Actions"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
855 |
msgid "Fieldset"
|
856 |
msgstr "Raggruppamento"
|
857 |
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
860 |
msgid "Can be empty"
|
861 |
msgstr "Può essere vuoto"
|
862 |
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
864 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
865 |
msgid "Check for E-mail syntax"
|
866 |
msgstr "Controlla la sintassi dell'E-mail"
|
867 |
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
870 |
msgid "Can be modified"
|
871 |
msgstr "Può essere modificato"
|
872 |
|
873 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
874 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
875 |
msgid "Can be modified only if empty"
|
876 |
msgstr "Può essere modificato solo se vuoto"
|
877 |
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
880 |
msgid "Can be modified only by admin"
|
881 |
msgstr "Può essere modificato solo dall'admin"
|
882 |
|
883 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
885 |
msgid "Can be modified only by admin or if empty"
|
886 |
msgstr "Può essere modificato solo dall'admin o se vuoto"
|
887 |
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
890 |
msgid "Cannot be modified"
|
891 |
msgstr "Non può essere modificato"
|
892 |
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
895 |
msgid "Should be equal TO"
|
896 |
msgstr "Deve essere uguale A"
|
897 |
|
898 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
899 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
900 |
msgid "Case sensitive"
|
901 |
msgstr "Distinguere le maiuscole"
|
902 |
|
903 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
905 |
msgid "Regular Expression"
|
906 |
msgstr "Espressione Regolare"
|
907 |
|
908 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
910 |
msgid "Show the field in the registration"
|
911 |
msgstr "Mostra il campo nella registrazione"
|
912 |
|
913 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
914 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
915 |
msgid "Show the field in User's profile"
|
916 |
msgstr "Mostra il campo nel profilo dell'utente"
|
917 |
|
918 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
919 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
920 |
msgid "Show the field in A&U Extended menu"
|
921 |
msgstr "Mostra il campo nel menù A&U esteso"
|
922 |
|
923 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
925 |
msgid "Show the field in the search engine"
|
926 |
msgstr "Mostra il campo nel motore di ricerca"
|
927 |
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
msgid "Show the field in the blog"
|
931 |
msgstr "Mostra il campo nel blog"
|
932 |
|
933 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
msgid "Show the field if the role is at least:"
|
936 |
msgstr "Mostra il campo se il ruolo è almeno:"
|
937 |
|
938 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
msgid "Anonymous"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
944 |
msgid "Clear"
|
945 |
msgstr "Pulisci"
|
946 |
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
948 |
msgid "Invert selection"
|
949 |
msgstr "Inverti selezione"
|
950 |
|
951 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
952 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
953 |
msgstr "Sei sicuro di volere cancellare il(i) campo(i) e tutti i relativi dati inseriti dagli utenti?"
|
954 |
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
msgid "WordPress Fields"
|
957 |
msgstr "Campi WordPress"
|
958 |
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
msgid "None!"
|
961 |
msgstr "Nessuno!"
|
962 |
|
963 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
msgid "Order"
|
966 |
msgstr "Ordine"
|
967 |
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
969 |
msgid "Reset"
|
970 |
msgstr "Reset"
|
971 |
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
973 |
msgid "select"
|
974 |
msgstr "seleziona"
|
975 |
|
976 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
977 |
#, php-format
|
978 |
msgid "Users Matching \"%s\""
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
982 |
#, fuzzy
|
983 |
msgid "Users Extended List"
|
984 |
msgstr "Lista Autori & Utenti Estesa"
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
987 |
msgid "Authors & Users Extended List"
|
988 |
msgstr "Lista Autori & Utenti Estesa"
|
989 |
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
991 |
#, php-format
|
992 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
996 |
msgid "Search Users"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1000 |
msgid "« Back to All Users"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
msgid "Users per page"
|
1005 |
msgstr "Utenti per pagina"
|
1006 |
|
1007 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1008 |
msgid "Apply"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1013 |
msgid "Username"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1018 |
msgid "E-mail"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1023 |
#, fuzzy
|
1024 |
msgid "Role"
|
1025 |
msgstr "Regole"
|
1026 |
|
1027 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1028 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1029 |
msgid "Posts"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1033 |
msgid "View posts by this author"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1037 |
#, php-format
|
1038 |
msgid "e-mail: %s"
|
1039 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-09-21 00:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2010-09-21 00:20+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:442
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
27 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
|
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERRORE"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
38 |
msgid "does not match."
|
39 |
msgstr "non corrisponde."
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "non ha una sintassi email corretta."
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "non può essere vuoto."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:441
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "non è corretto"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
55 |
msgid "YES"
|
56 |
msgstr "SI"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
59 |
msgid "NO"
|
60 |
msgstr "NO"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
63 |
msgid "should be"
|
64 |
msgstr "deve essere"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
67 |
msgid "should be an image."
|
68 |
msgstr "deve essere una immagine."
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "non può avere dimensione minore di"
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "non può avere lunghezza minore di"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "non può avere dimensione diversa da"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "non può avere lunghezza diversa da"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "non può avere dimensione maggiore di"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "non può avere lunghezza maggiore di"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr "Il codice inserito non è corretto."
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:824
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
101 |
msgid "Please upload a file with one of the following extensions"
|
102 |
msgstr "Per favore spedisci un file con una delle seguenti estensioni"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:369
|
106 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
107 |
msgid "Please upload an image with one of the following extensions"
|
108 |
msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
|
109 |
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:910
|
111 |
msgid "Strength indicator"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:911
|
115 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \\\" ? $ % ^ & )."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:948
|
119 |
+
#, fuzzy
|
120 |
+
msgid "Change image"
|
121 |
+
msgstr "Cambia ordine"
|
122 |
+
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:951
|
124 |
+
msgid "Insert the code:"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
128 |
msgid "no fieldset"
|
129 |
msgstr "Nessun raggruppamento"
|
160 |
msgid "Options deleted"
|
161 |
msgstr "Opzioni cancellate"
|
162 |
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:345
|
164 |
msgid "Options changed"
|
165 |
msgstr "Opzioni cambiate"
|
166 |
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:472
|
168 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
169 |
msgstr "Questa operazione creerà/aggiornerà tutte le tabelle/opzioni mancanti, vuoi procedere?"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
172 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:726
|
174 |
msgid "Options"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
178 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
179 |
msgid "Add a new Field"
|
180 |
msgstr "Aggiungi un campo"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:796
|
184 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:249
|
186 |
msgid "Extra Fields"
|
187 |
msgstr "Campi Extra"
|
188 |
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
190 |
msgid "Support the Cimy Project"
|
191 |
msgstr "Supporta il progetto Cimy"
|
192 |
|
193 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
194 |
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!"
|
195 |
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!"
|
196 |
|
197 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:508
|
198 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1221
|
199 |
msgid "SUCCESSFUL"
|
200 |
msgstr "SUCCESSO"
|
201 |
|
202 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
204 |
msgid "Save Changes"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:522
|
208 |
msgid "General"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
212 |
msgid "installed is"
|
213 |
msgstr "installata"
|
214 |
|
215 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
216 |
msgid "OPTIONS DELETED!"
|
217 |
msgstr "OPZIONI CANCELLATE!"
|
218 |
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:542
|
221 |
msgid "Fix the problem"
|
222 |
msgstr "Aggiusta il problema"
|
223 |
|
224 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
225 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
226 |
msgstr "VERSIONI NON CORRISPONDENTI! Avviene quando non hai disattivato e riattivato il plug-in dopo l'aggiornamento! Questo può dare dei problemi..."
|
227 |
|
228 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
229 |
msgid "Picture/Avatar upload"
|
230 |
msgstr "Picture/Avatar upload"
|
231 |
|
232 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:552
|
233 |
msgid "is created and writable"
|
234 |
msgstr "è creata e scrivibile"
|
235 |
|
236 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
237 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
238 |
msgstr "NON è stata creata o il webserver NON ha il permesso di scrittura su di essa"
|
239 |
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
241 |
msgid "Show all fields in the welcome email"
|
242 |
msgstr "Mostra tutti i campi nella email di benvenuto"
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
245 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
246 |
msgstr "l'email spedita all'amministratore e all'utente al momento della registrazione avrà tutti i campi"
|
247 |
|
248 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
|
249 |
msgid "Enable email confirmation"
|
250 |
msgstr "Abilita la conferma dell'email"
|
251 |
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:577
|
253 |
msgid "user that registers should confirm its email address via a link click"
|
254 |
msgstr "gli utenti che si registrano devono confermare il loro indirizzo email cliccando su un link"
|
255 |
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
|
257 |
+
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
258 |
+
msgstr "<strong>nota:</strong> abilitando questa opzione verranno disabilitati (solo durante la registrazione) tutti i campi di upload: file, picture, avatar"
|
259 |
+
|
260 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
261 |
+
msgid "Redirect to the source"
|
262 |
+
msgstr "Ridireziona alla fonte"
|
263 |
+
|
264 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:590
|
265 |
+
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
266 |
+
msgstr "dopo la registrazione o la conferma l'utente verrà redirezionato all'indirizzo dov'era esattamente prima di cliccare sul link della registrazione"
|
267 |
+
|
268 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
269 |
+
msgid "No captcha"
|
270 |
+
msgstr "Nessun captcha"
|
271 |
+
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
|
273 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
274 |
msgstr "Abilita <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
275 |
|
276 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:610
|
277 |
msgid "Public KEY"
|
278 |
msgstr "Chiave pubblica"
|
279 |
|
280 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
281 |
msgid "Private KEY"
|
282 |
msgstr "Chiave privata"
|
283 |
|
284 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:622
|
285 |
+
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
286 |
+
msgstr "Abilita <a href=\"http://www.phpcaptcha.org\" target=\"_blank\">Securimage Captcha</a>"
|
287 |
+
|
288 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
289 |
+
msgid "This captcha is probably weaker, but is easier for users"
|
290 |
+
msgstr "Questo captcha è probabilmente più debole, ma più facile da usare per gli utenti"
|
291 |
+
|
292 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
293 |
+
#, php-format
|
294 |
+
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>"
|
295 |
+
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>"
|
296 |
+
|
297 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:636
|
298 |
msgid "Change login/registration page logo"
|
299 |
msgstr "Cambia il logo nella pagina di login/registrazione"
|
300 |
|
301 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:641
|
302 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
303 |
msgid "Delete the picture"
|
304 |
msgstr "Cancella l'immagine"
|
305 |
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
307 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
308 |
msgstr "La larghezza massima raccomandata del logo è 328 pixel, qualsiasi altezza dovrebbe funzionare."
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
|
311 |
msgid "Database"
|
312 |
msgstr "Database"
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:677
|
316 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
|
317 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
318 |
msgid "select action"
|
319 |
msgstr "seleziona una azione"
|
320 |
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:660
|
322 |
msgid "Default values"
|
323 |
msgstr "Valori di default"
|
324 |
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
|
326 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:698
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
|
329 |
msgid "Delete"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:702
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
336 |
msgid "NOT PRESENT"
|
337 |
msgstr "NON PRESENTE"
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
340 |
msgid "WordPress Fields table"
|
341 |
msgstr "Tabella Campi WordPress"
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:678
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
|
346 |
msgid "Empty"
|
347 |
msgstr "Svuota"
|
348 |
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
350 |
msgid "Extra Fields table"
|
351 |
msgstr "Tabella Campi Extra"
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
354 |
msgid "Users Data table"
|
355 |
msgstr "Tabella Dati degli Utenti"
|
356 |
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
358 |
msgid "all data inserted by users in all and only extra fields"
|
359 |
msgstr "tutti i dati inseriti dagli utenti in tutti e soli i campi extra"
|
360 |
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
362 |
msgid "Force tables creation"
|
363 |
msgstr "Forza la creazione delle tabelle"
|
364 |
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
366 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
367 |
msgstr "equivalente a disattivare e attivare il plug-in; nessun'altra operazione sarà effettuata"
|
368 |
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
370 |
msgid "User Profile"
|
371 |
msgstr "Profilo utente"
|
372 |
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
374 |
msgid "Extra Fields section title"
|
375 |
msgstr "Titolo della sezione Campi Extra"
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
378 |
msgid "Fieldset's titles, separates with comma"
|
379 |
msgstr "Titoli dei raggruppamenti, separati dalla virgola"
|
380 |
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
382 |
msgid "example: title1,title2,title3"
|
383 |
msgstr "esempio: titolo1, titolo2, titolo3"
|
384 |
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
386 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
387 |
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"
|
388 |
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:747
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
392 |
msgid "Authors & Users Extended"
|
393 |
msgstr "Autori & Utenti Estesa"
|
394 |
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
|
396 |
msgid "Hide username field"
|
397 |
msgstr "Nascondi il campo nome utente"
|
398 |
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
400 |
msgid "Hide name field"
|
401 |
msgstr "Nascondi il campo nome"
|
402 |
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:762
|
404 |
msgid "Hide email field"
|
405 |
msgstr "Nascondi il campo email"
|
406 |
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
408 |
msgid "Hide role field"
|
409 |
msgstr "Nascondi il campo ruolo"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
412 |
msgid "Hide website field"
|
413 |
msgstr "Nascondi il campo sito web"
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:774
|
416 |
msgid "Hide n. posts field"
|
417 |
msgstr "Nascondi il campo n. di post"
|
418 |
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
|
420 |
msgid "WordPress hidden fields"
|
421 |
msgstr "Campi nascosti di WordPress"
|
422 |
|
423 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
424 |
msgid "Show password"
|
425 |
msgstr "Mostra password"
|
426 |
|
427 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
428 |
msgid "Show confirmation password"
|
429 |
msgstr "Mostra conferma della password"
|
430 |
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:790
|
432 |
msgid "Show password strength meter"
|
433 |
msgstr "Mostra indicatore di forza della password"
|
434 |
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:794
|
436 |
msgid "Show first name"
|
437 |
msgstr "Mostra nome"
|
438 |
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:798
|
440 |
msgid "Show last name"
|
441 |
msgstr "Mostra cognome"
|
442 |
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:802
|
444 |
msgid "Show nickname"
|
445 |
msgstr "Mostra nickname"
|
446 |
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:806
|
448 |
msgid "Show website"
|
449 |
msgstr "Mostra sito web"
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:810
|
452 |
msgid "Show AIM"
|
453 |
msgstr "Mostra AIM"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:814
|
456 |
msgid "Show Yahoo IM"
|
457 |
msgstr "Mostra Yahoo IM"
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:818
|
460 |
msgid "Show Jabber / Google Talk"
|
461 |
msgstr "Mostra Jabber / Google Talk"
|
462 |
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:822
|
464 |
msgid "Show Biographical Info"
|
465 |
msgstr "Mostra informazioni biografiche"
|
466 |
|
493 |
msgstr "Mostra nickname"
|
494 |
|
495 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
498 |
msgid "Website"
|
499 |
msgstr ""
|
500 |
|
516 |
msgid "Biographical Info"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:727
|
520 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
521 |
msgid "Fields"
|
522 |
msgstr "Campi"
|
523 |
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
526 |
msgid "A&U Extended"
|
527 |
msgstr "A&U Estesa"
|
528 |
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:732
|
530 |
msgid "Users Extended"
|
531 |
msgstr "Lista Utenti Estesa"
|
532 |
|
544 |
msgid "File '%s' is not an image."
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
548 |
+
msgid "Delete the file"
|
549 |
+
msgstr "Cancella il file"
|
550 |
+
|
551 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
552 |
+
msgid "Update the file"
|
553 |
+
msgstr "Aggiorna il file"
|
554 |
+
|
555 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
556 |
+
msgid "Update the picture"
|
557 |
+
msgstr "Aggiorna l'immagine"
|
558 |
+
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
560 |
+
msgid "Picture URL:"
|
561 |
+
msgstr "URL dell'immagine:"
|
562 |
+
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:38
|
564 |
#, php-format
|
565 |
msgid "New user registration on your site %s:"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:39
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:50
|
570 |
#, php-format
|
571 |
msgid "Username: %s"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:40
|
575 |
#, php-format
|
576 |
msgid "E-mail: %s"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
580 |
#, php-format
|
581 |
msgid "[%s] New User Registration"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:51
|
585 |
#, fuzzy, php-format
|
586 |
msgid "Password: %s"
|
587 |
msgstr "Mostra password"
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
590 |
#, php-format
|
591 |
msgid "[%s] Your username and password"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:91
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:97
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:109
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:115
|
598 |
#, php-format
|
599 |
msgid "%s: %s"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:189
|
603 |
#, php-format
|
604 |
msgid ""
|
605 |
"To activate your user, please click the following link:\n"
|
616 |
"Dopo l’attivazione, si riceverà *un’altra email* con i dati di login.\n"
|
617 |
"\n"
|
618 |
|
619 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:204
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
621 |
msgid "Your account is now active!"
|
622 |
msgstr "Il tuo account è ora attivo!"
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
625 |
#, php-format
|
626 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
627 |
msgstr "Il sito su <a href=\"%1$s\">%2$s</a> è attivo. Ora è possibile effettuare la login al sito utilizzando il nome utente scelto che è \"%3$s\". Per favore controllare la propria casella postale su %4$s per la password e le istruzioni per il login. Se non si ricevesse alcuna email, controllare la cartella junk o spam. Se si continua a non ricevere alcuna email nella prossima ora è possibile <a href=\"%5$s\">azzerare la propria password</a>.</p>"
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:207
|
630 |
msgid "An error occurred during the activation"
|
631 |
msgstr "Si è verificato un errore durante l'attivazione"
|
632 |
|
633 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
634 |
msgid "Username:"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
638 |
#, fuzzy
|
639 |
msgid "Password:"
|
640 |
msgstr "Mostra password"
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:226
|
643 |
msgid "Invalid activation key."
|
644 |
msgstr "Chiave di attivazione non valida."
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:229
|
647 |
msgid "The site is already active."
|
648 |
msgstr "Il sito è già attivo."
|
649 |
|
650 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:248
|
651 |
msgid "Could not create user"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
655 |
msgid "That username is already activated."
|
656 |
msgstr "Il nome utente è già stato attivato."
|
657 |
|
658 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:279
|
659 |
msgid "That username is currently reserved but may be available in a couple of days."
|
660 |
msgstr "Il nome utente è attualmente riservato ma potrebbe rendersi disponibile in un paio di giorni."
|
661 |
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:282
|
663 |
msgid "username and email used"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
667 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
668 |
msgstr "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."
|
669 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
670 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
671 |
msgid "Add field"
|
672 |
msgstr "Aggiungi campo"
|
688 |
msgstr "Cambia ordine"
|
689 |
|
690 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
691 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
|
692 |
msgid "Min length"
|
693 |
msgstr "Lunghezza Min"
|
694 |
|
695 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1041
|
697 |
msgid "Exact length"
|
698 |
msgstr "Lunghezza Esatta"
|
699 |
|
700 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1042
|
702 |
msgid "Max length"
|
703 |
msgstr "Lunghezza Max"
|
704 |
|
728 |
msgstr "cancellato(i) correttamente"
|
729 |
|
730 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
|
732 |
msgid "Min size"
|
733 |
msgstr "Dimensione Min"
|
734 |
|
735 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1033
|
737 |
msgid "Exact size"
|
738 |
msgstr "Dimensione Esatta"
|
739 |
|
740 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
741 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1034
|
742 |
msgid "Max size"
|
743 |
msgstr "Dimensione Max"
|
744 |
|
813 |
msgid "Name inserted is just in the database, change to another one"
|
814 |
msgstr "Il Nome inserito è già nel database, cambialo con un altro"
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
817 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
818 |
msgstr "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."
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
821 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
822 |
msgstr "Con <strong>radio</strong> e <strong>checkbox</strong>: <em>Valore</em> e <em>uguale A</em> possono essere solo 'Yes' o 'No' questo significa 'selezionati' o 'non selezionati'"
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
825 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
826 |
msgstr "Con <strong>drop-down</strong>: devi aggiungere tutte le opzioni nell'etichetta per esempio: etichetta/oggetto1,oggetto2,oggetto3"
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
829 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
830 |
msgstr "Con <strong>picture</strong>: 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"
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
|
833 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
834 |
msgstr "Con <strong>picture-url</strong>: 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)"
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
837 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
838 |
msgstr "Con <strong>registration-date</strong>: <em>uguale A</em> significa il formato della data e dell'ora"
|
839 |
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
|
841 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
842 |
msgstr "Con <strong>avatar</strong>: 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"
|
843 |
|
844 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
845 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
846 |
msgstr "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"
|
847 |
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1475
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
854 |
msgid "Name"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:643
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
861 |
msgid "Value"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1071
|
868 |
msgid "Type"
|
869 |
msgstr "Tipo"
|
870 |
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:665
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1093
|
875 |
msgid "Label"
|
876 |
msgstr "Etichetta"
|
877 |
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
879 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
880 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1096
|
|
|
882 |
msgid "Description"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
887 |
msgid "Rules"
|
888 |
msgstr "Regole"
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:636
|
891 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:826
|
892 |
msgid "Actions"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
896 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1087
|
897 |
msgid "Fieldset"
|
898 |
msgstr "Raggruppamento"
|
899 |
|
900 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1110
|
902 |
msgid "Can be empty"
|
903 |
msgstr "Può essere vuoto"
|
904 |
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
907 |
msgid "Check for E-mail syntax"
|
908 |
msgstr "Controlla la sintassi dell'E-mail"
|
909 |
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
912 |
msgid "Can be modified"
|
913 |
msgstr "Può essere modificato"
|
914 |
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:683
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
917 |
msgid "Can be modified only if empty"
|
918 |
msgstr "Può essere modificato solo se vuoto"
|
919 |
|
920 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1116
|
922 |
msgid "Can be modified only by admin"
|
923 |
msgstr "Può essere modificato solo dall'admin"
|
924 |
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
927 |
msgid "Can be modified only by admin or if empty"
|
928 |
msgstr "Può essere modificato solo dall'admin o se vuoto"
|
929 |
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
932 |
msgid "Cannot be modified"
|
933 |
msgstr "Non può essere modificato"
|
934 |
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1123
|
937 |
msgid "Should be equal TO"
|
938 |
msgstr "Deve essere uguale A"
|
939 |
|
940 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:696
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1125
|
942 |
msgid "Case sensitive"
|
943 |
msgstr "Distinguere le maiuscole"
|
944 |
|
945 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:699
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
947 |
msgid "Regular Expression"
|
948 |
msgstr "Espressione Regolare"
|
949 |
|
950 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
952 |
msgid "Show the field in the registration"
|
953 |
msgstr "Mostra il campo nella registrazione"
|
954 |
|
955 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
957 |
msgid "Show the field in User's profile"
|
958 |
msgstr "Mostra il campo nel profilo dell'utente"
|
959 |
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
962 |
msgid "Show the field in A&U Extended menu"
|
963 |
msgstr "Mostra il campo nel menù A&U esteso"
|
964 |
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1146
|
967 |
msgid "Show the field in the search engine"
|
968 |
msgstr "Mostra il campo nel motore di ricerca"
|
969 |
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
972 |
msgid "Show the field in the blog"
|
973 |
msgstr "Mostra il campo nel blog"
|
974 |
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1152
|
977 |
msgid "Show the field if the role is at least:"
|
978 |
msgstr "Mostra il campo se il ruolo è almeno:"
|
979 |
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1154
|
982 |
msgid "Anonymous"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
|
986 |
msgid "Clear"
|
987 |
msgstr "Pulisci"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
990 |
msgid "Invert selection"
|
991 |
msgstr "Inverti selezione"
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:788
|
994 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
995 |
msgstr "Sei sicuro di volere cancellare il(i) campo(i) e tutti i relativi dati inseriti dagli utenti?"
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:794
|
998 |
msgid "WordPress Fields"
|
999 |
msgstr "Campi WordPress"
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1002 |
msgid "None!"
|
1003 |
msgstr "Nessuno!"
|
1004 |
|
1005 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1053
|
1007 |
msgid "Order"
|
1008 |
msgstr "Ordine"
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1165
|
1011 |
msgid "Reset"
|
1012 |
msgstr "Reset"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1250
|
1015 |
msgid "select"
|
1016 |
msgstr "seleziona"
|
1017 |
|
1018 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1353
|
1019 |
#, php-format
|
1020 |
msgid "Users Matching \"%s\""
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
1024 |
#, fuzzy
|
1025 |
msgid "Users Extended List"
|
1026 |
msgstr "Lista Autori & Utenti Estesa"
|
1027 |
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1359
|
1029 |
msgid "Authors & Users Extended List"
|
1030 |
msgstr "Lista Autori & Utenti Estesa"
|
1031 |
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1033 |
#, php-format
|
1034 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
1038 |
msgid "Search Users"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1436
|
1042 |
msgid "« Back to All Users"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
1046 |
msgid "Users per page"
|
1047 |
msgstr "Utenti per pagina"
|
1048 |
|
1049 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
1050 |
msgid "Apply"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1470
|
1054 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
1055 |
msgid "Username"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1480
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
1060 |
msgid "E-mail"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1485
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
1065 |
#, fuzzy
|
1066 |
msgid "Role"
|
1067 |
msgstr "Regole"
|
1068 |
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1495
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
1071 |
msgid "Posts"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1605
|
1075 |
msgid "View posts by this author"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
|
1079 |
#, php-format
|
1080 |
msgid "e-mail: %s"
|
1081 |
msgstr ""
|
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: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <pik256@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,103 +16,114 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
|
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
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/
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:567
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:435
|
33 |
msgid "ERROR"
|
34 |
msgstr "BŁĄD"
|
35 |
|
36 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
37 |
msgid "does not match."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
41 |
msgid "hasn’t a correct email syntax."
|
42 |
msgstr "nie jest prawidłowym adresem email."
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
45 |
msgid "couldn’t be empty."
|
46 |
msgstr "nie może być pusty"
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
msgid "isn’t correct"
|
51 |
msgstr "jest nieprawidłowy"
|
52 |
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
54 |
msgid "YES"
|
55 |
msgstr "TAK"
|
56 |
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
msgid "NO"
|
59 |
msgstr "NIE"
|
60 |
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
62 |
msgid "should be"
|
63 |
msgstr "powinien być"
|
64 |
|
65 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
66 |
msgid "should be an image."
|
67 |
msgstr "powinien być obrazkiem."
|
68 |
|
69 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
70 |
msgid "couldn’t have size less than"
|
71 |
msgstr "nie może być mniejszy niż"
|
72 |
|
73 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
74 |
msgid "couldn’t have length less than"
|
75 |
msgstr "nie może być krótszy niż"
|
76 |
|
77 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
78 |
msgid "couldn’t have size different than"
|
79 |
msgstr "musi mieć rozmiar"
|
80 |
|
81 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
82 |
msgid "couldn’t have length different than"
|
83 |
msgstr "musi mieć długość"
|
84 |
|
85 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
86 |
msgid "couldn’t have size more than"
|
87 |
msgstr "nie może być większy niż"
|
88 |
|
89 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
90 |
msgid "couldn’t have length more than"
|
91 |
msgstr "nie może być dłuższy niż"
|
92 |
|
93 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
94 |
msgid "Typed code is not correct."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
98 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
99 |
msgid "Please upload a file with one of the following extensions"
|
100 |
msgstr "Wgraj plik w jednym z następujących formatów"
|
101 |
|
102 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
103 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
104 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
105 |
msgid "Please upload an image with one of the following extensions"
|
106 |
msgstr "Wgraj obrazek w jednym z następujących formatów"
|
107 |
|
108 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
109 |
msgid "Strength indicator"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
113 |
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 ! \\\" ? $ % ^ & )."
|
114 |
msgstr ""
|
115 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
117 |
msgid "no fieldset"
|
118 |
msgstr "brak grup pól"
|
@@ -149,281 +160,310 @@ msgstr "Opcje zostały zmienione na domyślne"
|
|
149 |
msgid "Options deleted"
|
150 |
msgstr "Opcje zostały wykasowane"
|
151 |
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
153 |
msgid "Options changed"
|
154 |
msgstr "Opcje zostały zmienione"
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
157 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
158 |
msgstr "Ta operacja stworzy/zaktualizuje wszystkie brakujące tabele/opcje, kontynuować?"
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
162 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
163 |
msgid "Options"
|
164 |
msgstr "Opcje"
|
165 |
|
166 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
167 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
168 |
msgid "Add a new Field"
|
169 |
msgstr "Dodaj nowe pole"
|
170 |
|
171 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
173 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
175 |
msgid "Extra Fields"
|
176 |
msgstr "Pola dodatkowe"
|
177 |
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
179 |
msgid "Support the Cimy Project"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
183 |
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!"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
188 |
msgid "SUCCESSFUL"
|
189 |
msgstr "PRAWIDŁOWO"
|
190 |
|
191 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
193 |
msgid "Save Changes"
|
194 |
msgstr "Zapisz zmiany"
|
195 |
|
196 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
197 |
msgid "General"
|
198 |
msgstr "Ogólne"
|
199 |
|
200 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
201 |
msgid "installed is"
|
202 |
msgstr "jest zainstalowany"
|
203 |
|
204 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
205 |
msgid "OPTIONS DELETED!"
|
206 |
msgstr "OPCJE USUNIĘTE!"
|
207 |
|
208 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
209 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
210 |
msgid "Fix the problem"
|
211 |
msgstr "Usuń problem"
|
212 |
|
213 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
214 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
215 |
msgstr "Wersja niekompatybilna! Nie deaktywowałeś a następnie nie reaktywowałeś wtyczki po aktualizacji wordpressa! To może spowodować problemy..."
|
216 |
|
217 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
218 |
msgid "Picture/Avatar upload"
|
219 |
msgstr "Wgrywanie obrazka/avatara"
|
220 |
|
221 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
222 |
msgid "is created and writable"
|
223 |
msgstr "jest utworzony i zapisywalny"
|
224 |
|
225 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
226 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
227 |
msgstr "NIE był wgrywany lub serwer nie ma możliwości zapisywania do niego"
|
228 |
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
230 |
#, fuzzy
|
231 |
msgid "Show all fields in the welcome email"
|
232 |
msgstr "Pokaż pole na blogu"
|
233 |
|
234 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
235 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
239 |
msgid "Enable email confirmation"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
243 |
msgid "user that registers should confirm its email address via a link click"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
251 |
msgid "Public KEY"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
255 |
msgid "Private KEY"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
msgid "Change login/registration page logo"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
263 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
264 |
msgid "Delete the picture"
|
265 |
msgstr "Usuń obrazek"
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
268 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
272 |
msgid "Database"
|
273 |
msgstr "Baza danych"
|
274 |
|
275 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
276 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
279 |
msgid "select action"
|
280 |
msgstr "wybór czynności"
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
283 |
msgid "Default values"
|
284 |
msgstr "Wartości domyślne"
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
287 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
288 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
msgid "Delete"
|
291 |
msgstr "Usuń"
|
292 |
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
295 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
297 |
msgid "NOT PRESENT"
|
298 |
msgstr "NIE OBECNA"
|
299 |
|
300 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
301 |
msgid "WordPress Fields table"
|
302 |
msgstr "Tabela pól Wordpressa"
|
303 |
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
307 |
msgid "Empty"
|
308 |
msgstr "Opróżnij"
|
309 |
|
310 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
311 |
msgid "Extra Fields table"
|
312 |
msgstr "Tabela pól dodatkowych"
|
313 |
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
315 |
msgid "Users Data table"
|
316 |
msgstr "Tabela danych użytkowników"
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
319 |
msgid "all data inserted by users in all and only extra fields"
|
320 |
msgstr "wszystkie dane wstawione przez użytkowników do pól dodatkowych"
|
321 |
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
323 |
msgid "Force tables creation"
|
324 |
msgstr "Wymuś utworzenie tabel"
|
325 |
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
327 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
328 |
msgstr "równoważne deaktywacji i ponownej reaktywacji wtyczki; żadne inne operacje nie zostaną wykonane"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
331 |
msgid "User Profile"
|
332 |
msgstr "Profil użytkownika"
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
335 |
msgid "Extra Fields section title"
|
336 |
msgstr "Tytuł sekcji pól dodatkowych"
|
337 |
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
339 |
msgid "Fieldset's titles, separates with comma"
|
340 |
msgstr "Tytuły grup pól, rozdziel przecinkami"
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
343 |
msgid "example: title1,title2,title3"
|
344 |
msgstr "Przykład: tytuł1, tytuł2, tytuł3"
|
345 |
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
347 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
348 |
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"
|
349 |
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
353 |
msgid "Authors & Users Extended"
|
354 |
msgstr "Rozszerzenia kont"
|
355 |
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
357 |
msgid "Hide username field"
|
358 |
msgstr "Ukryj pole z nazwą użytkownika"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
361 |
msgid "Hide name field"
|
362 |
msgstr "Ukryj nazwę"
|
363 |
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
365 |
msgid "Hide email field"
|
366 |
msgstr "Ukryj adres email"
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
369 |
msgid "Hide role field"
|
370 |
msgstr "Ukryj rolę"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
373 |
msgid "Hide website field"
|
374 |
msgstr "Ukryj pole witryna"
|
375 |
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
377 |
msgid "Hide n. posts field"
|
378 |
msgstr "Ukryj liczbę wpisów"
|
379 |
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
381 |
msgid "WordPress hidden fields"
|
382 |
msgstr "Ukryte pola Worpdressa"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
385 |
msgid "Show password"
|
386 |
msgstr "Pokaż hasło"
|
387 |
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
389 |
#, fuzzy
|
390 |
msgid "Show confirmation password"
|
391 |
msgstr "Pokaż hasło"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
394 |
#, fuzzy
|
395 |
msgid "Show password strength meter"
|
396 |
msgstr "Pokaż hasło"
|
397 |
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
399 |
msgid "Show first name"
|
400 |
msgstr "Pokaż imię"
|
401 |
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
403 |
msgid "Show last name"
|
404 |
msgstr "Pokaż nazwisko"
|
405 |
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
407 |
msgid "Show nickname"
|
408 |
msgstr "Pokaż pseudonim"
|
409 |
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
411 |
msgid "Show website"
|
412 |
msgstr "pokaż witrynę"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
415 |
msgid "Show AIM"
|
416 |
msgstr "Pokaż \"AIM\""
|
417 |
|
418 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
419 |
msgid "Show Yahoo IM"
|
420 |
msgstr "Pokaż \"Yahoo IM\""
|
421 |
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
423 |
msgid "Show Jabber / Google Talk"
|
424 |
msgstr "Pokaż \"Jabber / Google Talk\""
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
427 |
msgid "Show Biographical Info"
|
428 |
msgstr "Pokaż informacje dodatkowe"
|
429 |
|
@@ -452,8 +492,8 @@ msgid "Nickname"
|
|
452 |
msgstr "Pseudonim"
|
453 |
|
454 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
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 "Website"
|
458 |
msgstr "Strona internetowa"
|
459 |
|
@@ -473,17 +513,17 @@ msgstr "Jabber / Google Talk"
|
|
473 |
msgid "Biographical Info"
|
474 |
msgstr "Biografia"
|
475 |
|
476 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
477 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
478 |
msgid "Fields"
|
479 |
msgstr "Pola"
|
480 |
|
481 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
483 |
msgid "A&U Extended"
|
484 |
msgstr "Rozszerzenia"
|
485 |
|
486 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
487 |
msgid "Users Extended"
|
488 |
msgstr "Lista rozszerzona"
|
489 |
|
@@ -501,44 +541,62 @@ msgstr "Biblioteka GD nie jest zainstalowana."
|
|
501 |
msgid "File '%s' is not an image."
|
502 |
msgstr "Plik '%s' musi być obrazkiem"
|
503 |
|
504 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
505 |
#, php-format
|
506 |
msgid "New user registration on your site %s:"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
510 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
511 |
#, fuzzy, php-format
|
512 |
msgid "Username: %s"
|
513 |
msgstr "Nazwa użytkownika"
|
514 |
|
515 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
516 |
#, fuzzy, php-format
|
517 |
msgid "E-mail: %s"
|
518 |
msgstr "e-mail: %s"
|
519 |
|
520 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
521 |
#, php-format
|
522 |
msgid "[%s] New User Registration"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
526 |
#, fuzzy, php-format
|
527 |
msgid "Password: %s"
|
528 |
msgstr "Hasło"
|
529 |
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
531 |
#, php-format
|
532 |
msgid "[%s] Your username and password"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
536 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
537 |
#, php-format
|
538 |
msgid "%s: %s"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
542 |
#, php-format
|
543 |
msgid ""
|
544 |
"To activate your user, please click the following link:\n"
|
@@ -549,74 +607,58 @@ msgid ""
|
|
549 |
"\n"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
553 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
554 |
msgid "Your account is now active!"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
558 |
#, php-format
|
559 |
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>."
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
563 |
msgid "An error occurred during the activation"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
567 |
#, fuzzy
|
568 |
msgid "Username:"
|
569 |
msgstr "Nazwa użytkownika"
|
570 |
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
572 |
#, fuzzy
|
573 |
msgid "Password:"
|
574 |
msgstr "Hasło"
|
575 |
|
576 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
577 |
msgid "Invalid activation key."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
581 |
msgid "The site is already active."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
585 |
msgid "Could not create user"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
589 |
msgid "That username is already activated."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
593 |
msgid "That username is currently reserved but may be available in a couple of days."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
597 |
msgid "username and email used"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
601 |
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."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
605 |
-
msgid "Delete the file"
|
606 |
-
msgstr "Usuń plik"
|
607 |
-
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
609 |
-
msgid "Update the file"
|
610 |
-
msgstr "Zaktualizuj plik"
|
611 |
-
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
613 |
-
msgid "Update the picture"
|
614 |
-
msgstr "Wgraj obrazek"
|
615 |
-
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
617 |
-
msgid "Picture URL:"
|
618 |
-
msgstr "URL obrazka:"
|
619 |
-
|
620 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
621 |
msgid "Add field"
|
622 |
msgstr "Dodaj pole"
|
@@ -638,17 +680,17 @@ msgid "Change order"
|
|
638 |
msgstr "Zmień kolejność"
|
639 |
|
640 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
641 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
642 |
msgid "Min length"
|
643 |
msgstr "Długość min"
|
644 |
|
645 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
646 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
647 |
msgid "Exact length"
|
648 |
msgstr "Długość dokładna"
|
649 |
|
650 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
651 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
652 |
msgid "Max length"
|
653 |
msgstr "Długość max"
|
654 |
|
@@ -678,17 +720,17 @@ msgid "deleted correctly"
|
|
678 |
msgstr "wykasowano prawidłowo"
|
679 |
|
680 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
681 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
682 |
msgid "Min size"
|
683 |
msgstr "Rozmiar min"
|
684 |
|
685 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
687 |
msgid "Exact size"
|
688 |
msgstr "Rozmiar dokładny"
|
689 |
|
690 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
692 |
msgid "Max size"
|
693 |
msgstr "Rozmiar max"
|
694 |
|
@@ -763,267 +805,267 @@ msgstr "zaktualizowane prawidłowo"
|
|
763 |
msgid "Name inserted is just in the database, change to another one"
|
764 |
msgstr "Podana nazwa już jest w bazie danych, zmień na inną"
|
765 |
|
766 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
767 |
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."
|
768 |
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."
|
769 |
|
770 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
771 |
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'"
|
772 |
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."
|
773 |
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
775 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
776 |
msgstr "Dla <strong>listy (drop-down)</strong>: musisz podać wszystkie opcje w etykiecie. Np.: etykieta/wartość1,wartość2,wartość3. "
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
779 |
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"
|
780 |
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."
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
783 |
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)"
|
784 |
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)."
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
787 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
788 |
msgstr "Dla <strong>daty rejestracji</strong>: <em>równe</em> oznacza datę i czas rejestracji."
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
791 |
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"
|
792 |
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."
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
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"
|
796 |
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"
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
800 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
801 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
804 |
msgid "Name"
|
805 |
msgstr "Nazwa"
|
806 |
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
808 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
809 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
msgid "Value"
|
812 |
msgstr "Wartość"
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
817 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
818 |
msgid "Type"
|
819 |
msgstr "Typ"
|
820 |
|
821 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
825 |
msgid "Label"
|
826 |
msgstr "Etykieta"
|
827 |
|
|
|
828 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
829 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
832 |
msgid "Description"
|
833 |
msgstr "Opis"
|
834 |
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
837 |
msgid "Rules"
|
838 |
msgstr "Reguły"
|
839 |
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
842 |
msgid "Actions"
|
843 |
msgstr "Działania"
|
844 |
|
845 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
msgid "Fieldset"
|
848 |
msgstr "Grupa pól"
|
849 |
|
850 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
852 |
msgid "Can be empty"
|
853 |
msgstr "Może być puste"
|
854 |
|
855 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
857 |
msgid "Check for E-mail syntax"
|
858 |
msgstr "Sprawdzaj poprawność adresu email"
|
859 |
|
860 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
861 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
862 |
msgid "Can be modified"
|
863 |
msgstr "Może być zmieniane"
|
864 |
|
865 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
866 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
867 |
msgid "Can be modified only if empty"
|
868 |
msgstr "Może być zmienione tylko jeśli jest puste"
|
869 |
|
870 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
871 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
872 |
msgid "Can be modified only by admin"
|
873 |
msgstr "Może być modyfikowane tylko przez administratora"
|
874 |
|
875 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
877 |
msgid "Can be modified only by admin or if empty"
|
878 |
msgstr "Może być modyfikowane tylko przez administratora jeśli jest puste"
|
879 |
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
882 |
msgid "Cannot be modified"
|
883 |
msgstr "Nie może być zmieniane"
|
884 |
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
886 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
887 |
msgid "Should be equal TO"
|
888 |
msgstr "Powinno być równe"
|
889 |
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
891 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
892 |
msgid "Case sensitive"
|
893 |
msgstr "Rozróżnia wielkość liter"
|
894 |
|
895 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
897 |
msgid "Regular Expression"
|
898 |
msgstr "Wyrażenie regularne"
|
899 |
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
901 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
902 |
msgid "Show the field in the registration"
|
903 |
msgstr "Pokaż pole podczas rejestracji"
|
904 |
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
906 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
907 |
msgid "Show the field in User's profile"
|
908 |
msgstr "Pokaż pole w profilu użytkownika"
|
909 |
|
910 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
911 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
912 |
msgid "Show the field in A&U Extended menu"
|
913 |
msgstr "Pokaż pole na rozszerzonej liście użytkowników"
|
914 |
|
915 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
917 |
msgid "Show the field in the search engine"
|
918 |
msgstr "Pokaż pole w profilu użytkownika"
|
919 |
|
920 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
921 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
922 |
msgid "Show the field in the blog"
|
923 |
msgstr "Pokaż pole na blogu"
|
924 |
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
926 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
927 |
msgid "Show the field if the role is at least:"
|
928 |
msgstr "Pokaż pole jeżeli rolą użytkownika jest przynajmniej:"
|
929 |
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
931 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
932 |
msgid "Anonymous"
|
933 |
msgstr "Anonim"
|
934 |
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
msgid "Clear"
|
937 |
msgstr "Wyczyść"
|
938 |
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
msgid "Invert selection"
|
941 |
msgstr "Odwróć wybór"
|
942 |
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
944 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
945 |
msgstr "Czy na pewno chcesz wykasować pola i wszystkie dane wprowadzone w nie przez użytkowników"
|
946 |
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
948 |
msgid "WordPress Fields"
|
949 |
msgstr "Pola Wordpressa"
|
950 |
|
951 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
952 |
msgid "None!"
|
953 |
msgstr "Brak!"
|
954 |
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
957 |
msgid "Order"
|
958 |
msgstr "Kolejność"
|
959 |
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
961 |
msgid "Reset"
|
962 |
msgstr "Wyczyść"
|
963 |
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
msgid "select"
|
966 |
msgstr "- Wybierz -"
|
967 |
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
969 |
#, php-format
|
970 |
msgid "Users Matching \"%s\""
|
971 |
msgstr "Użytkownicy pasujący do wzorca \"%s\""
|
972 |
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
974 |
msgid "Users Extended List"
|
975 |
msgstr "Rozszerzona lista użytkowników"
|
976 |
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
978 |
msgid "Authors & Users Extended List"
|
979 |
msgstr "Rozszerzona lista użytkowników i autorów"
|
980 |
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
982 |
#, php-format
|
983 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
987 |
msgid "Search Users"
|
988 |
msgstr "Szukaj użytkowników"
|
989 |
|
990 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
991 |
msgid "« Back to All Users"
|
992 |
msgstr "« Powrót do wszystkich"
|
993 |
|
994 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
995 |
msgid "Users per page"
|
996 |
msgstr "Użytkowników na stronie"
|
997 |
|
998 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
999 |
msgid "Apply"
|
1000 |
msgstr "Zastosuj"
|
1001 |
|
1002 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
msgid "Username"
|
1005 |
msgstr "Nazwa użytkownika"
|
1006 |
|
1007 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1009 |
msgid "E-mail"
|
1010 |
msgstr "E-mail"
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1014 |
msgid "Role"
|
1015 |
msgstr "Rola"
|
1016 |
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1018 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1019 |
msgid "Posts"
|
1020 |
msgstr "Wpisy"
|
1021 |
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1023 |
msgid "View posts by this author"
|
1024 |
msgstr "Zobacz wpisy tego autora"
|
1025 |
|
1026 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1027 |
#, php-format
|
1028 |
msgid "e-mail: %s"
|
1029 |
msgstr "e-mail: %s"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-09-21 00:23+0300\n"
|
6 |
+
"PO-Revision-Date: 2010-09-21 00:23+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <pik256@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:442
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
27 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
|
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "BŁĄD"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "nie jest prawidłowym adresem email."
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "nie może być pusty"
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:441
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "jest nieprawidłowy"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
55 |
msgid "YES"
|
56 |
msgstr "TAK"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
59 |
msgid "NO"
|
60 |
msgstr "NIE"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
63 |
msgid "should be"
|
64 |
msgstr "powinien być"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
67 |
msgid "should be an image."
|
68 |
msgstr "powinien być obrazkiem."
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "nie może być mniejszy niż"
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "nie może być krótszy niż"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "musi mieć rozmiar"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "musi mieć długość"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "nie może być większy niż"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "nie może być dłuższy niż"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:824
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
101 |
msgid "Please upload a file with one of the following extensions"
|
102 |
msgstr "Wgraj plik w jednym z następujących formatów"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:369
|
106 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
107 |
msgid "Please upload an image with one of the following extensions"
|
108 |
msgstr "Wgraj obrazek w jednym z następujących formatów"
|
109 |
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:910
|
111 |
msgid "Strength indicator"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:911
|
115 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \\\" ? $ % ^ & )."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:948
|
119 |
+
#, fuzzy
|
120 |
+
msgid "Change image"
|
121 |
+
msgstr "Zmień kolejność"
|
122 |
+
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:951
|
124 |
+
msgid "Insert the code:"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
128 |
msgid "no fieldset"
|
129 |
msgstr "brak grup pól"
|
160 |
msgid "Options deleted"
|
161 |
msgstr "Opcje zostały wykasowane"
|
162 |
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:345
|
164 |
msgid "Options changed"
|
165 |
msgstr "Opcje zostały zmienione"
|
166 |
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:472
|
168 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
169 |
msgstr "Ta operacja stworzy/zaktualizuje wszystkie brakujące tabele/opcje, kontynuować?"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
172 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:726
|
174 |
msgid "Options"
|
175 |
msgstr "Opcje"
|
176 |
|
177 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
178 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
179 |
msgid "Add a new Field"
|
180 |
msgstr "Dodaj nowe pole"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:796
|
184 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:249
|
186 |
msgid "Extra Fields"
|
187 |
msgstr "Pola dodatkowe"
|
188 |
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
190 |
msgid "Support the Cimy Project"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
194 |
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!"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:508
|
198 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1221
|
199 |
msgid "SUCCESSFUL"
|
200 |
msgstr "PRAWIDŁOWO"
|
201 |
|
202 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
204 |
msgid "Save Changes"
|
205 |
msgstr "Zapisz zmiany"
|
206 |
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:522
|
208 |
msgid "General"
|
209 |
msgstr "Ogólne"
|
210 |
|
211 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
212 |
msgid "installed is"
|
213 |
msgstr "jest zainstalowany"
|
214 |
|
215 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
216 |
msgid "OPTIONS DELETED!"
|
217 |
msgstr "OPCJE USUNIĘTE!"
|
218 |
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:542
|
221 |
msgid "Fix the problem"
|
222 |
msgstr "Usuń problem"
|
223 |
|
224 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
225 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
226 |
msgstr "Wersja niekompatybilna! Nie deaktywowałeś a następnie nie reaktywowałeś wtyczki po aktualizacji wordpressa! To może spowodować problemy..."
|
227 |
|
228 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
229 |
msgid "Picture/Avatar upload"
|
230 |
msgstr "Wgrywanie obrazka/avatara"
|
231 |
|
232 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:552
|
233 |
msgid "is created and writable"
|
234 |
msgstr "jest utworzony i zapisywalny"
|
235 |
|
236 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
237 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
238 |
msgstr "NIE był wgrywany lub serwer nie ma możliwości zapisywania do niego"
|
239 |
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
241 |
#, fuzzy
|
242 |
msgid "Show all fields in the welcome email"
|
243 |
msgstr "Pokaż pole na blogu"
|
244 |
|
245 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
246 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
|
250 |
msgid "Enable email confirmation"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:577
|
254 |
msgid "user that registers should confirm its email address via a link click"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
|
258 |
+
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
262 |
+
msgid "Redirect to the source"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:590
|
266 |
+
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
270 |
+
msgid "No captcha"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
|
274 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:610
|
278 |
msgid "Public KEY"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
282 |
msgid "Private KEY"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:622
|
286 |
+
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
290 |
+
msgid "This captcha is probably weaker, but is easier for users"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
294 |
+
#, php-format
|
295 |
+
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>"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:636
|
299 |
msgid "Change login/registration page logo"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:641
|
303 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
304 |
msgid "Delete the picture"
|
305 |
msgstr "Usuń obrazek"
|
306 |
|
307 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
308 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
|
312 |
msgid "Database"
|
313 |
msgstr "Baza danych"
|
314 |
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
|
316 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:677
|
317 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
319 |
msgid "select action"
|
320 |
msgstr "wybór czynności"
|
321 |
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:660
|
323 |
msgid "Default values"
|
324 |
msgstr "Wartości domyślne"
|
325 |
|
326 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:698
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
|
330 |
msgid "Delete"
|
331 |
msgstr "Usuń"
|
332 |
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:702
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
337 |
msgid "NOT PRESENT"
|
338 |
msgstr "NIE OBECNA"
|
339 |
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
341 |
msgid "WordPress Fields table"
|
342 |
msgstr "Tabela pól Wordpressa"
|
343 |
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:678
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
346 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
|
347 |
msgid "Empty"
|
348 |
msgstr "Opróżnij"
|
349 |
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
351 |
msgid "Extra Fields table"
|
352 |
msgstr "Tabela pól dodatkowych"
|
353 |
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
355 |
msgid "Users Data table"
|
356 |
msgstr "Tabela danych użytkowników"
|
357 |
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
359 |
msgid "all data inserted by users in all and only extra fields"
|
360 |
msgstr "wszystkie dane wstawione przez użytkowników do pól dodatkowych"
|
361 |
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
363 |
msgid "Force tables creation"
|
364 |
msgstr "Wymuś utworzenie tabel"
|
365 |
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
367 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
368 |
msgstr "równoważne deaktywacji i ponownej reaktywacji wtyczki; żadne inne operacje nie zostaną wykonane"
|
369 |
|
370 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
371 |
msgid "User Profile"
|
372 |
msgstr "Profil użytkownika"
|
373 |
|
374 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
375 |
msgid "Extra Fields section title"
|
376 |
msgstr "Tytuł sekcji pól dodatkowych"
|
377 |
|
378 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
379 |
msgid "Fieldset's titles, separates with comma"
|
380 |
msgstr "Tytuły grup pól, rozdziel przecinkami"
|
381 |
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
383 |
msgid "example: title1,title2,title3"
|
384 |
msgstr "Przykład: tytuł1, tytuł2, tytuł3"
|
385 |
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
387 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
388 |
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"
|
389 |
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:747
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
393 |
msgid "Authors & Users Extended"
|
394 |
msgstr "Rozszerzenia kont"
|
395 |
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
|
397 |
msgid "Hide username field"
|
398 |
msgstr "Ukryj pole z nazwą użytkownika"
|
399 |
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
401 |
msgid "Hide name field"
|
402 |
msgstr "Ukryj nazwę"
|
403 |
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:762
|
405 |
msgid "Hide email field"
|
406 |
msgstr "Ukryj adres email"
|
407 |
|
408 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
409 |
msgid "Hide role field"
|
410 |
msgstr "Ukryj rolę"
|
411 |
|
412 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
413 |
msgid "Hide website field"
|
414 |
msgstr "Ukryj pole witryna"
|
415 |
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:774
|
417 |
msgid "Hide n. posts field"
|
418 |
msgstr "Ukryj liczbę wpisów"
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
|
421 |
msgid "WordPress hidden fields"
|
422 |
msgstr "Ukryte pola Worpdressa"
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
425 |
msgid "Show password"
|
426 |
msgstr "Pokaż hasło"
|
427 |
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
429 |
#, fuzzy
|
430 |
msgid "Show confirmation password"
|
431 |
msgstr "Pokaż hasło"
|
432 |
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:790
|
434 |
#, fuzzy
|
435 |
msgid "Show password strength meter"
|
436 |
msgstr "Pokaż hasło"
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:794
|
439 |
msgid "Show first name"
|
440 |
msgstr "Pokaż imię"
|
441 |
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:798
|
443 |
msgid "Show last name"
|
444 |
msgstr "Pokaż nazwisko"
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:802
|
447 |
msgid "Show nickname"
|
448 |
msgstr "Pokaż pseudonim"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:806
|
451 |
msgid "Show website"
|
452 |
msgstr "pokaż witrynę"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:810
|
455 |
msgid "Show AIM"
|
456 |
msgstr "Pokaż \"AIM\""
|
457 |
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:814
|
459 |
msgid "Show Yahoo IM"
|
460 |
msgstr "Pokaż \"Yahoo IM\""
|
461 |
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:818
|
463 |
msgid "Show Jabber / Google Talk"
|
464 |
msgstr "Pokaż \"Jabber / Google Talk\""
|
465 |
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:822
|
467 |
msgid "Show Biographical Info"
|
468 |
msgstr "Pokaż informacje dodatkowe"
|
469 |
|
492 |
msgstr "Pseudonim"
|
493 |
|
494 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
497 |
msgid "Website"
|
498 |
msgstr "Strona internetowa"
|
499 |
|
513 |
msgid "Biographical Info"
|
514 |
msgstr "Biografia"
|
515 |
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:727
|
517 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
518 |
msgid "Fields"
|
519 |
msgstr "Pola"
|
520 |
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
523 |
msgid "A&U Extended"
|
524 |
msgstr "Rozszerzenia"
|
525 |
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:732
|
527 |
msgid "Users Extended"
|
528 |
msgstr "Lista rozszerzona"
|
529 |
|
541 |
msgid "File '%s' is not an image."
|
542 |
msgstr "Plik '%s' musi być obrazkiem"
|
543 |
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
545 |
+
msgid "Delete the file"
|
546 |
+
msgstr "Usuń plik"
|
547 |
+
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
549 |
+
msgid "Update the file"
|
550 |
+
msgstr "Zaktualizuj plik"
|
551 |
+
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
553 |
+
msgid "Update the picture"
|
554 |
+
msgstr "Wgraj obrazek"
|
555 |
+
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
557 |
+
msgid "Picture URL:"
|
558 |
+
msgstr "URL obrazka:"
|
559 |
+
|
560 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:38
|
561 |
#, php-format
|
562 |
msgid "New user registration on your site %s:"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:39
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:50
|
567 |
#, fuzzy, php-format
|
568 |
msgid "Username: %s"
|
569 |
msgstr "Nazwa użytkownika"
|
570 |
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:40
|
572 |
#, fuzzy, php-format
|
573 |
msgid "E-mail: %s"
|
574 |
msgstr "e-mail: %s"
|
575 |
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
577 |
#, php-format
|
578 |
msgid "[%s] New User Registration"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:51
|
582 |
#, fuzzy, php-format
|
583 |
msgid "Password: %s"
|
584 |
msgstr "Hasło"
|
585 |
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
587 |
#, php-format
|
588 |
msgid "[%s] Your username and password"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:91
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:97
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:109
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:115
|
595 |
#, php-format
|
596 |
msgid "%s: %s"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:189
|
600 |
#, php-format
|
601 |
msgid ""
|
602 |
"To activate your user, please click the following link:\n"
|
607 |
"\n"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:204
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
612 |
msgid "Your account is now active!"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
616 |
#, php-format
|
617 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:207
|
621 |
msgid "An error occurred during the activation"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
625 |
#, fuzzy
|
626 |
msgid "Username:"
|
627 |
msgstr "Nazwa użytkownika"
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
630 |
#, fuzzy
|
631 |
msgid "Password:"
|
632 |
msgstr "Hasło"
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:226
|
635 |
msgid "Invalid activation key."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:229
|
639 |
msgid "The site is already active."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:248
|
643 |
msgid "Could not create user"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
647 |
msgid "That username is already activated."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:279
|
651 |
msgid "That username is currently reserved but may be available in a couple of days."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:282
|
655 |
msgid "username and email used"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
659 |
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."
|
660 |
msgstr ""
|
661 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
662 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
663 |
msgid "Add field"
|
664 |
msgstr "Dodaj pole"
|
680 |
msgstr "Zmień kolejność"
|
681 |
|
682 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
683 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
|
684 |
msgid "Min length"
|
685 |
msgstr "Długość min"
|
686 |
|
687 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
688 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1041
|
689 |
msgid "Exact length"
|
690 |
msgstr "Długość dokładna"
|
691 |
|
692 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1042
|
694 |
msgid "Max length"
|
695 |
msgstr "Długość max"
|
696 |
|
720 |
msgstr "wykasowano prawidłowo"
|
721 |
|
722 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
|
724 |
msgid "Min size"
|
725 |
msgstr "Rozmiar min"
|
726 |
|
727 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
728 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1033
|
729 |
msgid "Exact size"
|
730 |
msgstr "Rozmiar dokładny"
|
731 |
|
732 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1034
|
734 |
msgid "Max size"
|
735 |
msgstr "Rozmiar max"
|
736 |
|
805 |
msgid "Name inserted is just in the database, change to another one"
|
806 |
msgstr "Podana nazwa już jest w bazie danych, zmień na inną"
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
809 |
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."
|
810 |
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."
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
813 |
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'"
|
814 |
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."
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
817 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
818 |
msgstr "Dla <strong>listy (drop-down)</strong>: musisz podać wszystkie opcje w etykiecie. Np.: etykieta/wartość1,wartość2,wartość3. "
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
821 |
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"
|
822 |
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."
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
|
825 |
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)"
|
826 |
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)."
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
829 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
830 |
msgstr "Dla <strong>daty rejestracji</strong>: <em>równe</em> oznacza datę i czas rejestracji."
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
|
833 |
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"
|
834 |
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."
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
837 |
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"
|
838 |
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"
|
839 |
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
842 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
844 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1475
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
846 |
msgid "Name"
|
847 |
msgstr "Nazwa"
|
848 |
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:643
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
853 |
msgid "Value"
|
854 |
msgstr "Wartość"
|
855 |
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1071
|
860 |
msgid "Type"
|
861 |
msgstr "Typ"
|
862 |
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:665
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1093
|
867 |
msgid "Label"
|
868 |
msgstr "Etykieta"
|
869 |
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
871 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1096
|
|
|
874 |
msgid "Description"
|
875 |
msgstr "Opis"
|
876 |
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
879 |
msgid "Rules"
|
880 |
msgstr "Reguły"
|
881 |
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:636
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:826
|
884 |
msgid "Actions"
|
885 |
msgstr "Działania"
|
886 |
|
887 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
888 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1087
|
889 |
msgid "Fieldset"
|
890 |
msgstr "Grupa pól"
|
891 |
|
892 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1110
|
894 |
msgid "Can be empty"
|
895 |
msgstr "Może być puste"
|
896 |
|
897 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
899 |
msgid "Check for E-mail syntax"
|
900 |
msgstr "Sprawdzaj poprawność adresu email"
|
901 |
|
902 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
|
903 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
904 |
msgid "Can be modified"
|
905 |
msgstr "Może być zmieniane"
|
906 |
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:683
|
908 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
909 |
msgid "Can be modified only if empty"
|
910 |
msgstr "Może być zmienione tylko jeśli jest puste"
|
911 |
|
912 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1116
|
914 |
msgid "Can be modified only by admin"
|
915 |
msgstr "Może być modyfikowane tylko przez administratora"
|
916 |
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
919 |
msgid "Can be modified only by admin or if empty"
|
920 |
msgstr "Może być modyfikowane tylko przez administratora jeśli jest puste"
|
921 |
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
924 |
msgid "Cannot be modified"
|
925 |
msgstr "Nie może być zmieniane"
|
926 |
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1123
|
929 |
msgid "Should be equal TO"
|
930 |
msgstr "Powinno być równe"
|
931 |
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:696
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1125
|
934 |
msgid "Case sensitive"
|
935 |
msgstr "Rozróżnia wielkość liter"
|
936 |
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:699
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
939 |
msgid "Regular Expression"
|
940 |
msgstr "Wyrażenie regularne"
|
941 |
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
944 |
msgid "Show the field in the registration"
|
945 |
msgstr "Pokaż pole podczas rejestracji"
|
946 |
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
949 |
msgid "Show the field in User's profile"
|
950 |
msgstr "Pokaż pole w profilu użytkownika"
|
951 |
|
952 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
954 |
msgid "Show the field in A&U Extended menu"
|
955 |
msgstr "Pokaż pole na rozszerzonej liście użytkowników"
|
956 |
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1146
|
959 |
msgid "Show the field in the search engine"
|
960 |
msgstr "Pokaż pole w profilu użytkownika"
|
961 |
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
963 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
964 |
msgid "Show the field in the blog"
|
965 |
msgstr "Pokaż pole na blogu"
|
966 |
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
968 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1152
|
969 |
msgid "Show the field if the role is at least:"
|
970 |
msgstr "Pokaż pole jeżeli rolą użytkownika jest przynajmniej:"
|
971 |
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1154
|
974 |
msgid "Anonymous"
|
975 |
msgstr "Anonim"
|
976 |
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
|
978 |
msgid "Clear"
|
979 |
msgstr "Wyczyść"
|
980 |
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
982 |
msgid "Invert selection"
|
983 |
msgstr "Odwróć wybór"
|
984 |
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:788
|
986 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
987 |
msgstr "Czy na pewno chcesz wykasować pola i wszystkie dane wprowadzone w nie przez użytkowników"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:794
|
990 |
msgid "WordPress Fields"
|
991 |
msgstr "Pola Wordpressa"
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
994 |
msgid "None!"
|
995 |
msgstr "Brak!"
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1053
|
999 |
msgid "Order"
|
1000 |
msgstr "Kolejność"
|
1001 |
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1165
|
1003 |
msgid "Reset"
|
1004 |
msgstr "Wyczyść"
|
1005 |
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1250
|
1007 |
msgid "select"
|
1008 |
msgstr "- Wybierz -"
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1353
|
1011 |
#, php-format
|
1012 |
msgid "Users Matching \"%s\""
|
1013 |
msgstr "Użytkownicy pasujący do wzorca \"%s\""
|
1014 |
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
1016 |
msgid "Users Extended List"
|
1017 |
msgstr "Rozszerzona lista użytkowników"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1359
|
1020 |
msgid "Authors & Users Extended List"
|
1021 |
msgstr "Rozszerzona lista użytkowników i autorów"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1024 |
#, php-format
|
1025 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
1029 |
msgid "Search Users"
|
1030 |
msgstr "Szukaj użytkowników"
|
1031 |
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1436
|
1033 |
msgid "« Back to All Users"
|
1034 |
msgstr "« Powrót do wszystkich"
|
1035 |
|
1036 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
1037 |
msgid "Users per page"
|
1038 |
msgstr "Użytkowników na stronie"
|
1039 |
|
1040 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
1041 |
msgid "Apply"
|
1042 |
msgstr "Zastosuj"
|
1043 |
|
1044 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1470
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
1046 |
msgid "Username"
|
1047 |
msgstr "Nazwa użytkownika"
|
1048 |
|
1049 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1480
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
1051 |
msgid "E-mail"
|
1052 |
msgstr "E-mail"
|
1053 |
|
1054 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1485
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
1056 |
msgid "Role"
|
1057 |
msgstr "Rola"
|
1058 |
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1495
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
1061 |
msgid "Posts"
|
1062 |
msgstr "Wpisy"
|
1063 |
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1605
|
1065 |
msgid "View posts by this author"
|
1066 |
msgstr "Zobacz wpisy tego autora"
|
1067 |
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
|
1069 |
#, php-format
|
1070 |
msgid "e-mail: %s"
|
1071 |
msgstr "e-mail: %s"
|
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: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,104 +16,115 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
|
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
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/
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:567
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:435
|
33 |
msgid "ERROR"
|
34 |
msgstr "ERRO"
|
35 |
|
36 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
37 |
msgid "does not match."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
41 |
msgid "hasn’t a correct email syntax."
|
42 |
msgstr "Não há uma sintaxe de e-mail correta"
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
45 |
msgid "couldn’t be empty."
|
46 |
msgstr "Não pode estar vazio"
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
msgid "isn’t correct"
|
51 |
msgstr "não está correto"
|
52 |
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
54 |
msgid "YES"
|
55 |
msgstr "SIM"
|
56 |
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
msgid "NO"
|
59 |
msgstr "NÃO"
|
60 |
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
62 |
msgid "should be"
|
63 |
msgstr "deve ser"
|
64 |
|
65 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
66 |
msgid "should be an image."
|
67 |
msgstr "deve ser uma imagem"
|
68 |
|
69 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
70 |
msgid "couldn’t have size less than"
|
71 |
msgstr "não pode ter tamanho menor que"
|
72 |
|
73 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
74 |
msgid "couldn’t have length less than"
|
75 |
msgstr "não pode ter comprimento menor que"
|
76 |
|
77 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
78 |
msgid "couldn’t have size different than"
|
79 |
msgstr "não pode ter tamanho diferente de"
|
80 |
|
81 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
82 |
msgid "couldn’t have length different than"
|
83 |
msgstr "não pode ter comprimento diferente de"
|
84 |
|
85 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
86 |
msgid "couldn’t have size more than"
|
87 |
msgstr "não pode ter tamanho maior que"
|
88 |
|
89 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
90 |
msgid "couldn’t have length more than"
|
91 |
msgstr "não pode ter comprimento maior que"
|
92 |
|
93 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
94 |
msgid "Typed code is not correct."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
98 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
99 |
#, fuzzy
|
100 |
msgid "Please upload a file with one of the following extensions"
|
101 |
msgstr "Por favor, insira uma imagem com uma das seguintes extensões"
|
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_options.php:
|
105 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
106 |
msgid "Please upload an image with one of the following extensions"
|
107 |
msgstr "Por favor, insira uma imagem com uma das seguintes extensões"
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
msgid "Strength indicator"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
114 |
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 ! \\\" ? $ % ^ & )."
|
115 |
msgstr ""
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
118 |
#, fuzzy
|
119 |
msgid "no fieldset"
|
@@ -153,284 +164,313 @@ msgstr "Opções marcadas com valores padrão"
|
|
153 |
msgid "Options deleted"
|
154 |
msgstr "Opções excluídas"
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
157 |
msgid "Options changed"
|
158 |
msgstr "Opções alteradas"
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
161 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
165 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
166 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
167 |
msgid "Options"
|
168 |
msgstr "Opções"
|
169 |
|
170 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
171 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
172 |
msgid "Add a new Field"
|
173 |
msgstr "Adicionar um novo campo"
|
174 |
|
175 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
176 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
177 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
179 |
msgid "Extra Fields"
|
180 |
msgstr "Campos Adicionais"
|
181 |
|
182 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
183 |
msgid "Support the Cimy Project"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
187 |
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!"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
191 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
192 |
msgid "SUCCESSFUL"
|
193 |
msgstr "SUCESSO"
|
194 |
|
195 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
196 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
197 |
msgid "Save Changes"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
201 |
msgid "General"
|
202 |
msgstr "Geral"
|
203 |
|
204 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
205 |
msgid "installed is"
|
206 |
msgstr "instalado"
|
207 |
|
208 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
209 |
msgid "OPTIONS DELETED!"
|
210 |
msgstr "OPÇÕES EXCLUÍDAS!"
|
211 |
|
212 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
213 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
214 |
msgid "Fix the problem"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
218 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
219 |
msgstr "VERSÃO NÃO CORRESPONDENTE! Acontece quando você não desativa e re-ativa o plug-in depois de atualizá-lo! Isso pode causar problemas..."
|
220 |
|
221 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
222 |
msgid "Picture/Avatar upload"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
226 |
msgid "is created and writable"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
230 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
234 |
#, fuzzy
|
235 |
msgid "Show all fields in the welcome email"
|
236 |
msgstr "Mostrar campo no formulário de registro"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
239 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
243 |
msgid "Enable email confirmation"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
247 |
msgid "user that registers should confirm its email address via a link click"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
255 |
msgid "Public KEY"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
259 |
msgid "Private KEY"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
msgid "Change login/registration page logo"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
267 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
268 |
#, fuzzy
|
269 |
msgid "Delete the picture"
|
270 |
msgstr "Excluir campo"
|
271 |
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
273 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
277 |
msgid "Database"
|
278 |
msgstr "Banco de dados"
|
279 |
|
280 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
283 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
284 |
msgid "select action"
|
285 |
msgstr "selecione uma ação"
|
286 |
|
287 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
288 |
msgid "Default values"
|
289 |
msgstr "Valores padrão"
|
290 |
|
291 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
292 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
293 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
295 |
msgid "Delete"
|
296 |
msgstr "Excluir"
|
297 |
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
299 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
300 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
302 |
msgid "NOT PRESENT"
|
303 |
msgstr "NÃO PRESENTE"
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
306 |
#, fuzzy
|
307 |
msgid "WordPress Fields table"
|
308 |
msgstr "Tabela de Campos Adicionais"
|
309 |
|
310 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
312 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
313 |
msgid "Empty"
|
314 |
msgstr "Vazio"
|
315 |
|
316 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
317 |
msgid "Extra Fields table"
|
318 |
msgstr "Tabela de Campos Adicionais"
|
319 |
|
320 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
321 |
msgid "Users Data table"
|
322 |
msgstr "Tabela de Dados de Usuários"
|
323 |
|
324 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
325 |
msgid "all data inserted by users in all and only extra fields"
|
326 |
msgstr "todos os dados inseridos por usuários em todos e somente campos adicionais"
|
327 |
|
328 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
329 |
msgid "Force tables creation"
|
330 |
msgstr "Forçar criação de tabelas"
|
331 |
|
332 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
333 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
337 |
msgid "User Profile"
|
338 |
msgstr "Perfil do usuário"
|
339 |
|
340 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
341 |
#, fuzzy
|
342 |
msgid "Extra Fields section title"
|
343 |
msgstr "Tabela de Campos Adicionais"
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
346 |
msgid "Fieldset's titles, separates with comma"
|
347 |
msgstr "Títulos de reagrupamento, separados por vírgula"
|
348 |
|
349 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
350 |
msgid "example: title1,title2,title3"
|
351 |
msgstr "exemplo: título1,título2,título3"
|
352 |
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
354 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
360 |
msgid "Authors & Users Extended"
|
361 |
msgstr "Autores & Usuários Avançados"
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
364 |
msgid "Hide username field"
|
365 |
msgstr "Ocultar campo nome de usuário"
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
368 |
msgid "Hide name field"
|
369 |
msgstr "Ocultar campo nome"
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
372 |
msgid "Hide email field"
|
373 |
msgstr "Ocultar campo email"
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
376 |
#, fuzzy
|
377 |
msgid "Hide role field"
|
378 |
msgstr "Ocultar campo nome"
|
379 |
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
381 |
msgid "Hide website field"
|
382 |
msgstr "Ocultar campo website"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
385 |
msgid "Hide n. posts field"
|
386 |
msgstr "Ocultar campo n. do artigo"
|
387 |
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
389 |
msgid "WordPress hidden fields"
|
390 |
msgstr "Campos ocultos do WordPress"
|
391 |
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
393 |
msgid "Show password"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
397 |
msgid "Show confirmation password"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
401 |
msgid "Show password strength meter"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
405 |
msgid "Show first name"
|
406 |
msgstr "Mostrar primeiro nome"
|
407 |
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
409 |
msgid "Show last name"
|
410 |
msgstr "Mostrar último nome"
|
411 |
|
412 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
413 |
msgid "Show nickname"
|
414 |
msgstr "Mostrar apelido"
|
415 |
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
417 |
#, fuzzy
|
418 |
msgid "Show website"
|
419 |
msgstr "Website"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
422 |
msgid "Show AIM"
|
423 |
msgstr "Mostrar AIM"
|
424 |
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
426 |
msgid "Show Yahoo IM"
|
427 |
msgstr "Mostrar Yahoo IM"
|
428 |
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
430 |
msgid "Show Jabber / Google Talk"
|
431 |
msgstr "Mostrar Jabber / Google Talk"
|
432 |
|
433 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
434 |
msgid "Show Biographical Info"
|
435 |
msgstr ""
|
436 |
|
@@ -462,8 +502,8 @@ msgid "Nickname"
|
|
462 |
msgstr "Nome"
|
463 |
|
464 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
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 "Website"
|
468 |
msgstr "Website"
|
469 |
|
@@ -485,17 +525,17 @@ msgstr "Mostrar Jabber / Google Talk"
|
|
485 |
msgid "Biographical Info"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
489 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
490 |
msgid "Fields"
|
491 |
msgstr "Campos"
|
492 |
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
494 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
495 |
msgid "A&U Extended"
|
496 |
msgstr "A&U Avançado"
|
497 |
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
499 |
#, fuzzy
|
500 |
msgid "Users Extended"
|
501 |
msgstr "Lista de Autores & Usuários avançados"
|
@@ -514,44 +554,65 @@ msgstr ""
|
|
514 |
msgid "File '%s' is not an image."
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
#, php-format
|
519 |
msgid "New user registration on your site %s:"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
524 |
#, fuzzy, php-format
|
525 |
msgid "Username: %s"
|
526 |
msgstr "Nome de usuário"
|
527 |
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
529 |
#, fuzzy, php-format
|
530 |
msgid "E-mail: %s"
|
531 |
msgstr "e-mail: %s"
|
532 |
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
534 |
#, php-format
|
535 |
msgid "[%s] New User Registration"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
539 |
#, php-format
|
540 |
msgid "Password: %s"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
544 |
#, php-format
|
545 |
msgid "[%s] Your username and password"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
549 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
550 |
#, php-format
|
551 |
msgid "%s: %s"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
555 |
#, php-format
|
556 |
msgid ""
|
557 |
"To activate your user, please click the following link:\n"
|
@@ -562,76 +623,57 @@ msgid ""
|
|
562 |
"\n"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
567 |
msgid "Your account is now active!"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
571 |
#, php-format
|
572 |
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>."
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
576 |
msgid "An error occurred during the activation"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
580 |
#, fuzzy
|
581 |
msgid "Username:"
|
582 |
msgstr "Nome de usuário"
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
585 |
msgid "Password:"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
589 |
msgid "Invalid activation key."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
593 |
msgid "The site is already active."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
597 |
msgid "Could not create user"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
601 |
msgid "That username is already activated."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
605 |
msgid "That username is currently reserved but may be available in a couple of days."
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
609 |
msgid "username and email used"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
613 |
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."
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
617 |
-
#, fuzzy
|
618 |
-
msgid "Delete the file"
|
619 |
-
msgstr "Excluir campo"
|
620 |
-
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
622 |
-
#, fuzzy
|
623 |
-
msgid "Update the file"
|
624 |
-
msgstr "Atualizar campo"
|
625 |
-
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
627 |
-
#, fuzzy
|
628 |
-
msgid "Update the picture"
|
629 |
-
msgstr "Atualizar campo"
|
630 |
-
|
631 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
632 |
-
msgid "Picture URL:"
|
633 |
-
msgstr ""
|
634 |
-
|
635 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
636 |
msgid "Add field"
|
637 |
msgstr "Adicionar campo"
|
@@ -653,17 +695,17 @@ msgid "Change order"
|
|
653 |
msgstr "Mudar ordem"
|
654 |
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
657 |
msgid "Min length"
|
658 |
msgstr "Comprimento mín"
|
659 |
|
660 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
661 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
662 |
msgid "Exact length"
|
663 |
msgstr "Comprimento exato"
|
664 |
|
665 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
666 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
667 |
msgid "Max length"
|
668 |
msgstr "Comprimento máx"
|
669 |
|
@@ -693,17 +735,17 @@ msgid "deleted correctly"
|
|
693 |
msgstr "excluído corretamente"
|
694 |
|
695 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
697 |
msgid "Min size"
|
698 |
msgstr "Tamanho mínimo"
|
699 |
|
700 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
702 |
msgid "Exact size"
|
703 |
msgstr "Tamanho exato"
|
704 |
|
705 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
707 |
msgid "Max size"
|
708 |
msgstr "Tamanho máximo"
|
709 |
|
@@ -778,279 +820,279 @@ msgstr "atualizado corretamente"
|
|
778 |
msgid "Name inserted is just in the database, change to another one"
|
779 |
msgstr "Nome inserido somente no banco de dados, mude para um outro"
|
780 |
|
781 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
782 |
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."
|
783 |
msgstr "Para adicionar um novo campo você tem que escolher um nome, tipo e etiqueta; Valores e descrição são opcionais. Regras são aplicadas durante o registro do usuário."
|
784 |
|
785 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
786 |
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'"
|
787 |
msgstr "Com <strong>radio</strong> e <strong>checkbox</strong>: <em>Valor</em> e <em>igual A</em> pode ser somente 'Yes' ou 'No' que corresponde a 'selecionado' ou 'não selecionado'"
|
788 |
|
789 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
790 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
791 |
msgstr "Com <strong>drop-down</strong>: você tem que adicionar todas as opções dentro da etiqueta, por exemplo: etiqueta/item1,item2,item3"
|
792 |
|
793 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
794 |
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"
|
795 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
796 |
|
797 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
798 |
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)"
|
799 |
msgstr "Com <strong>picture-url</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; <em>igual A</em> corresponde ao tamanho máximo da largura (a altura será proporcional)"
|
800 |
|
801 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
802 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
803 |
msgstr "Com <strong>registration-date</strong>: <em>igual A</em> corresponde ao formato de data e hora"
|
804 |
|
805 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
806 |
#, fuzzy
|
807 |
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"
|
808 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
#, fuzzy
|
812 |
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"
|
813 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
817 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
819 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
821 |
msgid "Name"
|
822 |
msgstr "Nome"
|
823 |
|
824 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
825 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
826 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
msgid "Value"
|
829 |
msgstr "Valor"
|
830 |
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
833 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
msgid "Type"
|
836 |
msgstr "Tipo"
|
837 |
|
838 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
839 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
840 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
842 |
msgid "Label"
|
843 |
msgstr "Etiqueta"
|
844 |
|
|
|
845 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
849 |
msgid "Description"
|
850 |
msgstr "Descrição"
|
851 |
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
msgid "Rules"
|
855 |
msgstr "Regras"
|
856 |
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
msgid "Actions"
|
860 |
msgstr "Ações"
|
861 |
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
863 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
864 |
#, fuzzy
|
865 |
msgid "Fieldset"
|
866 |
msgstr "Campos"
|
867 |
|
868 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
870 |
msgid "Can be empty"
|
871 |
msgstr "Pode estar vazio"
|
872 |
|
873 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
874 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
875 |
msgid "Check for E-mail syntax"
|
876 |
msgstr "Controla a sintaxe do E-mail"
|
877 |
|
878 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
880 |
msgid "Can be modified"
|
881 |
msgstr "Pode ser modificado"
|
882 |
|
883 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
885 |
msgid "Can be modified only if empty"
|
886 |
msgstr "Pode ser modificado somente se estiver vazio"
|
887 |
|
888 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
890 |
msgid "Can be modified only by admin"
|
891 |
msgstr "Pode ser modificado somente pelo administrador"
|
892 |
|
893 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
895 |
#, fuzzy
|
896 |
msgid "Can be modified only by admin or if empty"
|
897 |
msgstr "Pode ser modificado somente se estiver vazio"
|
898 |
|
899 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
901 |
msgid "Cannot be modified"
|
902 |
msgstr "Não pode ser modificado"
|
903 |
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
906 |
msgid "Should be equal TO"
|
907 |
msgstr "Dever ser igual A"
|
908 |
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
910 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
911 |
msgid "Case sensitive"
|
912 |
msgstr "Caso sensitivo"
|
913 |
|
914 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
915 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
916 |
msgid "Regular Expression"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
920 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
921 |
msgid "Show the field in the registration"
|
922 |
msgstr "Mostrar campo no formulário de registro"
|
923 |
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
926 |
msgid "Show the field in User's profile"
|
927 |
msgstr "Mostrar campo em Perfil do usuário"
|
928 |
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
931 |
msgid "Show the field in A&U Extended menu"
|
932 |
msgstr "Mostra campo em A&U Menu avançado"
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
#, fuzzy
|
937 |
msgid "Show the field in the search engine"
|
938 |
msgstr "Mostrar campo no formulário de registro"
|
939 |
|
940 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
942 |
#, fuzzy
|
943 |
msgid "Show the field in the blog"
|
944 |
msgstr "Mostrar campo no formulário de registro"
|
945 |
|
946 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
948 |
#, fuzzy
|
949 |
msgid "Show the field if the role is at least:"
|
950 |
msgstr "Mostrar campo no formulário de registro"
|
951 |
|
952 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
953 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
954 |
msgid "Anonymous"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
958 |
msgid "Clear"
|
959 |
msgstr "Limpar"
|
960 |
|
961 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
962 |
#, fuzzy
|
963 |
msgid "Invert selection"
|
964 |
msgstr "selecione uma ação"
|
965 |
|
966 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
967 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
968 |
msgstr "Tem certeza que quer excluir o(s) campo(s) e todos os dados inserido pelos usuários?"
|
969 |
|
970 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
971 |
msgid "WordPress Fields"
|
972 |
msgstr "Campos do Wordpress"
|
973 |
|
974 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
975 |
msgid "None!"
|
976 |
msgstr "Nenhum!"
|
977 |
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
979 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
980 |
msgid "Order"
|
981 |
msgstr "Ordenar"
|
982 |
|
983 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
984 |
msgid "Reset"
|
985 |
msgstr "Resetar"
|
986 |
|
987 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
988 |
#, fuzzy
|
989 |
msgid "select"
|
990 |
msgstr "Excluir"
|
991 |
|
992 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
993 |
#, fuzzy, php-format
|
994 |
msgid "Users Matching \"%s\""
|
995 |
msgstr "Tabela de Campos Adicionais apagada"
|
996 |
|
997 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
998 |
#, fuzzy
|
999 |
msgid "Users Extended List"
|
1000 |
msgstr "Lista de Autores & Usuários avançados"
|
1001 |
|
1002 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1003 |
msgid "Authors & Users Extended List"
|
1004 |
msgstr "Lista de Autores & Usuários avançados"
|
1005 |
|
1006 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1007 |
#, php-format
|
1008 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1012 |
msgid "Search Users"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1016 |
msgid "« Back to All Users"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1020 |
#, fuzzy
|
1021 |
msgid "Users per page"
|
1022 |
msgstr "Tabela de Dados de Usuários"
|
1023 |
|
1024 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1025 |
msgid "Apply"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1029 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1030 |
msgid "Username"
|
1031 |
msgstr "Nome de usuário"
|
1032 |
|
1033 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1034 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1035 |
msgid "E-mail"
|
1036 |
msgstr "E-mail"
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1039 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1040 |
#, fuzzy
|
1041 |
msgid "Role"
|
1042 |
msgstr "Regras"
|
1043 |
|
1044 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1045 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1046 |
msgid "Posts"
|
1047 |
msgstr "Artigos"
|
1048 |
|
1049 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1050 |
msgid "View posts by this author"
|
1051 |
msgstr "Ver artigos desse autor"
|
1052 |
|
1053 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1054 |
#, php-format
|
1055 |
msgid "e-mail: %s"
|
1056 |
msgstr "e-mail: %s"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-09-21 00:23+0300\n"
|
6 |
+
"PO-Revision-Date: 2010-09-21 00:23+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:442
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
27 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
|
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "ERRO"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "Não há uma sintaxe de e-mail correta"
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "Não pode estar vazio"
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:441
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "não está correto"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
55 |
msgid "YES"
|
56 |
msgstr "SIM"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
59 |
msgid "NO"
|
60 |
msgstr "NÃO"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
63 |
msgid "should be"
|
64 |
msgstr "deve ser"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
67 |
msgid "should be an image."
|
68 |
msgstr "deve ser uma imagem"
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "não pode ter tamanho menor que"
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "não pode ter comprimento menor que"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "não pode ter tamanho diferente de"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "não pode ter comprimento diferente de"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "não pode ter tamanho maior que"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "não pode ter comprimento maior que"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:824
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Por favor, insira uma imagem com uma das seguintes extensões"
|
104 |
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:369
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Por favor, insira uma imagem com uma das seguintes extensões"
|
110 |
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:910
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:911
|
116 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \\\" ? $ % ^ & )."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:948
|
120 |
+
#, fuzzy
|
121 |
+
msgid "Change image"
|
122 |
+
msgstr "Mudar ordem"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:951
|
125 |
+
msgid "Insert the code:"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
164 |
msgid "Options deleted"
|
165 |
msgstr "Opções excluídas"
|
166 |
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:345
|
168 |
msgid "Options changed"
|
169 |
msgstr "Opções alteradas"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:472
|
172 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
176 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
177 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:726
|
178 |
msgid "Options"
|
179 |
msgstr "Opções"
|
180 |
|
181 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
182 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
183 |
msgid "Add a new Field"
|
184 |
msgstr "Adicionar um novo campo"
|
185 |
|
186 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:796
|
188 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
189 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:249
|
190 |
msgid "Extra Fields"
|
191 |
msgstr "Campos Adicionais"
|
192 |
|
193 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
194 |
msgid "Support the Cimy Project"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
198 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:508
|
202 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1221
|
203 |
msgid "SUCCESSFUL"
|
204 |
msgstr "SUCESSO"
|
205 |
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
208 |
msgid "Save Changes"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:522
|
212 |
msgid "General"
|
213 |
msgstr "Geral"
|
214 |
|
215 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
216 |
msgid "installed is"
|
217 |
msgstr "instalado"
|
218 |
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
220 |
msgid "OPTIONS DELETED!"
|
221 |
msgstr "OPÇÕES EXCLUÍDAS!"
|
222 |
|
223 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
224 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:542
|
225 |
msgid "Fix the problem"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
229 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
230 |
msgstr "VERSÃO NÃO CORRESPONDENTE! Acontece quando você não desativa e re-ativa o plug-in depois de atualizá-lo! Isso pode causar problemas..."
|
231 |
|
232 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
233 |
msgid "Picture/Avatar upload"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:552
|
237 |
msgid "is created and writable"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
241 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
245 |
#, fuzzy
|
246 |
msgid "Show all fields in the welcome email"
|
247 |
msgstr "Mostrar campo no formulário de registro"
|
248 |
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
250 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
|
254 |
msgid "Enable email confirmation"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:577
|
258 |
msgid "user that registers should confirm its email address via a link click"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
|
262 |
+
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
266 |
+
msgid "Redirect to the source"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:590
|
270 |
+
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
274 |
+
msgid "No captcha"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
|
278 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:610
|
282 |
msgid "Public KEY"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
286 |
msgid "Private KEY"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:622
|
290 |
+
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
294 |
+
msgid "This captcha is probably weaker, but is easier for users"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
298 |
+
#, php-format
|
299 |
+
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:636
|
303 |
msgid "Change login/registration page logo"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:641
|
307 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
308 |
#, fuzzy
|
309 |
msgid "Delete the picture"
|
310 |
msgstr "Excluir campo"
|
311 |
|
312 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
313 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
|
317 |
msgid "Database"
|
318 |
msgstr "Banco de dados"
|
319 |
|
320 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:677
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
324 |
msgid "select action"
|
325 |
msgstr "selecione uma ação"
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:660
|
328 |
msgid "Default values"
|
329 |
msgstr "Valores padrão"
|
330 |
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:698
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
|
335 |
msgid "Delete"
|
336 |
msgstr "Excluir"
|
337 |
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:702
|
341 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
342 |
msgid "NOT PRESENT"
|
343 |
msgstr "NÃO PRESENTE"
|
344 |
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
346 |
#, fuzzy
|
347 |
msgid "WordPress Fields table"
|
348 |
msgstr "Tabela de Campos Adicionais"
|
349 |
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:678
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
|
353 |
msgid "Empty"
|
354 |
msgstr "Vazio"
|
355 |
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
357 |
msgid "Extra Fields table"
|
358 |
msgstr "Tabela de Campos Adicionais"
|
359 |
|
360 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
361 |
msgid "Users Data table"
|
362 |
msgstr "Tabela de Dados de Usuários"
|
363 |
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
365 |
msgid "all data inserted by users in all and only extra fields"
|
366 |
msgstr "todos os dados inseridos por usuários em todos e somente campos adicionais"
|
367 |
|
368 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
369 |
msgid "Force tables creation"
|
370 |
msgstr "Forçar criação de tabelas"
|
371 |
|
372 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
373 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
377 |
msgid "User Profile"
|
378 |
msgstr "Perfil do usuário"
|
379 |
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
381 |
#, fuzzy
|
382 |
msgid "Extra Fields section title"
|
383 |
msgstr "Tabela de Campos Adicionais"
|
384 |
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
386 |
msgid "Fieldset's titles, separates with comma"
|
387 |
msgstr "Títulos de reagrupamento, separados por vírgula"
|
388 |
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
390 |
msgid "example: title1,title2,title3"
|
391 |
msgstr "exemplo: título1,título2,título3"
|
392 |
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
394 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:747
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
400 |
msgid "Authors & Users Extended"
|
401 |
msgstr "Autores & Usuários Avançados"
|
402 |
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
|
404 |
msgid "Hide username field"
|
405 |
msgstr "Ocultar campo nome de usuário"
|
406 |
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
408 |
msgid "Hide name field"
|
409 |
msgstr "Ocultar campo nome"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:762
|
412 |
msgid "Hide email field"
|
413 |
msgstr "Ocultar campo email"
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
416 |
#, fuzzy
|
417 |
msgid "Hide role field"
|
418 |
msgstr "Ocultar campo nome"
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
421 |
msgid "Hide website field"
|
422 |
msgstr "Ocultar campo website"
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:774
|
425 |
msgid "Hide n. posts field"
|
426 |
msgstr "Ocultar campo n. do artigo"
|
427 |
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
|
429 |
msgid "WordPress hidden fields"
|
430 |
msgstr "Campos ocultos do WordPress"
|
431 |
|
432 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
433 |
msgid "Show password"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
437 |
msgid "Show confirmation password"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:790
|
441 |
msgid "Show password strength meter"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:794
|
445 |
msgid "Show first name"
|
446 |
msgstr "Mostrar primeiro nome"
|
447 |
|
448 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:798
|
449 |
msgid "Show last name"
|
450 |
msgstr "Mostrar último nome"
|
451 |
|
452 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:802
|
453 |
msgid "Show nickname"
|
454 |
msgstr "Mostrar apelido"
|
455 |
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:806
|
457 |
#, fuzzy
|
458 |
msgid "Show website"
|
459 |
msgstr "Website"
|
460 |
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:810
|
462 |
msgid "Show AIM"
|
463 |
msgstr "Mostrar AIM"
|
464 |
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:814
|
466 |
msgid "Show Yahoo IM"
|
467 |
msgstr "Mostrar Yahoo IM"
|
468 |
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:818
|
470 |
msgid "Show Jabber / Google Talk"
|
471 |
msgstr "Mostrar Jabber / Google Talk"
|
472 |
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:822
|
474 |
msgid "Show Biographical Info"
|
475 |
msgstr ""
|
476 |
|
502 |
msgstr "Nome"
|
503 |
|
504 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
507 |
msgid "Website"
|
508 |
msgstr "Website"
|
509 |
|
525 |
msgid "Biographical Info"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:727
|
529 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
530 |
msgid "Fields"
|
531 |
msgstr "Campos"
|
532 |
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
535 |
msgid "A&U Extended"
|
536 |
msgstr "A&U Avançado"
|
537 |
|
538 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:732
|
539 |
#, fuzzy
|
540 |
msgid "Users Extended"
|
541 |
msgstr "Lista de Autores & Usuários avançados"
|
554 |
msgid "File '%s' is not an image."
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
558 |
+
#, fuzzy
|
559 |
+
msgid "Delete the file"
|
560 |
+
msgstr "Excluir campo"
|
561 |
+
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
563 |
+
#, fuzzy
|
564 |
+
msgid "Update the file"
|
565 |
+
msgstr "Atualizar campo"
|
566 |
+
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
568 |
+
#, fuzzy
|
569 |
+
msgid "Update the picture"
|
570 |
+
msgstr "Atualizar campo"
|
571 |
+
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
573 |
+
msgid "Picture URL:"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:38
|
577 |
#, php-format
|
578 |
msgid "New user registration on your site %s:"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:39
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:50
|
583 |
#, fuzzy, php-format
|
584 |
msgid "Username: %s"
|
585 |
msgstr "Nome de usuário"
|
586 |
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:40
|
588 |
#, fuzzy, php-format
|
589 |
msgid "E-mail: %s"
|
590 |
msgstr "e-mail: %s"
|
591 |
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
593 |
#, php-format
|
594 |
msgid "[%s] New User Registration"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:51
|
598 |
#, php-format
|
599 |
msgid "Password: %s"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
603 |
#, php-format
|
604 |
msgid "[%s] Your username and password"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:91
|
608 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:97
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:109
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:115
|
611 |
#, php-format
|
612 |
msgid "%s: %s"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:189
|
616 |
#, php-format
|
617 |
msgid ""
|
618 |
"To activate your user, please click the following link:\n"
|
623 |
"\n"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:204
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
628 |
msgid "Your account is now active!"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
632 |
#, php-format
|
633 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:207
|
637 |
msgid "An error occurred during the activation"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
641 |
#, fuzzy
|
642 |
msgid "Username:"
|
643 |
msgstr "Nome de usuário"
|
644 |
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
646 |
msgid "Password:"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:226
|
650 |
msgid "Invalid activation key."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:229
|
654 |
msgid "The site is already active."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:248
|
658 |
msgid "Could not create user"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
662 |
msgid "That username is already activated."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:279
|
666 |
msgid "That username is currently reserved but may be available in a couple of days."
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:282
|
670 |
msgid "username and email used"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
674 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
675 |
msgstr ""
|
676 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
677 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
678 |
msgid "Add field"
|
679 |
msgstr "Adicionar campo"
|
695 |
msgstr "Mudar ordem"
|
696 |
|
697 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
|
699 |
msgid "Min length"
|
700 |
msgstr "Comprimento mín"
|
701 |
|
702 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1041
|
704 |
msgid "Exact length"
|
705 |
msgstr "Comprimento exato"
|
706 |
|
707 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
708 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1042
|
709 |
msgid "Max length"
|
710 |
msgstr "Comprimento máx"
|
711 |
|
735 |
msgstr "excluído corretamente"
|
736 |
|
737 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
|
739 |
msgid "Min size"
|
740 |
msgstr "Tamanho mínimo"
|
741 |
|
742 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1033
|
744 |
msgid "Exact size"
|
745 |
msgstr "Tamanho exato"
|
746 |
|
747 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1034
|
749 |
msgid "Max size"
|
750 |
msgstr "Tamanho máximo"
|
751 |
|
820 |
msgid "Name inserted is just in the database, change to another one"
|
821 |
msgstr "Nome inserido somente no banco de dados, mude para um outro"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
824 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
825 |
msgstr "Para adicionar um novo campo você tem que escolher um nome, tipo e etiqueta; Valores e descrição são opcionais. Regras são aplicadas durante o registro do usuário."
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
828 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
829 |
msgstr "Com <strong>radio</strong> e <strong>checkbox</strong>: <em>Valor</em> e <em>igual A</em> pode ser somente 'Yes' ou 'No' que corresponde a 'selecionado' ou 'não selecionado'"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
832 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
833 |
msgstr "Com <strong>drop-down</strong>: você tem que adicionar todas as opções dentro da etiqueta, por exemplo: etiqueta/item1,item2,item3"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
836 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
837 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
|
840 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
841 |
msgstr "Com <strong>picture-url</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; <em>igual A</em> corresponde ao tamanho máximo da largura (a altura será proporcional)"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
844 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
845 |
msgstr "Com <strong>registration-date</strong>: <em>igual A</em> corresponde ao formato de data e hora"
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
|
848 |
#, fuzzy
|
849 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
850 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
851 |
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
853 |
#, fuzzy
|
854 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
855 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1475
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
863 |
msgid "Name"
|
864 |
msgstr "Nome"
|
865 |
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:643
|
868 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
870 |
msgid "Value"
|
871 |
msgstr "Valor"
|
872 |
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
875 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1071
|
877 |
msgid "Type"
|
878 |
msgstr "Tipo"
|
879 |
|
880 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
881 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:665
|
882 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1093
|
884 |
msgid "Label"
|
885 |
msgstr "Etiqueta"
|
886 |
|
887 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
888 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1096
|
|
|
891 |
msgid "Description"
|
892 |
msgstr "Descrição"
|
893 |
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
896 |
msgid "Rules"
|
897 |
msgstr "Regras"
|
898 |
|
899 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:636
|
900 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:826
|
901 |
msgid "Actions"
|
902 |
msgstr "Ações"
|
903 |
|
904 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
905 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1087
|
906 |
#, fuzzy
|
907 |
msgid "Fieldset"
|
908 |
msgstr "Campos"
|
909 |
|
910 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1110
|
912 |
msgid "Can be empty"
|
913 |
msgstr "Pode estar vazio"
|
914 |
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
917 |
msgid "Check for E-mail syntax"
|
918 |
msgstr "Controla a sintaxe do E-mail"
|
919 |
|
920 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
922 |
msgid "Can be modified"
|
923 |
msgstr "Pode ser modificado"
|
924 |
|
925 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:683
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
927 |
msgid "Can be modified only if empty"
|
928 |
msgstr "Pode ser modificado somente se estiver vazio"
|
929 |
|
930 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1116
|
932 |
msgid "Can be modified only by admin"
|
933 |
msgstr "Pode ser modificado somente pelo administrador"
|
934 |
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
937 |
#, fuzzy
|
938 |
msgid "Can be modified only by admin or if empty"
|
939 |
msgstr "Pode ser modificado somente se estiver vazio"
|
940 |
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
943 |
msgid "Cannot be modified"
|
944 |
msgstr "Não pode ser modificado"
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1123
|
948 |
msgid "Should be equal TO"
|
949 |
msgstr "Dever ser igual A"
|
950 |
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:696
|
952 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1125
|
953 |
msgid "Case sensitive"
|
954 |
msgstr "Caso sensitivo"
|
955 |
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:699
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
958 |
msgid "Regular Expression"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
963 |
msgid "Show the field in the registration"
|
964 |
msgstr "Mostrar campo no formulário de registro"
|
965 |
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
968 |
msgid "Show the field in User's profile"
|
969 |
msgstr "Mostrar campo em Perfil do usuário"
|
970 |
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
973 |
msgid "Show the field in A&U Extended menu"
|
974 |
msgstr "Mostra campo em A&U Menu avançado"
|
975 |
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1146
|
978 |
#, fuzzy
|
979 |
msgid "Show the field in the search engine"
|
980 |
msgstr "Mostrar campo no formulário de registro"
|
981 |
|
982 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
984 |
#, fuzzy
|
985 |
msgid "Show the field in the blog"
|
986 |
msgstr "Mostrar campo no formulário de registro"
|
987 |
|
988 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1152
|
990 |
#, fuzzy
|
991 |
msgid "Show the field if the role is at least:"
|
992 |
msgstr "Mostrar campo no formulário de registro"
|
993 |
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
995 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1154
|
996 |
msgid "Anonymous"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
|
1000 |
msgid "Clear"
|
1001 |
msgstr "Limpar"
|
1002 |
|
1003 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
1004 |
#, fuzzy
|
1005 |
msgid "Invert selection"
|
1006 |
msgstr "selecione uma ação"
|
1007 |
|
1008 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:788
|
1009 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1010 |
msgstr "Tem certeza que quer excluir o(s) campo(s) e todos os dados inserido pelos usuários?"
|
1011 |
|
1012 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:794
|
1013 |
msgid "WordPress Fields"
|
1014 |
msgstr "Campos do Wordpress"
|
1015 |
|
1016 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1017 |
msgid "None!"
|
1018 |
msgstr "Nenhum!"
|
1019 |
|
1020 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
1021 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1053
|
1022 |
msgid "Order"
|
1023 |
msgstr "Ordenar"
|
1024 |
|
1025 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1165
|
1026 |
msgid "Reset"
|
1027 |
msgstr "Resetar"
|
1028 |
|
1029 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1250
|
1030 |
#, fuzzy
|
1031 |
msgid "select"
|
1032 |
msgstr "Excluir"
|
1033 |
|
1034 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1353
|
1035 |
#, fuzzy, php-format
|
1036 |
msgid "Users Matching \"%s\""
|
1037 |
msgstr "Tabela de Campos Adicionais apagada"
|
1038 |
|
1039 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
1040 |
#, fuzzy
|
1041 |
msgid "Users Extended List"
|
1042 |
msgstr "Lista de Autores & Usuários avançados"
|
1043 |
|
1044 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1359
|
1045 |
msgid "Authors & Users Extended List"
|
1046 |
msgstr "Lista de Autores & Usuários avançados"
|
1047 |
|
1048 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1049 |
#, php-format
|
1050 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
1054 |
msgid "Search Users"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1436
|
1058 |
msgid "« Back to All Users"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
1062 |
#, fuzzy
|
1063 |
msgid "Users per page"
|
1064 |
msgstr "Tabela de Dados de Usuários"
|
1065 |
|
1066 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
1067 |
msgid "Apply"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1470
|
1071 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
1072 |
msgid "Username"
|
1073 |
msgstr "Nome de usuário"
|
1074 |
|
1075 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1480
|
1076 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
1077 |
msgid "E-mail"
|
1078 |
msgstr "E-mail"
|
1079 |
|
1080 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1485
|
1081 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
1082 |
#, fuzzy
|
1083 |
msgid "Role"
|
1084 |
msgstr "Regras"
|
1085 |
|
1086 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1495
|
1087 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
1088 |
msgid "Posts"
|
1089 |
msgstr "Artigos"
|
1090 |
|
1091 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1605
|
1092 |
msgid "View posts by this author"
|
1093 |
msgstr "Ver artigos desse autor"
|
1094 |
|
1095 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
|
1096 |
#, php-format
|
1097 |
msgid "e-mail: %s"
|
1098 |
msgstr "e-mail: %s"
|
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: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: mikolka <mikolka.info@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,104 +16,115 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
|
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
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/
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:567
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:435
|
33 |
msgid "ERROR"
|
34 |
msgstr "ОШИБКА"
|
35 |
|
36 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
37 |
msgid "does not match."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
41 |
msgid "hasn’t a correct email syntax."
|
42 |
msgstr "не верно введен email."
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
45 |
msgid "couldn’t be empty."
|
46 |
msgstr "не может быть пустым."
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
msgid "isn’t correct"
|
51 |
msgstr "не верно"
|
52 |
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
54 |
msgid "YES"
|
55 |
msgstr "ДА"
|
56 |
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
msgid "NO"
|
59 |
msgstr "НЕТ"
|
60 |
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
62 |
msgid "should be"
|
63 |
msgstr "должно быть"
|
64 |
|
65 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
66 |
msgid "should be an image."
|
67 |
msgstr "должно быть изображение."
|
68 |
|
69 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
70 |
msgid "couldn’t have size less than"
|
71 |
msgstr "не может иметь размер менее чем"
|
72 |
|
73 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
74 |
msgid "couldn’t have length less than"
|
75 |
msgstr "не может иметь длину менее чем"
|
76 |
|
77 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
78 |
msgid "couldn’t have size different than"
|
79 |
msgstr "не может иметь размер отличный от"
|
80 |
|
81 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
82 |
msgid "couldn’t have length different than"
|
83 |
msgstr "не может иметь длину отличную от"
|
84 |
|
85 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
86 |
msgid "couldn’t have size more than"
|
87 |
msgstr "имеет размер больше чем"
|
88 |
|
89 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
90 |
msgid "couldn’t have length more than"
|
91 |
msgstr "имеет длину больше чем"
|
92 |
|
93 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
94 |
msgid "Typed code is not correct."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
98 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
99 |
#, fuzzy
|
100 |
msgid "Please upload a file with one of the following extensions"
|
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_options.php:
|
105 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
106 |
msgid "Please upload an image with one of the following extensions"
|
107 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
msgid "Strength indicator"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
114 |
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 ! \\\" ? $ % ^ & )."
|
115 |
msgstr ""
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
118 |
#, fuzzy
|
119 |
msgid "no fieldset"
|
@@ -151,282 +162,311 @@ msgstr "Установлены настройки по-умолчанию"
|
|
151 |
msgid "Options deleted"
|
152 |
msgstr "Настройки удалены"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
155 |
msgid "Options changed"
|
156 |
msgstr "Настройки изменены"
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
159 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
164 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
165 |
msgid "Options"
|
166 |
msgstr "Настройки"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
169 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
170 |
msgid "Add a new Field"
|
171 |
msgstr "Добавить новое поле"
|
172 |
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
175 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
176 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
177 |
msgid "Extra Fields"
|
178 |
msgstr "Extra Fields"
|
179 |
|
180 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
181 |
msgid "Support the Cimy Project"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
185 |
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!"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
190 |
msgid "SUCCESSFUL"
|
191 |
msgstr "УСПЕШНО"
|
192 |
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
195 |
msgid "Save Changes"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
199 |
msgid "General"
|
200 |
msgstr "Главное"
|
201 |
|
202 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
203 |
msgid "installed is"
|
204 |
msgstr "установлено"
|
205 |
|
206 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
207 |
msgid "OPTIONS DELETED!"
|
208 |
msgstr "НАСТРОЙКИ УДАЛЕНЫ!"
|
209 |
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
212 |
msgid "Fix the problem"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
216 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
217 |
msgstr "ВЕРСИИ НЕ СОВПАДАЮТ! Это из-за того, что Вы не деактивировали, а затем активировали плагин после обновления! Могут возникнуть проблемы..."
|
218 |
|
219 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
220 |
msgid "Picture/Avatar upload"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
224 |
msgid "is created and writable"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
228 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
232 |
#, fuzzy
|
233 |
msgid "Show all fields in the welcome email"
|
234 |
msgstr "Показывать поле при регистрации"
|
235 |
|
236 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
237 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
241 |
msgid "Enable email confirmation"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
245 |
msgid "user that registers should confirm its email address via a link click"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
253 |
msgid "Public KEY"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
257 |
msgid "Private KEY"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
msgid "Change login/registration page logo"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
265 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
266 |
#, fuzzy
|
267 |
msgid "Delete the picture"
|
268 |
msgstr "Удалить поле"
|
269 |
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
271 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
275 |
msgid "Database"
|
276 |
msgstr "База данных"
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
279 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
280 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
281 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
282 |
msgid "select action"
|
283 |
msgstr "выберите действие"
|
284 |
|
285 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
286 |
msgid "Default values"
|
287 |
msgstr "Значения по-умолчанию"
|
288 |
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
291 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
292 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
293 |
msgid "Delete"
|
294 |
msgstr "Удалить"
|
295 |
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
299 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
300 |
msgid "NOT PRESENT"
|
301 |
msgstr "НЕ СУЩЕСТВУЕТ"
|
302 |
|
303 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
304 |
msgid "WordPress Fields table"
|
305 |
msgstr "Таблица WordPress Fields"
|
306 |
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
310 |
msgid "Empty"
|
311 |
msgstr "Очистить"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
314 |
msgid "Extra Fields table"
|
315 |
msgstr "Таблица Extra Fields"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
318 |
msgid "Users Data table"
|
319 |
msgstr "Таблица данных пользователей"
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
322 |
msgid "all data inserted by users in all and only extra fields"
|
323 |
msgstr "все данные, вставленные пользователями во все и только в дополнительные поля"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
326 |
msgid "Force tables creation"
|
327 |
msgstr "Force tables creation"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
330 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
334 |
msgid "User Profile"
|
335 |
msgstr "Профиль пользователя"
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
338 |
#, fuzzy
|
339 |
msgid "Extra Fields section title"
|
340 |
msgstr "Таблица Extra Fields"
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
343 |
msgid "Fieldset's titles, separates with comma"
|
344 |
msgstr "Названия полей через запятую"
|
345 |
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
347 |
msgid "example: title1,title2,title3"
|
348 |
msgstr "пример: заголовок1,заголовок2, заголовок3"
|
349 |
|
350 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
351 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
357 |
msgid "Authors & Users Extended"
|
358 |
msgstr "Авторы и Продвинутые пользователи"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
361 |
msgid "Hide username field"
|
362 |
msgstr "Скрыть поле с именем пользователя"
|
363 |
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
365 |
msgid "Hide name field"
|
366 |
msgstr "Скрыть поле с именем"
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
369 |
msgid "Hide email field"
|
370 |
msgstr "Скрыть поле с email"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
373 |
#, fuzzy
|
374 |
msgid "Hide role field"
|
375 |
msgstr "Скрыть поле с именем"
|
376 |
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
378 |
msgid "Hide website field"
|
379 |
msgstr "Скрыть поле с адресом сайта"
|
380 |
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
382 |
msgid "Hide n. posts field"
|
383 |
msgstr "Скрыть поле с № постов"
|
384 |
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
386 |
msgid "WordPress hidden fields"
|
387 |
msgstr "Скрытые поля WordPress"
|
388 |
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
390 |
msgid "Show password"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
394 |
msgid "Show confirmation password"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
398 |
msgid "Show password strength meter"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
402 |
msgid "Show first name"
|
403 |
msgstr "Показать имя"
|
404 |
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
406 |
msgid "Show last name"
|
407 |
msgstr "Показать фамилию"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
410 |
msgid "Show nickname"
|
411 |
msgstr "Показать ник"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
414 |
msgid "Show website"
|
415 |
msgstr "Показать адрес сайта"
|
416 |
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
418 |
msgid "Show AIM"
|
419 |
msgstr "Показать AIM"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
422 |
msgid "Show Yahoo IM"
|
423 |
msgstr "Показать Yahoo IM"
|
424 |
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
426 |
msgid "Show Jabber / Google Talk"
|
427 |
msgstr "Показать Jabber / Google Talk"
|
428 |
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
430 |
msgid "Show Biographical Info"
|
431 |
msgstr ""
|
432 |
|
@@ -458,8 +498,8 @@ msgid "Nickname"
|
|
458 |
msgstr "Имя"
|
459 |
|
460 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
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 "Website"
|
464 |
msgstr "Адрес сайта"
|
465 |
|
@@ -481,17 +521,17 @@ msgstr "Показать Jabber / Google Talk"
|
|
481 |
msgid "Biographical Info"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
485 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
486 |
msgid "Fields"
|
487 |
msgstr "Поля"
|
488 |
|
489 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
490 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
491 |
msgid "A&U Extended"
|
492 |
msgstr "A и продвинутые П "
|
493 |
|
494 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
495 |
#, fuzzy
|
496 |
msgid "Users Extended"
|
497 |
msgstr "Список Авторов и продвинутых пользователей"
|
@@ -510,44 +550,65 @@ msgstr ""
|
|
510 |
msgid "File '%s' is not an image."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
514 |
#, php-format
|
515 |
msgid "New user registration on your site %s:"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
519 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
520 |
#, fuzzy, php-format
|
521 |
msgid "Username: %s"
|
522 |
msgstr "Имя пользователя"
|
523 |
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
525 |
#, fuzzy, php-format
|
526 |
msgid "E-mail: %s"
|
527 |
msgstr "e-mail: %s"
|
528 |
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
530 |
#, php-format
|
531 |
msgid "[%s] New User Registration"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
535 |
#, php-format
|
536 |
msgid "Password: %s"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
540 |
#, php-format
|
541 |
msgid "[%s] Your username and password"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
545 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
546 |
#, php-format
|
547 |
msgid "%s: %s"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
551 |
#, php-format
|
552 |
msgid ""
|
553 |
"To activate your user, please click the following link:\n"
|
@@ -558,76 +619,57 @@ msgid ""
|
|
558 |
"\n"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
563 |
msgid "Your account is now active!"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
567 |
#, php-format
|
568 |
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>."
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
572 |
msgid "An error occurred during the activation"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
576 |
#, fuzzy
|
577 |
msgid "Username:"
|
578 |
msgstr "Имя пользователя"
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
581 |
msgid "Password:"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
585 |
msgid "Invalid activation key."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
589 |
msgid "The site is already active."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
593 |
msgid "Could not create user"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
597 |
msgid "That username is already activated."
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
601 |
msgid "That username is currently reserved but may be available in a couple of days."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
605 |
msgid "username and email used"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
609 |
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."
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
613 |
-
#, fuzzy
|
614 |
-
msgid "Delete the file"
|
615 |
-
msgstr "Удалить поле"
|
616 |
-
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
618 |
-
#, fuzzy
|
619 |
-
msgid "Update the file"
|
620 |
-
msgstr "Обновить поле"
|
621 |
-
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
623 |
-
#, fuzzy
|
624 |
-
msgid "Update the picture"
|
625 |
-
msgstr "Обновить поле"
|
626 |
-
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
628 |
-
msgid "Picture URL:"
|
629 |
-
msgstr ""
|
630 |
-
|
631 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
632 |
msgid "Add field"
|
633 |
msgstr "Добавить поле"
|
@@ -649,17 +691,17 @@ msgid "Change order"
|
|
649 |
msgstr "Изменить порядок"
|
650 |
|
651 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
652 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
653 |
msgid "Min length"
|
654 |
msgstr "Мин длина"
|
655 |
|
656 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
657 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
658 |
msgid "Exact length"
|
659 |
msgstr "Точная длина"
|
660 |
|
661 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
662 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
663 |
msgid "Max length"
|
664 |
msgstr "Макс длина"
|
665 |
|
@@ -689,17 +731,17 @@ msgid "deleted correctly"
|
|
689 |
msgstr "удалены правильно"
|
690 |
|
691 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
693 |
msgid "Min size"
|
694 |
msgstr "Мин размер"
|
695 |
|
696 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
698 |
msgid "Exact size"
|
699 |
msgstr "Точный размер"
|
700 |
|
701 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
703 |
msgid "Max size"
|
704 |
msgstr "Макс размер"
|
705 |
|
@@ -774,277 +816,277 @@ msgstr "обновлено корректно"
|
|
774 |
msgid "Name inserted is just in the database, change to another one"
|
775 |
msgstr "Вставляемое имя уже есть в БД, выберите другое"
|
776 |
|
777 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
778 |
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."
|
779 |
msgstr "Для добавления нового поля вам необходимо задать имя, тип и метку; значение и описание. Правила применяются в процессе регистрации пользователя."
|
780 |
|
781 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
782 |
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'"
|
783 |
msgstr "С <strong>переключателем(radio)</strong> и <strong>флажками(checkbox)</strong>: <em>Значение</em> и <em>равно ЧЕМУ</em> может быть либо 'Yes', либо 'No' - это означает 'выбрано' или 'не выбрано'"
|
784 |
|
785 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
786 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
787 |
msgstr "С <strong>выпадающим списком(drop-down)</strong>: вы можете добавить все опции в метку, например: метка/элемент1,элемент2,элемент3"
|
788 |
|
789 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
790 |
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"
|
791 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
792 |
|
793 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
794 |
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)"
|
795 |
msgstr "С <strong>picture-url</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; <em>равная ЧЕМУ</em> подразумевает max ширину для превью (высота будет установлена пропорционально)"
|
796 |
|
797 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
798 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
799 |
msgstr "С <strong>датой регистрации(registration-date)</strong>: <em>равна ЧЕМУ</em> подразумевает формат даты и времени"
|
800 |
|
801 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
802 |
#, fuzzy
|
803 |
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"
|
804 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
807 |
#, fuzzy
|
808 |
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"
|
809 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
813 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
817 |
msgid "Name"
|
818 |
msgstr "Имя"
|
819 |
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
821 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
msgid "Value"
|
825 |
msgstr "Значение"
|
826 |
|
827 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
829 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
msgid "Type"
|
832 |
msgstr "Тип"
|
833 |
|
834 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
835 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
837 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
838 |
msgid "Label"
|
839 |
msgstr "Метка"
|
840 |
|
|
|
841 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
843 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
844 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
845 |
msgid "Description"
|
846 |
msgstr "Описание"
|
847 |
|
848 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
849 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
850 |
msgid "Rules"
|
851 |
msgstr "Правила"
|
852 |
|
853 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
854 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
855 |
msgid "Actions"
|
856 |
msgstr "Действия"
|
857 |
|
858 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
859 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
860 |
#, fuzzy
|
861 |
msgid "Fieldset"
|
862 |
msgstr "Поля"
|
863 |
|
864 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
865 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
866 |
msgid "Can be empty"
|
867 |
msgstr "Может быть пустым"
|
868 |
|
869 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
870 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
871 |
msgid "Check for E-mail syntax"
|
872 |
msgstr "Проверка синтаксиса E-mail"
|
873 |
|
874 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
875 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
876 |
msgid "Can be modified"
|
877 |
msgstr "Может быть изменено"
|
878 |
|
879 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
880 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
881 |
msgid "Can be modified only if empty"
|
882 |
msgstr "Может быть изменено только если пустое"
|
883 |
|
884 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
885 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
886 |
msgid "Can be modified only by admin"
|
887 |
msgstr "Может быть изменено только админом"
|
888 |
|
889 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
890 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
891 |
msgid "Can be modified only by admin or if empty"
|
892 |
msgstr "Может быть изменено только админом или если пустое"
|
893 |
|
894 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
895 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
896 |
msgid "Cannot be modified"
|
897 |
msgstr "Не может быть изменено"
|
898 |
|
899 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
900 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
901 |
msgid "Should be equal TO"
|
902 |
msgstr "Долднадолжно быть равно ЧЕМУ"
|
903 |
|
904 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
905 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
906 |
msgid "Case sensitive"
|
907 |
msgstr "Чуствительность к регистру"
|
908 |
|
909 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
910 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
911 |
msgid "Regular Expression"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
915 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
916 |
msgid "Show the field in the registration"
|
917 |
msgstr "Показывать поле при регистрации"
|
918 |
|
919 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
920 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
921 |
msgid "Show the field in User's profile"
|
922 |
msgstr "Показывать поле в профиле пользователя"
|
923 |
|
924 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
925 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
926 |
msgid "Show the field in A&U Extended menu"
|
927 |
msgstr "Показывать поле в меню A&продвинутых П"
|
928 |
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
931 |
#, fuzzy
|
932 |
msgid "Show the field in the search engine"
|
933 |
msgstr "Показывать поле при регистрации"
|
934 |
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
937 |
#, fuzzy
|
938 |
msgid "Show the field in the blog"
|
939 |
msgstr "Показывать поле при регистрации"
|
940 |
|
941 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
942 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
943 |
#, fuzzy
|
944 |
msgid "Show the field if the role is at least:"
|
945 |
msgstr "Показывать поле при регистрации"
|
946 |
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
948 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
949 |
msgid "Anonymous"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
953 |
msgid "Clear"
|
954 |
msgstr "Очистить"
|
955 |
|
956 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
957 |
msgid "Invert selection"
|
958 |
msgstr "Инветировать выбор"
|
959 |
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
961 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
962 |
msgstr "Вы действительно хотите удалить поле(я) и данные вставленные в них пользователями?"
|
963 |
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
msgid "WordPress Fields"
|
966 |
msgstr "WordPress Fields"
|
967 |
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
969 |
msgid "None!"
|
970 |
msgstr "Нет!"
|
971 |
|
972 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
974 |
msgid "Order"
|
975 |
msgstr "Порядок"
|
976 |
|
977 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
978 |
msgid "Reset"
|
979 |
msgstr "Сброс"
|
980 |
|
981 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
982 |
#, fuzzy
|
983 |
msgid "select"
|
984 |
msgstr "Удалить"
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
987 |
#, php-format
|
988 |
msgid "Users Matching \"%s\""
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
992 |
#, fuzzy
|
993 |
msgid "Users Extended List"
|
994 |
msgstr "Список Авторов и продвинутых пользователей"
|
995 |
|
996 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
997 |
msgid "Authors & Users Extended List"
|
998 |
msgstr "Список Авторов и продвинутых пользователей"
|
999 |
|
1000 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1001 |
#, php-format
|
1002 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1006 |
msgid "Search Users"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1010 |
msgid "« Back to All Users"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1014 |
#, fuzzy
|
1015 |
msgid "Users per page"
|
1016 |
msgstr "Таблица данных пользователей"
|
1017 |
|
1018 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1019 |
msgid "Apply"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1023 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1024 |
msgid "Username"
|
1025 |
msgstr "Имя пользователя"
|
1026 |
|
1027 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1028 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1029 |
msgid "E-mail"
|
1030 |
msgstr "E-mail"
|
1031 |
|
1032 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1033 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1034 |
#, fuzzy
|
1035 |
msgid "Role"
|
1036 |
msgstr "Правила"
|
1037 |
|
1038 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1039 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1040 |
msgid "Posts"
|
1041 |
msgstr "Сообщения"
|
1042 |
|
1043 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1044 |
msgid "View posts by this author"
|
1045 |
msgstr "Просмотреть сообщения этого автора"
|
1046 |
|
1047 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1048 |
#, php-format
|
1049 |
msgid "e-mail: %s"
|
1050 |
msgstr "e-mail: %s"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-09-21 00:23+0300\n"
|
6 |
+
"PO-Revision-Date: 2010-09-21 00:23+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: mikolka <mikolka.info@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:442
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
27 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
|
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "ОШИБКА"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "не верно введен email."
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "не может быть пустым."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:441
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "не верно"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
55 |
msgid "YES"
|
56 |
msgstr "ДА"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
59 |
msgid "NO"
|
60 |
msgstr "НЕТ"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
63 |
msgid "should be"
|
64 |
msgstr "должно быть"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
67 |
msgid "should be an image."
|
68 |
msgstr "должно быть изображение."
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "не может иметь размер менее чем"
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "не может иметь длину менее чем"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "не может иметь размер отличный от"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "не может иметь длину отличную от"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "имеет размер больше чем"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "имеет длину больше чем"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:824
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
104 |
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:369
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
110 |
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:910
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:911
|
116 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \\\" ? $ % ^ & )."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:948
|
120 |
+
#, fuzzy
|
121 |
+
msgid "Change image"
|
122 |
+
msgstr "Изменить порядок"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:951
|
125 |
+
msgid "Insert the code:"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
129 |
#, fuzzy
|
130 |
msgid "no fieldset"
|
162 |
msgid "Options deleted"
|
163 |
msgstr "Настройки удалены"
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:345
|
166 |
msgid "Options changed"
|
167 |
msgstr "Настройки изменены"
|
168 |
|
169 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:472
|
170 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
174 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:726
|
176 |
msgid "Options"
|
177 |
msgstr "Настройки"
|
178 |
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
180 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
181 |
msgid "Add a new Field"
|
182 |
msgstr "Добавить новое поле"
|
183 |
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
185 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:796
|
186 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:249
|
188 |
msgid "Extra Fields"
|
189 |
msgstr "Extra Fields"
|
190 |
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
192 |
msgid "Support the Cimy Project"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
196 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:508
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1221
|
201 |
msgid "SUCCESSFUL"
|
202 |
msgstr "УСПЕШНО"
|
203 |
|
204 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
206 |
msgid "Save Changes"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:522
|
210 |
msgid "General"
|
211 |
msgstr "Главное"
|
212 |
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
214 |
msgid "installed is"
|
215 |
msgstr "установлено"
|
216 |
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
218 |
msgid "OPTIONS DELETED!"
|
219 |
msgstr "НАСТРОЙКИ УДАЛЕНЫ!"
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:542
|
223 |
msgid "Fix the problem"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
227 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
228 |
msgstr "ВЕРСИИ НЕ СОВПАДАЮТ! Это из-за того, что Вы не деактивировали, а затем активировали плагин после обновления! Могут возникнуть проблемы..."
|
229 |
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
231 |
msgid "Picture/Avatar upload"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:552
|
235 |
msgid "is created and writable"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
239 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
243 |
#, fuzzy
|
244 |
msgid "Show all fields in the welcome email"
|
245 |
msgstr "Показывать поле при регистрации"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
248 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
|
252 |
msgid "Enable email confirmation"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:577
|
256 |
msgid "user that registers should confirm its email address via a link click"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
|
260 |
+
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
264 |
+
msgid "Redirect to the source"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:590
|
268 |
+
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
272 |
+
msgid "No captcha"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
|
276 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:610
|
280 |
msgid "Public KEY"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
284 |
msgid "Private KEY"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:622
|
288 |
+
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
292 |
+
msgid "This captcha is probably weaker, but is easier for users"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
296 |
+
#, php-format
|
297 |
+
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:636
|
301 |
msgid "Change login/registration page logo"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:641
|
305 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
306 |
#, fuzzy
|
307 |
msgid "Delete the picture"
|
308 |
msgstr "Удалить поле"
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
311 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
|
315 |
msgid "Database"
|
316 |
msgstr "База данных"
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:677
|
320 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
322 |
msgid "select action"
|
323 |
msgstr "выберите действие"
|
324 |
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:660
|
326 |
msgid "Default values"
|
327 |
msgstr "Значения по-умолчанию"
|
328 |
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:698
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
|
333 |
msgid "Delete"
|
334 |
msgstr "Удалить"
|
335 |
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:702
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
340 |
msgid "NOT PRESENT"
|
341 |
msgstr "НЕ СУЩЕСТВУЕТ"
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
344 |
msgid "WordPress Fields table"
|
345 |
msgstr "Таблица WordPress Fields"
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:678
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
|
350 |
msgid "Empty"
|
351 |
msgstr "Очистить"
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
354 |
msgid "Extra Fields table"
|
355 |
msgstr "Таблица Extra Fields"
|
356 |
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
358 |
msgid "Users Data table"
|
359 |
msgstr "Таблица данных пользователей"
|
360 |
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
362 |
msgid "all data inserted by users in all and only extra fields"
|
363 |
msgstr "все данные, вставленные пользователями во все и только в дополнительные поля"
|
364 |
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
366 |
msgid "Force tables creation"
|
367 |
msgstr "Force tables creation"
|
368 |
|
369 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
370 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
374 |
msgid "User Profile"
|
375 |
msgstr "Профиль пользователя"
|
376 |
|
377 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
378 |
#, fuzzy
|
379 |
msgid "Extra Fields section title"
|
380 |
msgstr "Таблица Extra Fields"
|
381 |
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
383 |
msgid "Fieldset's titles, separates with comma"
|
384 |
msgstr "Названия полей через запятую"
|
385 |
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
387 |
msgid "example: title1,title2,title3"
|
388 |
msgstr "пример: заголовок1,заголовок2, заголовок3"
|
389 |
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
391 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:747
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
397 |
msgid "Authors & Users Extended"
|
398 |
msgstr "Авторы и Продвинутые пользователи"
|
399 |
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
|
401 |
msgid "Hide username field"
|
402 |
msgstr "Скрыть поле с именем пользователя"
|
403 |
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
405 |
msgid "Hide name field"
|
406 |
msgstr "Скрыть поле с именем"
|
407 |
|
408 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:762
|
409 |
msgid "Hide email field"
|
410 |
msgstr "Скрыть поле с email"
|
411 |
|
412 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
413 |
#, fuzzy
|
414 |
msgid "Hide role field"
|
415 |
msgstr "Скрыть поле с именем"
|
416 |
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
418 |
msgid "Hide website field"
|
419 |
msgstr "Скрыть поле с адресом сайта"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:774
|
422 |
msgid "Hide n. posts field"
|
423 |
msgstr "Скрыть поле с № постов"
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
|
426 |
msgid "WordPress hidden fields"
|
427 |
msgstr "Скрытые поля WordPress"
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
430 |
msgid "Show password"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
434 |
msgid "Show confirmation password"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:790
|
438 |
msgid "Show password strength meter"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:794
|
442 |
msgid "Show first name"
|
443 |
msgstr "Показать имя"
|
444 |
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:798
|
446 |
msgid "Show last name"
|
447 |
msgstr "Показать фамилию"
|
448 |
|
449 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:802
|
450 |
msgid "Show nickname"
|
451 |
msgstr "Показать ник"
|
452 |
|
453 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:806
|
454 |
msgid "Show website"
|
455 |
msgstr "Показать адрес сайта"
|
456 |
|
457 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:810
|
458 |
msgid "Show AIM"
|
459 |
msgstr "Показать AIM"
|
460 |
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:814
|
462 |
msgid "Show Yahoo IM"
|
463 |
msgstr "Показать Yahoo IM"
|
464 |
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:818
|
466 |
msgid "Show Jabber / Google Talk"
|
467 |
msgstr "Показать Jabber / Google Talk"
|
468 |
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:822
|
470 |
msgid "Show Biographical Info"
|
471 |
msgstr ""
|
472 |
|
498 |
msgstr "Имя"
|
499 |
|
500 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
503 |
msgid "Website"
|
504 |
msgstr "Адрес сайта"
|
505 |
|
521 |
msgid "Biographical Info"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:727
|
525 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
526 |
msgid "Fields"
|
527 |
msgstr "Поля"
|
528 |
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
531 |
msgid "A&U Extended"
|
532 |
msgstr "A и продвинутые П "
|
533 |
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:732
|
535 |
#, fuzzy
|
536 |
msgid "Users Extended"
|
537 |
msgstr "Список Авторов и продвинутых пользователей"
|
550 |
msgid "File '%s' is not an image."
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
554 |
+
#, fuzzy
|
555 |
+
msgid "Delete the file"
|
556 |
+
msgstr "Удалить поле"
|
557 |
+
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
559 |
+
#, fuzzy
|
560 |
+
msgid "Update the file"
|
561 |
+
msgstr "Обновить поле"
|
562 |
+
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
564 |
+
#, fuzzy
|
565 |
+
msgid "Update the picture"
|
566 |
+
msgstr "Обновить поле"
|
567 |
+
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
569 |
+
msgid "Picture URL:"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:38
|
573 |
#, php-format
|
574 |
msgid "New user registration on your site %s:"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:39
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:50
|
579 |
#, fuzzy, php-format
|
580 |
msgid "Username: %s"
|
581 |
msgstr "Имя пользователя"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:40
|
584 |
#, fuzzy, php-format
|
585 |
msgid "E-mail: %s"
|
586 |
msgstr "e-mail: %s"
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
589 |
#, php-format
|
590 |
msgid "[%s] New User Registration"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:51
|
594 |
#, php-format
|
595 |
msgid "Password: %s"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
599 |
#, php-format
|
600 |
msgid "[%s] Your username and password"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:91
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:97
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:109
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:115
|
607 |
#, php-format
|
608 |
msgid "%s: %s"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:189
|
612 |
#, php-format
|
613 |
msgid ""
|
614 |
"To activate your user, please click the following link:\n"
|
619 |
"\n"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:204
|
623 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
624 |
msgid "Your account is now active!"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
628 |
#, php-format
|
629 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:207
|
633 |
msgid "An error occurred during the activation"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
637 |
#, fuzzy
|
638 |
msgid "Username:"
|
639 |
msgstr "Имя пользователя"
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
642 |
msgid "Password:"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:226
|
646 |
msgid "Invalid activation key."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:229
|
650 |
msgid "The site is already active."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:248
|
654 |
msgid "Could not create user"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
658 |
msgid "That username is already activated."
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:279
|
662 |
msgid "That username is currently reserved but may be available in a couple of days."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:282
|
666 |
msgid "username and email used"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
670 |
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."
|
671 |
msgstr ""
|
672 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
673 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
674 |
msgid "Add field"
|
675 |
msgstr "Добавить поле"
|
691 |
msgstr "Изменить порядок"
|
692 |
|
693 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
694 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
|
695 |
msgid "Min length"
|
696 |
msgstr "Мин длина"
|
697 |
|
698 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1041
|
700 |
msgid "Exact length"
|
701 |
msgstr "Точная длина"
|
702 |
|
703 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1042
|
705 |
msgid "Max length"
|
706 |
msgstr "Макс длина"
|
707 |
|
731 |
msgstr "удалены правильно"
|
732 |
|
733 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
734 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
|
735 |
msgid "Min size"
|
736 |
msgstr "Мин размер"
|
737 |
|
738 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
739 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1033
|
740 |
msgid "Exact size"
|
741 |
msgstr "Точный размер"
|
742 |
|
743 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
744 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1034
|
745 |
msgid "Max size"
|
746 |
msgstr "Макс размер"
|
747 |
|
816 |
msgid "Name inserted is just in the database, change to another one"
|
817 |
msgstr "Вставляемое имя уже есть в БД, выберите другое"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
820 |
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."
|
821 |
msgstr "Для добавления нового поля вам необходимо задать имя, тип и метку; значение и описание. Правила применяются в процессе регистрации пользователя."
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
824 |
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'"
|
825 |
msgstr "С <strong>переключателем(radio)</strong> и <strong>флажками(checkbox)</strong>: <em>Значение</em> и <em>равно ЧЕМУ</em> может быть либо 'Yes', либо 'No' - это означает 'выбрано' или 'не выбрано'"
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
828 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
829 |
msgstr "С <strong>выпадающим списком(drop-down)</strong>: вы можете добавить все опции в метку, например: метка/элемент1,элемент2,элемент3"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
832 |
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"
|
833 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
|
836 |
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)"
|
837 |
msgstr "С <strong>picture-url</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; <em>равная ЧЕМУ</em> подразумевает max ширину для превью (высота будет установлена пропорционально)"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
840 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
841 |
msgstr "С <strong>датой регистрации(registration-date)</strong>: <em>равна ЧЕМУ</em> подразумевает формат даты и времени"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
|
844 |
#, fuzzy
|
845 |
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"
|
846 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
847 |
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
849 |
#, fuzzy
|
850 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
851 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
856 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1475
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
859 |
msgid "Name"
|
860 |
msgstr "Имя"
|
861 |
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:643
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
866 |
msgid "Value"
|
867 |
msgstr "Значение"
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
|
870 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
872 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1071
|
873 |
msgid "Type"
|
874 |
msgstr "Тип"
|
875 |
|
876 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
877 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:665
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
879 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1093
|
880 |
msgid "Label"
|
881 |
msgstr "Метка"
|
882 |
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
884 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
885 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
886 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1096
|
|
|
887 |
msgid "Description"
|
888 |
msgstr "Описание"
|
889 |
|
890 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
891 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
892 |
msgid "Rules"
|
893 |
msgstr "Правила"
|
894 |
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:636
|
896 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:826
|
897 |
msgid "Actions"
|
898 |
msgstr "Действия"
|
899 |
|
900 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
901 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1087
|
902 |
#, fuzzy
|
903 |
msgid "Fieldset"
|
904 |
msgstr "Поля"
|
905 |
|
906 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1110
|
908 |
msgid "Can be empty"
|
909 |
msgstr "Может быть пустым"
|
910 |
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
912 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
913 |
msgid "Check for E-mail syntax"
|
914 |
msgstr "Проверка синтаксиса E-mail"
|
915 |
|
916 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
|
917 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
918 |
msgid "Can be modified"
|
919 |
msgstr "Может быть изменено"
|
920 |
|
921 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:683
|
922 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
923 |
msgid "Can be modified only if empty"
|
924 |
msgstr "Может быть изменено только если пустое"
|
925 |
|
926 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1116
|
928 |
msgid "Can be modified only by admin"
|
929 |
msgstr "Может быть изменено только админом"
|
930 |
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
932 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
933 |
msgid "Can be modified only by admin or if empty"
|
934 |
msgstr "Может быть изменено только админом или если пустое"
|
935 |
|
936 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
|
937 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
938 |
msgid "Cannot be modified"
|
939 |
msgstr "Не может быть изменено"
|
940 |
|
941 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
942 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1123
|
943 |
msgid "Should be equal TO"
|
944 |
msgstr "Долднадолжно быть равно ЧЕМУ"
|
945 |
|
946 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:696
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1125
|
948 |
msgid "Case sensitive"
|
949 |
msgstr "Чуствительность к регистру"
|
950 |
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:699
|
952 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
953 |
msgid "Regular Expression"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
957 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
958 |
msgid "Show the field in the registration"
|
959 |
msgstr "Показывать поле при регистрации"
|
960 |
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
962 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
963 |
msgid "Show the field in User's profile"
|
964 |
msgstr "Показывать поле в профиле пользователя"
|
965 |
|
966 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
967 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
968 |
msgid "Show the field in A&U Extended menu"
|
969 |
msgstr "Показывать поле в меню A&продвинутых П"
|
970 |
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
972 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1146
|
973 |
#, fuzzy
|
974 |
msgid "Show the field in the search engine"
|
975 |
msgstr "Показывать поле при регистрации"
|
976 |
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
978 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
979 |
#, fuzzy
|
980 |
msgid "Show the field in the blog"
|
981 |
msgstr "Показывать поле при регистрации"
|
982 |
|
983 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1152
|
985 |
#, fuzzy
|
986 |
msgid "Show the field if the role is at least:"
|
987 |
msgstr "Показывать поле при регистрации"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
990 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1154
|
991 |
msgid "Anonymous"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
|
995 |
msgid "Clear"
|
996 |
msgstr "Очистить"
|
997 |
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
999 |
msgid "Invert selection"
|
1000 |
msgstr "Инветировать выбор"
|
1001 |
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:788
|
1003 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1004 |
msgstr "Вы действительно хотите удалить поле(я) и данные вставленные в них пользователями?"
|
1005 |
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:794
|
1007 |
msgid "WordPress Fields"
|
1008 |
msgstr "WordPress Fields"
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
1011 |
msgid "None!"
|
1012 |
msgstr "Нет!"
|
1013 |
|
1014 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1053
|
1016 |
msgid "Order"
|
1017 |
msgstr "Порядок"
|
1018 |
|
1019 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1165
|
1020 |
msgid "Reset"
|
1021 |
msgstr "Сброс"
|
1022 |
|
1023 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1250
|
1024 |
#, fuzzy
|
1025 |
msgid "select"
|
1026 |
msgstr "Удалить"
|
1027 |
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1353
|
1029 |
#, php-format
|
1030 |
msgid "Users Matching \"%s\""
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
1034 |
#, fuzzy
|
1035 |
msgid "Users Extended List"
|
1036 |
msgstr "Список Авторов и продвинутых пользователей"
|
1037 |
|
1038 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1359
|
1039 |
msgid "Authors & Users Extended List"
|
1040 |
msgstr "Список Авторов и продвинутых пользователей"
|
1041 |
|
1042 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1043 |
#, php-format
|
1044 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
1048 |
msgid "Search Users"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1436
|
1052 |
msgid "« Back to All Users"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
1056 |
#, fuzzy
|
1057 |
msgid "Users per page"
|
1058 |
msgstr "Таблица данных пользователей"
|
1059 |
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
1061 |
msgid "Apply"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1470
|
1065 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
1066 |
msgid "Username"
|
1067 |
msgstr "Имя пользователя"
|
1068 |
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1480
|
1070 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
1071 |
msgid "E-mail"
|
1072 |
msgstr "E-mail"
|
1073 |
|
1074 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1485
|
1075 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
1076 |
#, fuzzy
|
1077 |
msgid "Role"
|
1078 |
msgstr "Правила"
|
1079 |
|
1080 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1495
|
1081 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
1082 |
msgid "Posts"
|
1083 |
msgstr "Сообщения"
|
1084 |
|
1085 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1605
|
1086 |
msgid "View posts by this author"
|
1087 |
msgstr "Просмотреть сообщения этого автора"
|
1088 |
|
1089 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
|
1090 |
#, php-format
|
1091 |
msgid "e-mail: %s"
|
1092 |
msgstr "e-mail: %s"
|
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: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,104 +16,115 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
20 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
21 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
22 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
23 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
|
|
|
|
24 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
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/
|
31 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:567
|
32 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:435
|
33 |
msgid "ERROR"
|
34 |
msgstr "FEL"
|
35 |
|
36 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
37 |
msgid "does not match."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
41 |
msgid "hasn’t a correct email syntax."
|
42 |
msgstr "epostadressen har ett felaktigt format"
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
45 |
msgid "couldn’t be empty."
|
46 |
msgstr "måste anges."
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
49 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
50 |
msgid "isn’t correct"
|
51 |
msgstr "är ej korrekt"
|
52 |
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
54 |
msgid "YES"
|
55 |
msgstr "JA"
|
56 |
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
msgid "NO"
|
59 |
msgstr "NEJ"
|
60 |
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
62 |
msgid "should be"
|
63 |
msgstr "skall vara"
|
64 |
|
65 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
66 |
msgid "should be an image."
|
67 |
msgstr "borde vara en bild."
|
68 |
|
69 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
70 |
msgid "couldn’t have size less than"
|
71 |
msgstr "får inte vara mindre än"
|
72 |
|
73 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
74 |
msgid "couldn’t have length less than"
|
75 |
msgstr "får inte vara kortare än"
|
76 |
|
77 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
78 |
msgid "couldn’t have size different than"
|
79 |
msgstr "får inte ha en storlek skiljd från"
|
80 |
|
81 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
82 |
msgid "couldn’t have length different than"
|
83 |
msgstr "får inte ha en annan längd än"
|
84 |
|
85 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
86 |
msgid "couldn’t have size more than"
|
87 |
msgstr "får inte vara större än"
|
88 |
|
89 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
90 |
msgid "couldn’t have length more than"
|
91 |
msgstr "får inte vara längre än"
|
92 |
|
93 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
|
|
94 |
msgid "Typed code is not correct."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
98 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
99 |
#, fuzzy
|
100 |
msgid "Please upload a file with one of the following extensions"
|
101 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
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_options.php:
|
105 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
106 |
msgid "Please upload an image with one of the following extensions"
|
107 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
msgid "Strength indicator"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
114 |
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 ! \\\" ? $ % ^ & )."
|
115 |
msgstr ""
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
118 |
msgid "no fieldset"
|
119 |
msgstr "Ingen fältsektion"
|
@@ -150,279 +161,308 @@ msgstr "Inställningar nollställda"
|
|
150 |
msgid "Options deleted"
|
151 |
msgstr "Inställninger borttagna"
|
152 |
|
153 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
154 |
msgid "Options changed"
|
155 |
msgstr "Inställningar ändrade"
|
156 |
|
157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
158 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
162 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
164 |
msgid "Options"
|
165 |
msgstr "Inställningar"
|
166 |
|
167 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
168 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
169 |
msgid "Add a new Field"
|
170 |
msgstr "Lägg till ett fält"
|
171 |
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
174 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
175 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:
|
176 |
msgid "Extra Fields"
|
177 |
msgstr "Extrafält"
|
178 |
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
180 |
msgid "Support the Cimy Project"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
184 |
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!"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
189 |
msgid "SUCCESSFUL"
|
190 |
msgstr "FRAMGÅNGSRIKT"
|
191 |
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
193 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
194 |
msgid "Save Changes"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
198 |
msgid "General"
|
199 |
msgstr "Allmän"
|
200 |
|
201 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
202 |
msgid "installed is"
|
203 |
msgstr "är installerad"
|
204 |
|
205 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
206 |
msgid "OPTIONS DELETED!"
|
207 |
msgstr "INSTÄLLNINGAR BORTTAGNA"
|
208 |
|
209 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
210 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
211 |
msgid "Fix the problem"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
215 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
216 |
msgstr "VERSIONSKONFLIKT! deaktivera och aktivera pluginen efter uppdatering!"
|
217 |
|
218 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
219 |
msgid "Picture/Avatar upload"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
223 |
msgid "is created and writable"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
227 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
231 |
#, fuzzy
|
232 |
msgid "Show all fields in the welcome email"
|
233 |
msgstr "Visa fält vid registrering"
|
234 |
|
235 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
236 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
240 |
msgid "Enable email confirmation"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
244 |
msgid "user that registers should confirm its email address via a link click"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
252 |
msgid "Public KEY"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
256 |
msgid "Private KEY"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
msgid "Change login/registration page logo"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
264 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
265 |
msgid "Delete the picture"
|
266 |
msgstr "Ta bort bild"
|
267 |
|
268 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
269 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
273 |
msgid "Database"
|
274 |
msgstr "Databas"
|
275 |
|
276 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
277 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
279 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
280 |
msgid "select action"
|
281 |
msgstr "Välj åtgärd"
|
282 |
|
283 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
284 |
msgid "Default values"
|
285 |
msgstr "Standardvärden"
|
286 |
|
287 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
288 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
289 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
291 |
msgid "Delete"
|
292 |
msgstr "Ta bort"
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
295 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
298 |
msgid "NOT PRESENT"
|
299 |
msgstr "EXISTERAR EJ"
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
302 |
msgid "WordPress Fields table"
|
303 |
msgstr "WordPress Fälttabell"
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
307 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
308 |
msgid "Empty"
|
309 |
msgstr "Töm"
|
310 |
|
311 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
312 |
msgid "Extra Fields table"
|
313 |
msgstr "Extra Fälttabell"
|
314 |
|
315 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
316 |
msgid "Users Data table"
|
317 |
msgstr "Användardatatabell"
|
318 |
|
319 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
320 |
msgid "all data inserted by users in all and only extra fields"
|
321 |
msgstr "all data skapad av användare "
|
322 |
|
323 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
324 |
msgid "Force tables creation"
|
325 |
msgstr "Forcera skapande av tabeller"
|
326 |
|
327 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
328 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
332 |
msgid "User Profile"
|
333 |
msgstr "Användarprofil"
|
334 |
|
335 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
336 |
msgid "Extra Fields section title"
|
337 |
msgstr "Titel för fältsektion"
|
338 |
|
339 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
340 |
msgid "Fieldset's titles, separates with comma"
|
341 |
msgstr "Fältsektionstitlar, separerade med kommatecken"
|
342 |
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
344 |
msgid "example: title1,title2,title3"
|
345 |
msgstr "tex.: Titel1,Titel2,Titel3"
|
346 |
|
347 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
348 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
354 |
msgid "Authors & Users Extended"
|
355 |
msgstr "Utökad författar- och användarhantering"
|
356 |
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
358 |
msgid "Hide username field"
|
359 |
msgstr "Göm fältet användarnamn"
|
360 |
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
362 |
msgid "Hide name field"
|
363 |
msgstr "Göm fältet namn"
|
364 |
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
366 |
msgid "Hide email field"
|
367 |
msgstr "Göm fältet e-post"
|
368 |
|
369 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
370 |
msgid "Hide role field"
|
371 |
msgstr "Göm fältet roll"
|
372 |
|
373 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
374 |
msgid "Hide website field"
|
375 |
msgstr "Göm fältet webbsajt"
|
376 |
|
377 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
378 |
msgid "Hide n. posts field"
|
379 |
msgstr "Göm n. postfält"
|
380 |
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
382 |
msgid "WordPress hidden fields"
|
383 |
msgstr "Wordpress gömda fält"
|
384 |
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
386 |
msgid "Show password"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
390 |
msgid "Show confirmation password"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
394 |
msgid "Show password strength meter"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
398 |
msgid "Show first name"
|
399 |
msgstr "Visa förnamn"
|
400 |
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
402 |
msgid "Show last name"
|
403 |
msgstr "Visa efternamn"
|
404 |
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
406 |
msgid "Show nickname"
|
407 |
msgstr "Visa smeknamn"
|
408 |
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
410 |
msgid "Show website"
|
411 |
msgstr "Visa webbsajt"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
414 |
msgid "Show AIM"
|
415 |
msgstr "Visa AIM"
|
416 |
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
418 |
msgid "Show Yahoo IM"
|
419 |
msgstr "Visa Yahoo IM"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
422 |
msgid "Show Jabber / Google Talk"
|
423 |
msgstr "Visa Jabber / Google Talk"
|
424 |
|
425 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:
|
426 |
msgid "Show Biographical Info"
|
427 |
msgstr ""
|
428 |
|
@@ -451,8 +491,8 @@ msgid "Nickname"
|
|
451 |
msgstr "Smeknamn"
|
452 |
|
453 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
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 "Website"
|
457 |
msgstr "Webbsajt"
|
458 |
|
@@ -472,17 +512,17 @@ msgstr "Jabber / Google Talk"
|
|
472 |
msgid "Biographical Info"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
476 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
477 |
msgid "Fields"
|
478 |
msgstr "Fält"
|
479 |
|
480 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
481 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
482 |
msgid "A&U Extended"
|
483 |
msgstr "F&A Utökat"
|
484 |
|
485 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
486 |
msgid "Users Extended"
|
487 |
msgstr "Extra fält för användare"
|
488 |
|
@@ -500,44 +540,64 @@ msgstr ""
|
|
500 |
msgid "File '%s' is not an image."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
504 |
#, php-format
|
505 |
msgid "New user registration on your site %s:"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
509 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
510 |
#, fuzzy, php-format
|
511 |
msgid "Username: %s"
|
512 |
msgstr "Användarnamn"
|
513 |
|
514 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
515 |
#, fuzzy, php-format
|
516 |
msgid "E-mail: %s"
|
517 |
msgstr "e-post: %s"
|
518 |
|
519 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
520 |
#, php-format
|
521 |
msgid "[%s] New User Registration"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
525 |
#, php-format
|
526 |
msgid "Password: %s"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
530 |
#, php-format
|
531 |
msgid "[%s] Your username and password"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
535 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
536 |
#, php-format
|
537 |
msgid "%s: %s"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
541 |
#, php-format
|
542 |
msgid ""
|
543 |
"To activate your user, please click the following link:\n"
|
@@ -548,75 +608,57 @@ msgid ""
|
|
548 |
"\n"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
553 |
msgid "Your account is now active!"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
557 |
#, php-format
|
558 |
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>."
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
562 |
msgid "An error occurred during the activation"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
566 |
#, fuzzy
|
567 |
msgid "Username:"
|
568 |
msgstr "Användarnamn"
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
571 |
msgid "Password:"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
575 |
msgid "Invalid activation key."
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
579 |
msgid "The site is already active."
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
583 |
msgid "Could not create user"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
587 |
msgid "That username is already activated."
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
591 |
msgid "That username is currently reserved but may be available in a couple of days."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
595 |
msgid "username and email used"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
599 |
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."
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
603 |
-
#, fuzzy
|
604 |
-
msgid "Delete the file"
|
605 |
-
msgstr "Ta bort bild"
|
606 |
-
|
607 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
608 |
-
#, fuzzy
|
609 |
-
msgid "Update the file"
|
610 |
-
msgstr "Uppdatra bild"
|
611 |
-
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
613 |
-
msgid "Update the picture"
|
614 |
-
msgstr "Uppdatra bild"
|
615 |
-
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
617 |
-
msgid "Picture URL:"
|
618 |
-
msgstr ""
|
619 |
-
|
620 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
621 |
msgid "Add field"
|
622 |
msgstr "Lägg till fält"
|
@@ -638,17 +680,17 @@ msgid "Change order"
|
|
638 |
msgstr "Ändra ordning"
|
639 |
|
640 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
641 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
642 |
msgid "Min length"
|
643 |
msgstr "Min. längd"
|
644 |
|
645 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
646 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
647 |
msgid "Exact length"
|
648 |
msgstr "Exakt längd"
|
649 |
|
650 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
651 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
652 |
msgid "Max length"
|
653 |
msgstr "Max. längd"
|
654 |
|
@@ -678,17 +720,17 @@ msgid "deleted correctly"
|
|
678 |
msgstr "korrekt raderade"
|
679 |
|
680 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
681 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
682 |
msgid "Min size"
|
683 |
msgstr "Min. storlek"
|
684 |
|
685 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
687 |
msgid "Exact size"
|
688 |
msgstr "Exakt storlek"
|
689 |
|
690 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
692 |
msgid "Max size"
|
693 |
msgstr "Max. storlek"
|
694 |
|
@@ -763,272 +805,272 @@ msgstr "korrekt uppdaterat"
|
|
763 |
msgid "Name inserted is just in the database, change to another one"
|
764 |
msgstr "Namnet du valt är redan i bruk, välj ett annat"
|
765 |
|
766 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
767 |
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."
|
768 |
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."
|
769 |
|
770 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
771 |
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'"
|
772 |
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."
|
773 |
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
775 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
776 |
msgstr "<strong>drop-down</strong>: Du måste ange alla alternativ i etikett t.ex: Etikett/värde1,värde2,värde3"
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
779 |
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"
|
780 |
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."
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
783 |
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)"
|
784 |
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)."
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
787 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
788 |
msgstr "Med <strong>registration-datum</strong>: <em>LIKA MED</em> betyder datum- och tidsformat."
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
791 |
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"
|
792 |
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."
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
795 |
#, fuzzy
|
796 |
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"
|
797 |
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."
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
800 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
801 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
804 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
805 |
msgid "Name"
|
806 |
msgstr "Namn"
|
807 |
|
808 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
809 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
812 |
msgid "Value"
|
813 |
msgstr "Värde"
|
814 |
|
815 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
817 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
819 |
msgid "Type"
|
820 |
msgstr "Typ"
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
823 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
824 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
825 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
826 |
msgid "Label"
|
827 |
msgstr "Etikett"
|
828 |
|
|
|
829 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
830 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
831 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
832 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
833 |
msgid "Description"
|
834 |
msgstr "Beskrivning"
|
835 |
|
836 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
837 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
838 |
msgid "Rules"
|
839 |
msgstr "Regler"
|
840 |
|
841 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
842 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
843 |
msgid "Actions"
|
844 |
msgstr "Åtgärder"
|
845 |
|
846 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
847 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
848 |
msgid "Fieldset"
|
849 |
msgstr "Fältsektion"
|
850 |
|
851 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
852 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
853 |
msgid "Can be empty"
|
854 |
msgstr "Kan vara töm"
|
855 |
|
856 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
857 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
858 |
msgid "Check for E-mail syntax"
|
859 |
msgstr "Kontrollera epostadressen"
|
860 |
|
861 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
862 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
863 |
msgid "Can be modified"
|
864 |
msgstr "Kan ändras"
|
865 |
|
866 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
867 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
868 |
msgid "Can be modified only if empty"
|
869 |
msgstr "Kan ändras endast om fältet är tomt"
|
870 |
|
871 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
872 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
873 |
msgid "Can be modified only by admin"
|
874 |
msgstr "Kan endast ändras av en administratör"
|
875 |
|
876 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
877 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
878 |
msgid "Can be modified only by admin or if empty"
|
879 |
msgstr "Kan ändras endast av en administratör eller om fältet är tomt"
|
880 |
|
881 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
882 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
883 |
msgid "Cannot be modified"
|
884 |
msgstr "Kan inte ändras"
|
885 |
|
886 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
887 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
888 |
msgid "Should be equal TO"
|
889 |
msgstr "Skall vara LIKA MED"
|
890 |
|
891 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
892 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
893 |
msgid "Case sensitive"
|
894 |
msgstr "Skiftlägeskänslig"
|
895 |
|
896 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
897 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
898 |
msgid "Regular Expression"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
902 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
903 |
msgid "Show the field in the registration"
|
904 |
msgstr "Visa fält vid registrering"
|
905 |
|
906 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
907 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
908 |
msgid "Show the field in User's profile"
|
909 |
msgstr "Visa fält i Användarprofil"
|
910 |
|
911 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
912 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
913 |
msgid "Show the field in A&U Extended menu"
|
914 |
msgstr "Visa fält i menyn F&A Utökat"
|
915 |
|
916 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
917 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
918 |
#, fuzzy
|
919 |
msgid "Show the field in the search engine"
|
920 |
msgstr "Visa fält vid registrering"
|
921 |
|
922 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
923 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
924 |
#, fuzzy
|
925 |
msgid "Show the field in the blog"
|
926 |
msgstr "Visa fält vid registrering"
|
927 |
|
928 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
929 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
930 |
#, fuzzy
|
931 |
msgid "Show the field if the role is at least:"
|
932 |
msgstr "Visa fält vid registrering"
|
933 |
|
934 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
935 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
936 |
msgid "Anonymous"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
940 |
msgid "Clear"
|
941 |
msgstr "Nollställ"
|
942 |
|
943 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
944 |
msgid "Invert selection"
|
945 |
msgstr "Omvänd markering"
|
946 |
|
947 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
948 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
949 |
msgstr "Är du säker på at du vill ta bort detta fält och all ev data som matats in?"
|
950 |
|
951 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
952 |
msgid "WordPress Fields"
|
953 |
msgstr "WordPress-fält"
|
954 |
|
955 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
956 |
msgid "None!"
|
957 |
msgstr "Ingen!"
|
958 |
|
959 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
960 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
961 |
msgid "Order"
|
962 |
msgstr "Ordningsföljd"
|
963 |
|
964 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
965 |
msgid "Reset"
|
966 |
msgstr "Nollställ"
|
967 |
|
968 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
969 |
#, fuzzy
|
970 |
msgid "select"
|
971 |
msgstr "Ta bort"
|
972 |
|
973 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
974 |
#, php-format
|
975 |
msgid "Users Matching \"%s\""
|
976 |
msgstr "Användare som Matchar \"%s\""
|
977 |
|
978 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
979 |
msgid "Users Extended List"
|
980 |
msgstr "Lista med extra fält för användaren"
|
981 |
|
982 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
983 |
msgid "Authors & Users Extended List"
|
984 |
msgstr "Lista över författare & användare (utökat)"
|
985 |
|
986 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
987 |
#, php-format
|
988 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
992 |
msgid "Search Users"
|
993 |
msgstr "Sök Användare"
|
994 |
|
995 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
996 |
msgid "« Back to All Users"
|
997 |
msgstr "« Tillbaka till Alla Användare"
|
998 |
|
999 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1000 |
msgid "Users per page"
|
1001 |
msgstr "Användare per sida"
|
1002 |
|
1003 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1004 |
msgid "Apply"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1008 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1009 |
msgid "Username"
|
1010 |
msgstr "Användarnamn"
|
1011 |
|
1012 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1013 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1014 |
msgid "E-mail"
|
1015 |
msgstr "E-post"
|
1016 |
|
1017 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1018 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1019 |
msgid "Role"
|
1020 |
msgstr "Roll"
|
1021 |
|
1022 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1023 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1024 |
msgid "Posts"
|
1025 |
msgstr "Postningar"
|
1026 |
|
1027 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1028 |
msgid "View posts by this author"
|
1029 |
msgstr "Visa postningar av dessa skribent"
|
1030 |
|
1031 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
1032 |
#, php-format
|
1033 |
msgid "e-mail: %s"
|
1034 |
msgstr "e-post: %s"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-09-21 00:23+0300\n"
|
6 |
+
"PO-Revision-Date: 2010-09-21 00:23+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
20 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
21 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
22 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:442
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
25 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
26 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
27 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
30 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
|
|
|
|
34 |
msgid "ERROR"
|
35 |
msgstr "FEL"
|
36 |
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
|
38 |
msgid "does not match."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
msgstr "epostadressen har ett felaktigt format"
|
44 |
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
|
46 |
msgid "couldn’t be empty."
|
47 |
msgstr "måste anges."
|
48 |
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:441
|
50 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
51 |
msgid "isn’t correct"
|
52 |
msgstr "är ej korrekt"
|
53 |
|
54 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
55 |
msgid "YES"
|
56 |
msgstr "JA"
|
57 |
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
|
59 |
msgid "NO"
|
60 |
msgstr "NEJ"
|
61 |
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
63 |
msgid "should be"
|
64 |
msgstr "skall vara"
|
65 |
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
|
67 |
msgid "should be an image."
|
68 |
msgstr "borde vara en bild."
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
|
71 |
msgid "couldn’t have size less than"
|
72 |
msgstr "får inte vara mindre än"
|
73 |
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
75 |
msgid "couldn’t have length less than"
|
76 |
msgstr "får inte vara kortare än"
|
77 |
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
79 |
msgid "couldn’t have size different than"
|
80 |
msgstr "får inte ha en storlek skiljd från"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
|
83 |
msgid "couldn’t have length different than"
|
84 |
msgstr "får inte ha en annan längd än"
|
85 |
|
86 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
87 |
msgid "couldn’t have size more than"
|
88 |
msgstr "får inte vara större än"
|
89 |
|
90 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
91 |
msgid "couldn’t have length more than"
|
92 |
msgstr "får inte vara längre än"
|
93 |
|
94 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
|
96 |
msgid "Typed code is not correct."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:824
|
100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
101 |
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
104 |
|
105 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:369
|
107 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
110 |
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:910
|
112 |
msgid "Strength indicator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:911
|
116 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \\\" ? $ % ^ & )."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:948
|
120 |
+
#, fuzzy
|
121 |
+
msgid "Change image"
|
122 |
+
msgstr "Ändra ordning"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:951
|
125 |
+
msgid "Insert the code:"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
|
129 |
msgid "no fieldset"
|
130 |
msgstr "Ingen fältsektion"
|
161 |
msgid "Options deleted"
|
162 |
msgstr "Inställninger borttagna"
|
163 |
|
164 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:345
|
165 |
msgid "Options changed"
|
166 |
msgstr "Inställningar ändrade"
|
167 |
|
168 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:472
|
169 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
173 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
174 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:726
|
175 |
msgid "Options"
|
176 |
msgstr "Inställningar"
|
177 |
|
178 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
179 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
|
180 |
msgid "Add a new Field"
|
181 |
msgstr "Lägg till ett fält"
|
182 |
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
184 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:796
|
185 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
186 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:249
|
187 |
msgid "Extra Fields"
|
188 |
msgstr "Extrafält"
|
189 |
|
190 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
|
191 |
msgid "Support the Cimy Project"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
195 |
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!"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:508
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1221
|
200 |
msgid "SUCCESSFUL"
|
201 |
msgstr "FRAMGÅNGSRIKT"
|
202 |
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
204 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
|
205 |
msgid "Save Changes"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:522
|
209 |
msgid "General"
|
210 |
msgstr "Allmän"
|
211 |
|
212 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
213 |
msgid "installed is"
|
214 |
msgstr "är installerad"
|
215 |
|
216 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
217 |
msgid "OPTIONS DELETED!"
|
218 |
msgstr "INSTÄLLNINGAR BORTTAGNA"
|
219 |
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:542
|
222 |
msgid "Fix the problem"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
226 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
227 |
msgstr "VERSIONSKONFLIKT! deaktivera och aktivera pluginen efter uppdatering!"
|
228 |
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
230 |
msgid "Picture/Avatar upload"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:552
|
234 |
msgid "is created and writable"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
|
238 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
242 |
#, fuzzy
|
243 |
msgid "Show all fields in the welcome email"
|
244 |
msgstr "Visa fält vid registrering"
|
245 |
|
246 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
247 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
|
251 |
msgid "Enable email confirmation"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:577
|
255 |
msgid "user that registers should confirm its email address via a link click"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
|
259 |
+
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
|
263 |
+
msgid "Redirect to the source"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:590
|
267 |
+
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
|
271 |
+
msgid "No captcha"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
|
275 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:610
|
279 |
msgid "Public KEY"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
|
283 |
msgid "Private KEY"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:622
|
287 |
+
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
291 |
+
msgid "This captcha is probably weaker, but is easier for users"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
295 |
+
#, php-format
|
296 |
+
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:636
|
300 |
msgid "Change login/registration page logo"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:641
|
304 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
305 |
msgid "Delete the picture"
|
306 |
msgstr "Ta bort bild"
|
307 |
|
308 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
309 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
|
313 |
msgid "Database"
|
314 |
msgstr "Databas"
|
315 |
|
316 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
|
317 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:677
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
|
320 |
msgid "select action"
|
321 |
msgstr "Välj åtgärd"
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:660
|
324 |
msgid "Default values"
|
325 |
msgstr "Standardvärden"
|
326 |
|
327 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:698
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
|
331 |
msgid "Delete"
|
332 |
msgstr "Ta bort"
|
333 |
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:702
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
338 |
msgid "NOT PRESENT"
|
339 |
msgstr "EXISTERAR EJ"
|
340 |
|
341 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
|
342 |
msgid "WordPress Fields table"
|
343 |
msgstr "WordPress Fälttabell"
|
344 |
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:678
|
346 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
|
348 |
msgid "Empty"
|
349 |
msgstr "Töm"
|
350 |
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
|
352 |
msgid "Extra Fields table"
|
353 |
msgstr "Extra Fälttabell"
|
354 |
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
356 |
msgid "Users Data table"
|
357 |
msgstr "Användardatatabell"
|
358 |
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
360 |
msgid "all data inserted by users in all and only extra fields"
|
361 |
msgstr "all data skapad av användare "
|
362 |
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
|
364 |
msgid "Force tables creation"
|
365 |
msgstr "Forcera skapande av tabeller"
|
366 |
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
368 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
|
372 |
msgid "User Profile"
|
373 |
msgstr "Användarprofil"
|
374 |
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
376 |
msgid "Extra Fields section title"
|
377 |
msgstr "Titel för fältsektion"
|
378 |
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
380 |
msgid "Fieldset's titles, separates with comma"
|
381 |
msgstr "Fältsektionstitlar, separerade med kommatecken"
|
382 |
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
|
384 |
msgid "example: title1,title2,title3"
|
385 |
msgstr "tex.: Titel1,Titel2,Titel3"
|
386 |
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
|
388 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:747
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
394 |
msgid "Authors & Users Extended"
|
395 |
msgstr "Utökad författar- och användarhantering"
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
|
398 |
msgid "Hide username field"
|
399 |
msgstr "Göm fältet användarnamn"
|
400 |
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
|
402 |
msgid "Hide name field"
|
403 |
msgstr "Göm fältet namn"
|
404 |
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:762
|
406 |
msgid "Hide email field"
|
407 |
msgstr "Göm fältet e-post"
|
408 |
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
|
410 |
msgid "Hide role field"
|
411 |
msgstr "Göm fältet roll"
|
412 |
|
413 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
|
414 |
msgid "Hide website field"
|
415 |
msgstr "Göm fältet webbsajt"
|
416 |
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:774
|
418 |
msgid "Hide n. posts field"
|
419 |
msgstr "Göm n. postfält"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
|
422 |
msgid "WordPress hidden fields"
|
423 |
msgstr "Wordpress gömda fält"
|
424 |
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
426 |
msgid "Show password"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
|
430 |
msgid "Show confirmation password"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:790
|
434 |
msgid "Show password strength meter"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:794
|
438 |
msgid "Show first name"
|
439 |
msgstr "Visa förnamn"
|
440 |
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:798
|
442 |
msgid "Show last name"
|
443 |
msgstr "Visa efternamn"
|
444 |
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:802
|
446 |
msgid "Show nickname"
|
447 |
msgstr "Visa smeknamn"
|
448 |
|
449 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:806
|
450 |
msgid "Show website"
|
451 |
msgstr "Visa webbsajt"
|
452 |
|
453 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:810
|
454 |
msgid "Show AIM"
|
455 |
msgstr "Visa AIM"
|
456 |
|
457 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:814
|
458 |
msgid "Show Yahoo IM"
|
459 |
msgstr "Visa Yahoo IM"
|
460 |
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:818
|
462 |
msgid "Show Jabber / Google Talk"
|
463 |
msgstr "Visa Jabber / Google Talk"
|
464 |
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:822
|
466 |
msgid "Show Biographical Info"
|
467 |
msgstr ""
|
468 |
|
491 |
msgstr "Smeknamn"
|
492 |
|
493 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
496 |
msgid "Website"
|
497 |
msgstr "Webbsajt"
|
498 |
|
512 |
msgid "Biographical Info"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:727
|
516 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
|
517 |
msgid "Fields"
|
518 |
msgstr "Fält"
|
519 |
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
|
522 |
msgid "A&U Extended"
|
523 |
msgstr "F&A Utökat"
|
524 |
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:732
|
526 |
msgid "Users Extended"
|
527 |
msgstr "Extra fält för användare"
|
528 |
|
540 |
msgid "File '%s' is not an image."
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
544 |
+
#, fuzzy
|
545 |
+
msgid "Delete the file"
|
546 |
+
msgstr "Ta bort bild"
|
547 |
+
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
549 |
+
#, fuzzy
|
550 |
+
msgid "Update the file"
|
551 |
+
msgstr "Uppdatra bild"
|
552 |
+
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
554 |
+
msgid "Update the picture"
|
555 |
+
msgstr "Uppdatra bild"
|
556 |
+
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
558 |
+
msgid "Picture URL:"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:38
|
562 |
#, php-format
|
563 |
msgid "New user registration on your site %s:"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:39
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:50
|
568 |
#, fuzzy, php-format
|
569 |
msgid "Username: %s"
|
570 |
msgstr "Användarnamn"
|
571 |
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:40
|
573 |
#, fuzzy, php-format
|
574 |
msgid "E-mail: %s"
|
575 |
msgstr "e-post: %s"
|
576 |
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
578 |
#, php-format
|
579 |
msgid "[%s] New User Registration"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:51
|
583 |
#, php-format
|
584 |
msgid "Password: %s"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
588 |
#, php-format
|
589 |
msgid "[%s] Your username and password"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:91
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:97
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:109
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:115
|
596 |
#, php-format
|
597 |
msgid "%s: %s"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:189
|
601 |
#, php-format
|
602 |
msgid ""
|
603 |
"To activate your user, please click the following link:\n"
|
608 |
"\n"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:204
|
612 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
613 |
msgid "Your account is now active!"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
|
617 |
#, php-format
|
618 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:207
|
622 |
msgid "An error occurred during the activation"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
626 |
#, fuzzy
|
627 |
msgid "Username:"
|
628 |
msgstr "Användarnamn"
|
629 |
|
630 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
|
631 |
msgid "Password:"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:226
|
635 |
msgid "Invalid activation key."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:229
|
639 |
msgid "The site is already active."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:248
|
643 |
msgid "Could not create user"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
647 |
msgid "That username is already activated."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:279
|
651 |
msgid "That username is currently reserved but may be available in a couple of days."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:282
|
655 |
msgid "username and email used"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
659 |
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."
|
660 |
msgstr ""
|
661 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
662 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
663 |
msgid "Add field"
|
664 |
msgstr "Lägg till fält"
|
680 |
msgstr "Ändra ordning"
|
681 |
|
682 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
683 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
|
684 |
msgid "Min length"
|
685 |
msgstr "Min. längd"
|
686 |
|
687 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
688 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1041
|
689 |
msgid "Exact length"
|
690 |
msgstr "Exakt längd"
|
691 |
|
692 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1042
|
694 |
msgid "Max length"
|
695 |
msgstr "Max. längd"
|
696 |
|
720 |
msgstr "korrekt raderade"
|
721 |
|
722 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
|
724 |
msgid "Min size"
|
725 |
msgstr "Min. storlek"
|
726 |
|
727 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
|
728 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1033
|
729 |
msgid "Exact size"
|
730 |
msgstr "Exakt storlek"
|
731 |
|
732 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1034
|
734 |
msgid "Max size"
|
735 |
msgstr "Max. storlek"
|
736 |
|
805 |
msgid "Name inserted is just in the database, change to another one"
|
806 |
msgstr "Namnet du valt är redan i bruk, välj ett annat"
|
807 |
|
808 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
809 |
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."
|
810 |
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."
|
811 |
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
813 |
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'"
|
814 |
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."
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
817 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
818 |
msgstr "<strong>drop-down</strong>: Du måste ange alla alternativ i etikett t.ex: Etikett/värde1,värde2,värde3"
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
|
821 |
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"
|
822 |
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."
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
|
825 |
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)"
|
826 |
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)."
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
829 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
830 |
msgstr "Med <strong>registration-datum</strong>: <em>LIKA MED</em> betyder datum- och tidsformat."
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
|
833 |
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"
|
834 |
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."
|
835 |
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
|
837 |
#, fuzzy
|
838 |
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"
|
839 |
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."
|
840 |
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
842 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
844 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1475
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
847 |
msgid "Name"
|
848 |
msgstr "Namn"
|
849 |
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:643
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
854 |
msgid "Value"
|
855 |
msgstr "Värde"
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
860 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1071
|
861 |
msgid "Type"
|
862 |
msgstr "Typ"
|
863 |
|
864 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:665
|
866 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1093
|
868 |
msgid "Label"
|
869 |
msgstr "Etikett"
|
870 |
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
872 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
874 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1096
|
|
|
875 |
msgid "Description"
|
876 |
msgstr "Beskrivning"
|
877 |
|
878 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
|
879 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
880 |
msgid "Rules"
|
881 |
msgstr "Regler"
|
882 |
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:636
|
884 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:826
|
885 |
msgid "Actions"
|
886 |
msgstr "Åtgärder"
|
887 |
|
888 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
889 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1087
|
890 |
msgid "Fieldset"
|
891 |
msgstr "Fältsektion"
|
892 |
|
893 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
894 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1110
|
895 |
msgid "Can be empty"
|
896 |
msgstr "Kan vara töm"
|
897 |
|
898 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
899 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
|
900 |
msgid "Check for E-mail syntax"
|
901 |
msgstr "Kontrollera epostadressen"
|
902 |
|
903 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
|
904 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
905 |
msgid "Can be modified"
|
906 |
msgstr "Kan ändras"
|
907 |
|
908 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:683
|
909 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
910 |
msgid "Can be modified only if empty"
|
911 |
msgstr "Kan ändras endast om fältet är tomt"
|
912 |
|
913 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
|
914 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1116
|
915 |
msgid "Can be modified only by admin"
|
916 |
msgstr "Kan endast ändras av en administratör"
|
917 |
|
918 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
|
920 |
msgid "Can be modified only by admin or if empty"
|
921 |
msgstr "Kan ändras endast av en administratör eller om fältet är tomt"
|
922 |
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
|
924 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
925 |
msgid "Cannot be modified"
|
926 |
msgstr "Kan inte ändras"
|
927 |
|
928 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
929 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1123
|
930 |
msgid "Should be equal TO"
|
931 |
msgstr "Skall vara LIKA MED"
|
932 |
|
933 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:696
|
934 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1125
|
935 |
msgid "Case sensitive"
|
936 |
msgstr "Skiftlägeskänslig"
|
937 |
|
938 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:699
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
940 |
msgid "Regular Expression"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
|
944 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
945 |
msgid "Show the field in the registration"
|
946 |
msgstr "Visa fält vid registrering"
|
947 |
|
948 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
|
949 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
|
950 |
msgid "Show the field in User's profile"
|
951 |
msgstr "Visa fält i Användarprofil"
|
952 |
|
953 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
|
954 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
955 |
msgid "Show the field in A&U Extended menu"
|
956 |
msgstr "Visa fält i menyn F&A Utökat"
|
957 |
|
958 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
|
959 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1146
|
960 |
#, fuzzy
|
961 |
msgid "Show the field in the search engine"
|
962 |
msgstr "Visa fält vid registrering"
|
963 |
|
964 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
966 |
#, fuzzy
|
967 |
msgid "Show the field in the blog"
|
968 |
msgstr "Visa fält vid registrering"
|
969 |
|
970 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
971 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1152
|
972 |
#, fuzzy
|
973 |
msgid "Show the field if the role is at least:"
|
974 |
msgstr "Visa fält vid registrering"
|
975 |
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
977 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1154
|
978 |
msgid "Anonymous"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
|
982 |
msgid "Clear"
|
983 |
msgstr "Nollställ"
|
984 |
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
986 |
msgid "Invert selection"
|
987 |
msgstr "Omvänd markering"
|
988 |
|
989 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:788
|
990 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
991 |
msgstr "Är du säker på at du vill ta bort detta fält och all ev data som matats in?"
|
992 |
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:794
|
994 |
msgid "WordPress Fields"
|
995 |
msgstr "WordPress-fält"
|
996 |
|
997 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
|
998 |
msgid "None!"
|
999 |
msgstr "Ingen!"
|
1000 |
|
1001 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1053
|
1003 |
msgid "Order"
|
1004 |
msgstr "Ordningsföljd"
|
1005 |
|
1006 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1165
|
1007 |
msgid "Reset"
|
1008 |
msgstr "Nollställ"
|
1009 |
|
1010 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1250
|
1011 |
#, fuzzy
|
1012 |
msgid "select"
|
1013 |
msgstr "Ta bort"
|
1014 |
|
1015 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1353
|
1016 |
#, php-format
|
1017 |
msgid "Users Matching \"%s\""
|
1018 |
msgstr "Användare som Matchar \"%s\""
|
1019 |
|
1020 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
1021 |
msgid "Users Extended List"
|
1022 |
msgstr "Lista med extra fält för användaren"
|
1023 |
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1359
|
1025 |
msgid "Authors & Users Extended List"
|
1026 |
msgstr "Lista över författare & användare (utökat)"
|
1027 |
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1029 |
#, php-format
|
1030 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1410
|
1034 |
msgid "Search Users"
|
1035 |
msgstr "Sök Användare"
|
1036 |
|
1037 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1436
|
1038 |
msgid "« Back to All Users"
|
1039 |
msgstr "« Tillbaka till Alla Användare"
|
1040 |
|
1041 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
1042 |
msgid "Users per page"
|
1043 |
msgstr "Användare per sida"
|
1044 |
|
1045 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
1046 |
msgid "Apply"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1470
|
1050 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
1051 |
msgid "Username"
|
1052 |
msgstr "Användarnamn"
|
1053 |
|
1054 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1480
|
1055 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
1056 |
msgid "E-mail"
|
1057 |
msgstr "E-post"
|
1058 |
|
1059 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1485
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
1061 |
msgid "Role"
|
1062 |
msgstr "Roll"
|
1063 |
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1495
|
1065 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
1066 |
msgid "Posts"
|
1067 |
msgstr "Postningar"
|
1068 |
|
1069 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1605
|
1070 |
msgid "View posts by this author"
|
1071 |
msgstr "Visa postningar av dessa skribent"
|
1072 |
|
1073 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
|
1074 |
#, php-format
|
1075 |
msgid "e-mail: %s"
|
1076 |
msgstr "e-post: %s"
|
readme.txt
CHANGED
@@ -51,8 +51,8 @@ WordPress and WordPress MultiSite per-blog registration:
|
|
51 |
2. "Settings -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
|
52 |
|
53 |
Wordpress MultiSite unique registration:
|
54 |
-
1. "
|
55 |
-
2. "
|
56 |
|
57 |
= Rules are: =
|
58 |
|
@@ -113,7 +113,7 @@ There are two supported ways of using this plug-in under WordPress MultiSite:
|
|
113 |
Every blog will have shared registration page and only the Super Admin can change it.
|
114 |
* unpack the package under 'wp-content/mu-plugins' directory (if this directory does not exist, create it);
|
115 |
* be sure that cimy_user_extra_fields.php is outside Cimy folder (move it if necessary);
|
116 |
-
* go to "
|
117 |
|
118 |
2. Per-Blog registration
|
119 |
If you want that every single Blog can define its own Extra Fields then you should choose this installation.
|
51 |
2. "Settings -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
|
52 |
|
53 |
Wordpress MultiSite unique registration:
|
54 |
+
1. "Super Admin -> Users Extended" - lets you show users lists with the new fields that are created
|
55 |
+
2. "Super Admin -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
|
56 |
|
57 |
= Rules are: =
|
58 |
|
113 |
Every blog will have shared registration page and only the Super Admin can change it.
|
114 |
* unpack the package under 'wp-content/mu-plugins' directory (if this directory does not exist, create it);
|
115 |
* be sure that cimy_user_extra_fields.php is outside Cimy folder (move it if necessary);
|
116 |
+
* go to "Super Admin -> Cimy User Extra Fields", press "Fix the problem" button and confirm.
|
117 |
|
118 |
2. Per-Blog registration
|
119 |
If you want that every single Blog can define its own Extra Fields then you should choose this installation.
|
securimage/securimage_show_captcha.php
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
require_once 'securimage.php';
|
4 |
+
|
5 |
+
$img = new securimage();
|
6 |
+
|
7 |
+
// $img->image_width = 278;
|
8 |
+
$img->image_width = 250;
|
9 |
+
$img->image_height = 80;
|
10 |
+
// $img->ttf_file = 'AHGBold.ttf';
|
11 |
+
$img->perturbation = 0.85;
|
12 |
+
$img->image_bg_color = new Securimage_Color(0x0, 0x0, 0x0);
|
13 |
+
$img->text_color = new Securimage_Color(0xff, 0xff, 0xff);
|
14 |
+
$img->text_transparency_percentage = 10;
|
15 |
+
$img->use_transparent_text = true;
|
16 |
+
$img->text_angle_minimum = -10;
|
17 |
+
$img->text_angle_maximum = 10;
|
18 |
+
$img->num_lines = 0;
|
19 |
+
$img->line_color = new Securimage_Color(0xff, 0xaff, 0xff);
|
20 |
+
|
21 |
+
$img->show('backgrounds/bg6.png');
|