Version Description
Download this release
Release Info
Developer | Cimmo |
Plugin | Cimy User Extra Fields |
Version | 2.5.2 |
Comparing to | |
See all releases |
Code changes from version 2.5.1 to 2.5.2
- README_OFFICIAL.txt +8 -0
- cimy_uef_admin.php +15 -0
- cimy_uef_email_handler.php +8 -1
- cimy_uef_functions.php +39 -0
- cimy_uef_init.php +5 -4
- cimy_uef_register.php +6 -6
- cimy_user_extra_fields.php +2 -2
- langs/cimy_uef-ar.mo +0 -0
- langs/cimy_uef-ar.po +71 -66
- langs/cimy_uef-be_BY.mo +0 -0
- langs/cimy_uef-be_BY.po +71 -66
- langs/cimy_uef-bg_BG.mo +0 -0
- langs/cimy_uef-bg_BG.po +71 -66
- langs/cimy_uef-da_DK.mo +0 -0
- langs/cimy_uef-da_DK.po +71 -66
- langs/cimy_uef-de_DE.mo +0 -0
- langs/cimy_uef-de_DE.po +71 -66
- langs/cimy_uef-es_ES.mo +0 -0
- langs/cimy_uef-es_ES.po +71 -66
- langs/cimy_uef-fr_FR.mo +0 -0
- langs/cimy_uef-fr_FR.po +71 -66
- langs/cimy_uef-it_IT.mo +0 -0
- langs/cimy_uef-it_IT.po +72 -67
- langs/cimy_uef-pl_PL.mo +0 -0
- langs/cimy_uef-pl_PL.po +71 -66
- langs/cimy_uef-pt_BR.mo +0 -0
- langs/cimy_uef-pt_BR.po +71 -66
- langs/cimy_uef-ru_RU.mo +0 -0
- langs/cimy_uef-ru_RU.po +71 -66
- langs/cimy_uef-sv_SE.mo +0 -0
- langs/cimy_uef-sv_SE.po +71 -66
- langs/cimy_uef-uk.mo +0 -0
- langs/cimy_uef-uk.po +71 -66
- readme.txt +1 -1
README_OFFICIAL.txt
CHANGED
@@ -627,6 +627,14 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
|
|
627 |
|
628 |
|
629 |
CHANGELOG:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
v2.5.1 - 06/05/2013
|
631 |
- Updated Securimage Captcha to v3.5.0
|
632 |
- Fixed captcha check was performed on /wp-admin/user-new.php page even without a captcha showed (MS only) (thanks to KZeni)
|
627 |
|
628 |
|
629 |
CHANGELOG:
|
630 |
+
v2.5.2 - 03/06/2013
|
631 |
+
- Added support for Theme My Login v6.3.x
|
632 |
+
- Fixed Users Extended page is blank when the WordPress installation hosts a lot (10.000+) of users (thanks to mightypixel, eArtboard and more)
|
633 |
+
- Fixed cimy_uef_register.css file inclusion does not happen (MS only) (introduced in v2.5.0)
|
634 |
+
- Fixed strlen doesn't count correctly special accented characters, changed to mb_strlen (thanks to Batischev Oleg for the patch)
|
635 |
+
- Fixed user activation email's subject doesn't get translated (non-MS only) (thanks to Torstein Knutsen for the patch)
|
636 |
+
- Updated Italian translation
|
637 |
+
|
638 |
v2.5.1 - 06/05/2013
|
639 |
- Updated Securimage Captcha to v3.5.0
|
640 |
- Fixed captcha check was performed on /wp-admin/user-new.php page even without a captcha showed (MS only) (thanks to KZeni)
|
cimy_uef_admin.php
CHANGED
@@ -1108,8 +1108,15 @@ function cimy_admin_users_list_page() {
|
|
1108 |
|
1109 |
$usersearch = isset($_REQUEST['s']) ? $_REQUEST['s'] : '';
|
1110 |
$role = isset($_REQUEST['role']) ? $_REQUEST['role'] : '';
|
|
|
|
|
|
|
|
|
|
|
|
|
1111 |
|
1112 |
$args = array(
|
|
|
1113 |
'role' => $role,
|
1114 |
'search' => $usersearch,
|
1115 |
'fields' => 'all_with_meta',
|
@@ -1210,8 +1217,16 @@ function cimy_admin_users_list_page() {
|
|
1210 |
|
1211 |
$usersearch = isset($_REQUEST['s']) ? $_REQUEST['s'] : '';
|
1212 |
$role = isset($_REQUEST['role']) ? $_REQUEST['role'] : '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1213 |
|
1214 |
$args = array(
|
|
|
1215 |
'role' => $role,
|
1216 |
'search' => $usersearch,
|
1217 |
'fields' => 'all_with_meta'
|
1108 |
|
1109 |
$usersearch = isset($_REQUEST['s']) ? $_REQUEST['s'] : '';
|
1110 |
$role = isset($_REQUEST['role']) ? $_REQUEST['role'] : '';
|
1111 |
+
if (isset($_POST["cimy_uef_users_per_page"])) {
|
1112 |
+
$users_per_page = intval($_POST["cimy_uef_users_per_page"]);
|
1113 |
+
if ($user = wp_get_current_user())
|
1114 |
+
update_user_meta($user->ID, 'users_network_per_page', $users_per_page);
|
1115 |
+
}
|
1116 |
+
$users_per_page = $this->get_items_per_page( 'users_network_per_page' );
|
1117 |
|
1118 |
$args = array(
|
1119 |
+
'number' => $users_per_page,
|
1120 |
'role' => $role,
|
1121 |
'search' => $usersearch,
|
1122 |
'fields' => 'all_with_meta',
|
1217 |
|
1218 |
$usersearch = isset($_REQUEST['s']) ? $_REQUEST['s'] : '';
|
1219 |
$role = isset($_REQUEST['role']) ? $_REQUEST['role'] : '';
|
1220 |
+
$per_page = ( $this->is_site_users ) ? 'site_users_network_per_page' : 'users_per_page';
|
1221 |
+
if (isset($_POST["cimy_uef_users_per_page"])) {
|
1222 |
+
$users_per_page = intval($_POST["cimy_uef_users_per_page"]);
|
1223 |
+
if ($user = wp_get_current_user())
|
1224 |
+
update_user_meta($user->ID, $per_page, $users_per_page);
|
1225 |
+
}
|
1226 |
+
$users_per_page = $this->get_items_per_page( $per_page );
|
1227 |
|
1228 |
$args = array(
|
1229 |
+
'number' => $users_per_page,
|
1230 |
'role' => $role,
|
1231 |
'search' => $usersearch,
|
1232 |
'fields' => 'all_with_meta'
|
cimy_uef_email_handler.php
CHANGED
@@ -210,7 +210,14 @@ function cimy_signup_user_notification($user, $user_email, $key, $meta = '') {
|
|
210 |
$message_headers = "From: \"{$from_name}\" <{$admin_email}>\n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n";
|
211 |
$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", $cimy_uef_domain) ), site_url( "wp-login.php?cimy_key=$key$redirect_to" ), $key );
|
212 |
// TODO: Don't hard code activation link.
|
213 |
-
$subject = sprintf(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
wp_mail($user_email, $subject, $message, $message_headers);
|
215 |
return true;
|
216 |
}
|
210 |
$message_headers = "From: \"{$from_name}\" <{$admin_email}>\n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n";
|
211 |
$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", $cimy_uef_domain) ), site_url( "wp-login.php?cimy_key=$key$redirect_to" ), $key );
|
212 |
// TODO: Don't hard code activation link.
|
213 |
+
$subject = sprintf(
|
214 |
+
apply_filters('wpmu_signup_user_notification_subject',
|
215 |
+
__('[%1$s] Activate %2$s', $cimy_uef_domain),
|
216 |
+
$user, $user_email, $key, $meta
|
217 |
+
),
|
218 |
+
$from_name,
|
219 |
+
$user
|
220 |
+
);
|
221 |
wp_mail($user_email, $subject, $message, $message_headers);
|
222 |
return true;
|
223 |
}
|
cimy_uef_functions.php
CHANGED
@@ -953,3 +953,42 @@ function cimy_wpml_unregister_string($name) {
|
|
953 |
if (function_exists('icl_unregister_string'))
|
954 |
icl_unregister_string($cimy_uef_name, $name);
|
955 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
953 |
if (function_exists('icl_unregister_string'))
|
954 |
icl_unregister_string($cimy_uef_name, $name);
|
955 |
}
|
956 |
+
|
957 |
+
/**
|
958 |
+
* @since 2.5.2
|
959 |
+
* @return true on WordPress registration page
|
960 |
+
*/
|
961 |
+
function cimy_uef_is_register_page() {
|
962 |
+
if (cimy_uef_is_theme_my_login_register_page())
|
963 |
+
return true;
|
964 |
+
$script_file = end(explode('/', $_SERVER['SCRIPT_NAME']));
|
965 |
+
if (!is_multisite() && stripos($script_file, "wp-login.php") !== false && !empty($_GET['action']) && $_GET['action'] == 'register')
|
966 |
+
return true;
|
967 |
+
else if (is_multisite() && stripos($script_file, "wp-signup.php") !== false)
|
968 |
+
return true;
|
969 |
+
return false;
|
970 |
+
}
|
971 |
+
|
972 |
+
/**
|
973 |
+
* @since 2.5.2
|
974 |
+
* @return true on Themed My Login - Themed Registration page
|
975 |
+
*/
|
976 |
+
function cimy_uef_is_theme_my_login_register_page() {
|
977 |
+
// Theme My Login <= v6.2.x
|
978 |
+
if (!empty($GLOBALS['theme_my_login']) && $GLOBALS['theme_my_login']->is_login_page())
|
979 |
+
return true;
|
980 |
+
// Theme My Login >= v6.3.0
|
981 |
+
if (function_exists('Theme_My_Login') && Theme_My_Login::is_tml_page('register'))
|
982 |
+
return true;
|
983 |
+
return false;
|
984 |
+
}
|
985 |
+
|
986 |
+
/**
|
987 |
+
* @since 2.5.2
|
988 |
+
* @return true on Themed My Login - Themed Profiles pages
|
989 |
+
*/
|
990 |
+
function cimy_uef_is_theme_my_login_profile_page() {
|
991 |
+
if (!empty($GLOBALS['theme_my_login']) || function_exists('Theme_My_Login'))
|
992 |
+
return defined('IS_PROFILE_PAGE') && constant('IS_PROFILE_PAGE');
|
993 |
+
return false;
|
994 |
+
}
|
cimy_uef_init.php
CHANGED
@@ -66,18 +66,19 @@ function cimy_uef_init_upload_js() {
|
|
66 |
|
67 |
function cimy_uef_theme_my_login_fix() {
|
68 |
// Theme My Login spam with its css _all_ pages, we like it cleaner thanks!
|
|
|
69 |
if (!empty($GLOBALS['theme_my_login'])) {
|
70 |
if ($GLOBALS['theme_my_login']->is_login_page())
|
71 |
cimy_uef_register_css();
|
72 |
-
// Themed profile
|
73 |
-
if (defined('IS_PROFILE_PAGE') && constant('IS_PROFILE_PAGE'))
|
74 |
-
cimy_uef_admin_profile_init_js();
|
75 |
}
|
|
|
|
|
|
|
76 |
}
|
77 |
|
78 |
function cimy_uef_register_css() {
|
79 |
global $cuef_css_webpath;
|
80 |
-
if (
|
81 |
return;
|
82 |
wp_register_style("cimy_uef_register", $cuef_css_webpath."/cimy_uef_register.css", false, false);
|
83 |
wp_enqueue_style("cimy_uef_register");
|
66 |
|
67 |
function cimy_uef_theme_my_login_fix() {
|
68 |
// Theme My Login spam with its css _all_ pages, we like it cleaner thanks!
|
69 |
+
// Seems not needed any longer for TML >= 6.3.x
|
70 |
if (!empty($GLOBALS['theme_my_login'])) {
|
71 |
if ($GLOBALS['theme_my_login']->is_login_page())
|
72 |
cimy_uef_register_css();
|
|
|
|
|
|
|
73 |
}
|
74 |
+
// Theme My Login - Themed Profiles module
|
75 |
+
if (cimy_uef_is_theme_my_login_profile_page())
|
76 |
+
cimy_uef_admin_profile_init_js();
|
77 |
}
|
78 |
|
79 |
function cimy_uef_register_css() {
|
80 |
global $cuef_css_webpath;
|
81 |
+
if (!cimy_uef_is_register_page())
|
82 |
return;
|
83 |
wp_register_style("cimy_uef_register", $cuef_css_webpath."/cimy_uef_register.css", false, false);
|
84 |
wp_enqueue_style("cimy_uef_register");
|
cimy_uef_register.php
CHANGED
@@ -564,7 +564,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
564 |
}
|
565 |
}
|
566 |
else {
|
567 |
-
if (
|
568 |
|
569 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn’t have length less than', $cimy_uef_domain).' '.$minlen.'.');
|
570 |
}
|
@@ -582,7 +582,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
582 |
}
|
583 |
}
|
584 |
else {
|
585 |
-
if (
|
586 |
|
587 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn’t have length different than', $cimy_uef_domain).' '.$exactlen.'.');
|
588 |
}
|
@@ -599,7 +599,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
599 |
}
|
600 |
}
|
601 |
else {
|
602 |
-
if (
|
603 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn’t have length more than', $cimy_uef_domain).' '.$maxlen.'.');
|
604 |
}
|
605 |
}
|
@@ -657,7 +657,7 @@ function cimy_registration_captcha_check($user_login, $user_email, $errors) {
|
|
657 |
|
658 |
function cimy_uef_sanitize_username($username, $raw_username, $strict) {
|
659 |
$options = cimy_get_options();
|
660 |
-
if (!in_array("username", $options["wp_hidden_fields"]) && !empty($_POST['user_email']) && is_email($_POST['user_email']) &&
|
661 |
$username = $_POST['user_email'];
|
662 |
}
|
663 |
return $username;
|
@@ -665,7 +665,7 @@ function cimy_uef_sanitize_username($username, $raw_username, $strict) {
|
|
665 |
|
666 |
function cimy_uef_validate_username($valid, $username) {
|
667 |
$options = cimy_get_options();
|
668 |
-
if (!in_array("username", $options["wp_hidden_fields"]) && empty($username) &&
|
669 |
return true;
|
670 |
}
|
671 |
return $valid;
|
@@ -1076,7 +1076,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
1076 |
$obj_id = ' id="'.$unique_id.'"';
|
1077 |
|
1078 |
// tabindex not used in MU, WordPress 3.5+ and Theme My Login dropping...
|
1079 |
-
if (is_multisite() || cimy_is_at_least_wordpress35() || (
|
1080 |
$obj_tabindex = "";
|
1081 |
else {
|
1082 |
$obj_tabindex = ' tabindex="'.strval($tabindex).'"';
|
564 |
}
|
565 |
}
|
566 |
else {
|
567 |
+
if (mb_strlen($value) < $minlen) {
|
568 |
|
569 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn’t have length less than', $cimy_uef_domain).' '.$minlen.'.');
|
570 |
}
|
582 |
}
|
583 |
}
|
584 |
else {
|
585 |
+
if (mb_strlen($value) != $exactlen) {
|
586 |
|
587 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn’t have length different than', $cimy_uef_domain).' '.$exactlen.'.');
|
588 |
}
|
599 |
}
|
600 |
}
|
601 |
else {
|
602 |
+
if (mb_strlen($value) > $maxlen) {
|
603 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn’t have length more than', $cimy_uef_domain).' '.$maxlen.'.');
|
604 |
}
|
605 |
}
|
657 |
|
658 |
function cimy_uef_sanitize_username($username, $raw_username, $strict) {
|
659 |
$options = cimy_get_options();
|
660 |
+
if (!in_array("username", $options["wp_hidden_fields"]) && !empty($_POST['user_email']) && is_email($_POST['user_email']) && cimy_uef_is_register_page()) {
|
661 |
$username = $_POST['user_email'];
|
662 |
}
|
663 |
return $username;
|
665 |
|
666 |
function cimy_uef_validate_username($valid, $username) {
|
667 |
$options = cimy_get_options();
|
668 |
+
if (!in_array("username", $options["wp_hidden_fields"]) && empty($username) && cimy_uef_is_register_page()) {
|
669 |
return true;
|
670 |
}
|
671 |
return $valid;
|
1076 |
$obj_id = ' id="'.$unique_id.'"';
|
1077 |
|
1078 |
// tabindex not used in MU, WordPress 3.5+ and Theme My Login dropping...
|
1079 |
+
if (is_multisite() || cimy_is_at_least_wordpress35() || cimy_uef_is_theme_my_login_register_page())
|
1080 |
$obj_tabindex = "";
|
1081 |
else {
|
1082 |
$obj_tabindex = ' tabindex="'.strval($tabindex).'"';
|
cimy_user_extra_fields.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Cimy User Extra Fields
|
4 |
Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Description: Add some useful fields to registration and user's info
|
6 |
-
Version: 2.5.
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
License: GPL2
|
@@ -160,7 +160,7 @@ require_once($cuef_plugin_dir.'/cimy_uef_profile.php');
|
|
160 |
add_action('admin_init', 'cimy_uef_admin_init');
|
161 |
|
162 |
$cimy_uef_name = "Cimy User Extra Fields";
|
163 |
-
$cimy_uef_version = "2.5.
|
164 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
165 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
166 |
|
3 |
Plugin Name: Cimy User Extra Fields
|
4 |
Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Description: Add some useful fields to registration and user's info
|
6 |
+
Version: 2.5.2
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
License: GPL2
|
160 |
add_action('admin_init', 'cimy_uef_admin_init');
|
161 |
|
162 |
$cimy_uef_name = "Cimy User Extra Fields";
|
163 |
+
$cimy_uef_version = "2.5.2";
|
164 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
165 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
166 |
|
langs/cimy_uef-ar.mo
CHANGED
Binary file
|
langs/cimy_uef-ar.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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Mamoun Elkheir <krikabat@hotmail.com>\n"
|
9 |
"Language: \n"
|
@@ -53,14 +53,14 @@ msgid "isn’t correct"
|
|
53 |
msgstr "غير صحيحة"
|
54 |
|
55 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
msgid "YES"
|
59 |
msgstr "نعم"
|
60 |
|
61 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
msgid "NO"
|
65 |
msgstr "لا"
|
66 |
|
@@ -105,56 +105,56 @@ msgstr "لا يمكن أن يزيد طولها عن"
|
|
105 |
msgid "Typed code is not correct."
|
106 |
msgstr "الشفرة المكتوبة غير صحيحة."
|
107 |
|
108 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
112 |
msgid "Username"
|
113 |
msgstr "اسم المستخدم"
|
114 |
|
115 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
msgid "E-mail"
|
119 |
msgstr "البريد الإلكتروني"
|
120 |
|
121 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
msgid "Please upload a file with one of the following extensions"
|
124 |
msgstr "الرجاء تحميل ملف بأحد الامتدادات الآتية"
|
125 |
|
126 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
127 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
129 |
msgid "Please upload an image with one of the following extensions"
|
130 |
msgstr "الرجاء تحميل صورة بأحد الامتدادات الآتية"
|
131 |
|
132 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
133 |
msgid "Strength indicator"
|
134 |
msgstr "مؤشر القوة"
|
135 |
|
136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
137 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
138 |
msgstr "تلميح: كلمة المرور يجب أن يكون طولها على الأقل 7 أحرف. ولجعلها أقوى، استخدم حروفاً متنوعة وأرقاماً ورموزاً مثل ! \" ? $ % ^ & )."
|
139 |
|
140 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
141 |
msgid "Change image"
|
142 |
msgstr "تغيير الصورة"
|
143 |
|
144 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
145 |
msgid "Insert the code:"
|
146 |
msgstr "أدخل الشفرة:"
|
147 |
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
150 |
msgid "Confirm your registration"
|
151 |
msgstr "تأكيد تسجيلك"
|
152 |
|
153 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
154 |
msgid "A password will be e-mailed to you."
|
155 |
msgstr "سيتم إرسال كلمة المرور على بريدك الإلكتروني."
|
156 |
|
157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
158 |
msgid "← Back"
|
159 |
msgstr "← إلى الخلف"
|
160 |
|
@@ -349,8 +349,8 @@ msgstr "بخصوص <strong>ملف</strong>: يمكن تزويد ملف افتر
|
|
349 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
350 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
351 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
msgid "Name"
|
355 |
msgstr "الاسم"
|
356 |
|
@@ -358,8 +358,8 @@ msgstr "الاسم"
|
|
358 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
359 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
360 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
361 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
msgid "Value"
|
364 |
msgstr "القيمة"
|
365 |
|
@@ -396,8 +396,8 @@ msgstr "الإجراءات"
|
|
396 |
|
397 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
398 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
msgid "Fieldset"
|
402 |
msgstr "Fieldset"
|
403 |
|
@@ -518,8 +518,8 @@ msgid "WordPress Fields"
|
|
518 |
msgstr "حقول WordPress"
|
519 |
|
520 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
523 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
524 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
525 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
@@ -545,87 +545,87 @@ msgid "SUCCESSFUL"
|
|
545 |
msgstr "تم بنجاح"
|
546 |
|
547 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
549 |
msgid "select"
|
550 |
msgstr "اختيار"
|
551 |
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
553 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
554 |
msgid "Users per page"
|
555 |
msgstr "عدد المستخدمين في الصحفة"
|
556 |
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
559 |
msgid "Apply"
|
560 |
msgstr "تنفيذ"
|
561 |
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
563 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
564 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
565 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
566 |
msgid "Users Extended"
|
567 |
msgstr "Users Extneded"
|
568 |
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
570 |
#, php-format
|
571 |
msgid "Search results for “%s”"
|
572 |
msgstr "البحث عن نتائج تخص “%s”"
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
575 |
#, php-format
|
576 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
577 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
580 |
msgid "Search Users"
|
581 |
msgstr "البحث في المستخدمين"
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
585 |
msgid "Role"
|
586 |
msgstr "الوظيفة"
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
590 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
591 |
msgid "Website"
|
592 |
msgstr "الموقع"
|
593 |
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
596 |
msgid "Posts"
|
597 |
msgstr "المقالات"
|
598 |
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
600 |
msgid "View posts by this author"
|
601 |
msgstr "مشاهدة المقالات بواسطة هذا الكاتب"
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
604 |
msgid "Super Admin"
|
605 |
msgstr "المدير الشامل"
|
606 |
|
607 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
608 |
#, php-format
|
609 |
msgid "e-mail: %s"
|
610 |
msgstr "البريد الإلكتروني: %s"
|
611 |
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
613 |
msgid "Change"
|
614 |
msgstr "تغيير"
|
615 |
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
617 |
msgid "Update selected users"
|
618 |
msgstr "تحديث المستخدمين المختارين"
|
619 |
|
620 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
621 |
msgid "Update"
|
622 |
msgstr "تحديث"
|
623 |
|
624 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
625 |
msgid "OK"
|
626 |
msgstr "إمضاء"
|
627 |
|
628 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
629 |
msgid "Cancel"
|
630 |
msgstr "إلغاء"
|
631 |
|
@@ -635,7 +635,7 @@ msgid "New user registration on your site %s:"
|
|
635 |
msgstr "تسجيل مستخدم جديد في موقعك %s:"
|
636 |
|
637 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
638 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
639 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
640 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
641 |
#, php-format
|
@@ -682,52 +682,57 @@ msgstr ""
|
|
682 |
"بعد التفعيل، ستصلك رسالة أخرى فيها بيانات الدخول.\n"
|
683 |
"\n"
|
684 |
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
686 |
-
|
|
|
|
|
|
|
|
|
|
|
687 |
msgid "Your account is now active!"
|
688 |
msgstr "حسابك الآن فعال!"
|
689 |
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
691 |
#, php-format
|
692 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
693 |
msgstr "موقعك في <a href=\"%1$s\">%2$s</a> الآن مفعل. يمكنك الآن تسجيل الدخول في موقعك باستخدام اسم المستخدم المختار “%3$s”. الرجاء مراجعة بريدك الوارد في %4$s لمعرفة كلمة المرور وتعليمات الدخول. إذا لم تستلم رسالة الرجاء مراجعة مجلد البريد المزعج. إذا لم تستلم أيضاً رسالة فيه خلال ساعة، يمكنك <a href=\"%5$s\">استرجاع كلمة المرور</a></p>."
|
694 |
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
696 |
msgid "An error occurred during the activation"
|
697 |
msgstr "حدث خطأ خلال التفعيل"
|
698 |
|
699 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
700 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
701 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
702 |
#, php-format
|
703 |
msgid "Password: %s"
|
704 |
msgstr "كلمة المرور: %s"
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
707 |
msgid "Invalid activation key."
|
708 |
msgstr "مفتاح التفعيل غير صالح."
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
711 |
msgid "The site is already active."
|
712 |
msgstr "الموقع مفعل سلفاً."
|
713 |
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
715 |
msgid "Could not create user"
|
716 |
msgstr "لم يمكن إنشاء المستخدم"
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
719 |
msgid "That username is already activated."
|
720 |
msgstr "اسم المستخدم هذا مفعل سلفاً."
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
723 |
msgid "That username is currently reserved but may be available in a couple of days."
|
724 |
msgstr "اسم المستخدم هذا حالياً محجوز لكن ربما يصبح متوفراً خلال يومين."
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
727 |
msgid "username and email used"
|
728 |
msgstr "اسم المستخدم والبريد الإلكتروني مستخدمان"
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
731 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
732 |
msgstr "هذا البريد الإلكتروني مستخدم سلفاً. الرجاء مراجعة بريدك الإلكتروني لرسالة التفعليل. إذا لم تفعل شيئاً ستصبح متوفرة خلال يومين."
|
733 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 15:02-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-06-02 15:02-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Mamoun Elkheir <krikabat@hotmail.com>\n"
|
9 |
"Language: \n"
|
53 |
msgstr "غير صحيحة"
|
54 |
|
55 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
56 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
58 |
msgid "YES"
|
59 |
msgstr "نعم"
|
60 |
|
61 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
64 |
msgid "NO"
|
65 |
msgstr "لا"
|
66 |
|
105 |
msgid "Typed code is not correct."
|
106 |
msgstr "الشفرة المكتوبة غير صحيحة."
|
107 |
|
108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:722
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
111 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
112 |
msgid "Username"
|
113 |
msgstr "اسم المستخدم"
|
114 |
|
115 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:749
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
118 |
msgid "E-mail"
|
119 |
msgstr "البريد الإلكتروني"
|
120 |
|
121 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
123 |
msgid "Please upload a file with one of the following extensions"
|
124 |
msgstr "الرجاء تحميل ملف بأحد الامتدادات الآتية"
|
125 |
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
127 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
129 |
msgid "Please upload an image with one of the following extensions"
|
130 |
msgstr "الرجاء تحميل صورة بأحد الامتدادات الآتية"
|
131 |
|
132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
|
133 |
msgid "Strength indicator"
|
134 |
msgstr "مؤشر القوة"
|
135 |
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
137 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
138 |
msgstr "تلميح: كلمة المرور يجب أن يكون طولها على الأقل 7 أحرف. ولجعلها أقوى، استخدم حروفاً متنوعة وأرقاماً ورموزاً مثل ! \" ? $ % ^ & )."
|
139 |
|
140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1221
|
141 |
msgid "Change image"
|
142 |
msgstr "تغيير الصورة"
|
143 |
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
145 |
msgid "Insert the code:"
|
146 |
msgstr "أدخل الشفرة:"
|
147 |
|
148 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1296
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1298
|
150 |
msgid "Confirm your registration"
|
151 |
msgstr "تأكيد تسجيلك"
|
152 |
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1304
|
154 |
msgid "A password will be e-mailed to you."
|
155 |
msgstr "سيتم إرسال كلمة المرور على بريدك الإلكتروني."
|
156 |
|
157 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1312
|
158 |
msgid "← Back"
|
159 |
msgstr "← إلى الخلف"
|
160 |
|
349 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
350 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
351 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
354 |
msgid "Name"
|
355 |
msgstr "الاسم"
|
356 |
|
358 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
359 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
360 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
361 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
363 |
msgid "Value"
|
364 |
msgstr "القيمة"
|
365 |
|
396 |
|
397 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
398 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1199
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1290
|
401 |
msgid "Fieldset"
|
402 |
msgstr "Fieldset"
|
403 |
|
518 |
msgstr "حقول WordPress"
|
519 |
|
520 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
523 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
524 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
525 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
545 |
msgstr "تم بنجاح"
|
546 |
|
547 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1790
|
549 |
msgid "select"
|
550 |
msgstr "اختيار"
|
551 |
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1294
|
554 |
msgid "Users per page"
|
555 |
msgstr "عدد المستخدمين في الصحفة"
|
556 |
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1205
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1296
|
559 |
msgid "Apply"
|
560 |
msgstr "تنفيذ"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1370
|
563 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
564 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
565 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
566 |
msgid "Users Extended"
|
567 |
msgstr "Users Extneded"
|
568 |
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1378
|
570 |
#, php-format
|
571 |
msgid "Search results for “%s”"
|
572 |
msgstr "البحث عن نتائج تخص “%s”"
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1416
|
575 |
#, php-format
|
576 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
577 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
578 |
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
|
580 |
msgid "Search Users"
|
581 |
msgstr "البحث في المستخدمين"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1463
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
|
585 |
msgid "Role"
|
586 |
msgstr "الوظيفة"
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1468
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
|
590 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
591 |
msgid "Website"
|
592 |
msgstr "الموقع"
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1473
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
|
596 |
msgid "Posts"
|
597 |
msgstr "المقالات"
|
598 |
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
600 |
msgid "View posts by this author"
|
601 |
msgstr "مشاهدة المقالات بواسطة هذا الكاتب"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1621
|
604 |
msgid "Super Admin"
|
605 |
msgstr "المدير الشامل"
|
606 |
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1632
|
608 |
#, php-format
|
609 |
msgid "e-mail: %s"
|
610 |
msgstr "البريد الإلكتروني: %s"
|
611 |
|
612 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
613 |
msgid "Change"
|
614 |
msgstr "تغيير"
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1759
|
617 |
msgid "Update selected users"
|
618 |
msgstr "تحديث المستخدمين المختارين"
|
619 |
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
621 |
msgid "Update"
|
622 |
msgstr "تحديث"
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1795
|
625 |
msgid "OK"
|
626 |
msgstr "إمضاء"
|
627 |
|
628 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1796
|
629 |
msgid "Cancel"
|
630 |
msgstr "إلغاء"
|
631 |
|
635 |
msgstr "تسجيل مستخدم جديد في موقعك %s:"
|
636 |
|
637 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
638 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
639 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
640 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
641 |
#, php-format
|
682 |
"بعد التفعيل، ستصلك رسالة أخرى فيها بيانات الدخول.\n"
|
683 |
"\n"
|
684 |
|
685 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
686 |
+
#, php-format
|
687 |
+
msgid "[%1$s] Activate %2$s"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
|
691 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
692 |
msgid "Your account is now active!"
|
693 |
msgstr "حسابك الآن فعال!"
|
694 |
|
695 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
|
696 |
#, php-format
|
697 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
698 |
msgstr "موقعك في <a href=\"%1$s\">%2$s</a> الآن مفعل. يمكنك الآن تسجيل الدخول في موقعك باستخدام اسم المستخدم المختار “%3$s”. الرجاء مراجعة بريدك الوارد في %4$s لمعرفة كلمة المرور وتعليمات الدخول. إذا لم تستلم رسالة الرجاء مراجعة مجلد البريد المزعج. إذا لم تستلم أيضاً رسالة فيه خلال ساعة، يمكنك <a href=\"%5$s\">استرجاع كلمة المرور</a></p>."
|
699 |
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
701 |
msgid "An error occurred during the activation"
|
702 |
msgstr "حدث خطأ خلال التفعيل"
|
703 |
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
705 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
706 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
707 |
#, php-format
|
708 |
msgid "Password: %s"
|
709 |
msgstr "كلمة المرور: %s"
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
|
712 |
msgid "Invalid activation key."
|
713 |
msgstr "مفتاح التفعيل غير صالح."
|
714 |
|
715 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
716 |
msgid "The site is already active."
|
717 |
msgstr "الموقع مفعل سلفاً."
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
|
720 |
msgid "Could not create user"
|
721 |
msgstr "لم يمكن إنشاء المستخدم"
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
724 |
msgid "That username is already activated."
|
725 |
msgstr "اسم المستخدم هذا مفعل سلفاً."
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
|
728 |
msgid "That username is currently reserved but may be available in a couple of days."
|
729 |
msgstr "اسم المستخدم هذا حالياً محجوز لكن ربما يصبح متوفراً خلال يومين."
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
|
732 |
msgid "username and email used"
|
733 |
msgstr "اسم المستخدم والبريد الإلكتروني مستخدمان"
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
|
736 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
737 |
msgstr "هذا البريد الإلكتروني مستخدم سلفاً. الرجاء مراجعة بريدك الإلكتروني لرسالة التفعليل. إذا لم تفعل شيئاً ستصبح متوفرة خلال يومين."
|
738 |
|
langs/cimy_uef-be_BY.mo
CHANGED
Binary file
|
langs/cimy_uef-be_BY.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Web Geeks\n"
|
9 |
"Language: \n"
|
@@ -54,14 +54,14 @@ msgid "isn’t correct"
|
|
54 |
msgstr "не дакладна"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "ТАК"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "НЕ"
|
67 |
|
@@ -106,58 +106,58 @@ msgstr "мае даўжыню больш чым"
|
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Імя карыстача"
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
|
127 |
|
128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
|
133 |
|
134 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Змяніць парадак"
|
146 |
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
@@ -354,8 +354,8 @@ msgstr "З <strong>малюнкам(picture)</strong>: вы можаце пап
|
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
356 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
359 |
msgid "Name"
|
360 |
msgstr "Імя"
|
361 |
|
@@ -363,8 +363,8 @@ msgstr "Імя"
|
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
365 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
msgid "Value"
|
369 |
msgstr "Значэнне"
|
370 |
|
@@ -401,8 +401,8 @@ msgstr "Дзеянні"
|
|
401 |
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
403 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
406 |
#, fuzzy
|
407 |
msgid "Fieldset"
|
408 |
msgstr "Палі"
|
@@ -529,8 +529,8 @@ msgid "WordPress Fields"
|
|
529 |
msgstr "WordPress Fields"
|
530 |
|
531 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
536 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
@@ -556,23 +556,23 @@ msgid "SUCCESSFUL"
|
|
556 |
msgstr "ПАСПЯХОВА"
|
557 |
|
558 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
#, fuzzy
|
561 |
msgid "select"
|
562 |
msgstr "Выдаліць"
|
563 |
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
566 |
#, fuzzy
|
567 |
msgid "Users per page"
|
568 |
msgstr "Табліца дадзеных карыстачоў"
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
572 |
msgid "Apply"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
578 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
@@ -580,70 +580,70 @@ msgstr ""
|
|
580 |
msgid "Users Extended"
|
581 |
msgstr "Спіс Аўтараў і прасунутых карыстачоў"
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
#, php-format
|
585 |
msgid "Search results for “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
#, php-format
|
590 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
msgid "Search Users"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
#, fuzzy
|
600 |
msgid "Role"
|
601 |
msgstr "Кіравала"
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
605 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
606 |
msgid "Website"
|
607 |
msgstr "Адрас сайта"
|
608 |
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
611 |
msgid "Posts"
|
612 |
msgstr "Паведамленні"
|
613 |
|
614 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
615 |
msgid "View posts by this author"
|
616 |
msgstr "Прагледзець паведамленні гэтага аўтара"
|
617 |
|
618 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
619 |
msgid "Super Admin"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
623 |
#, php-format
|
624 |
msgid "e-mail: %s"
|
625 |
msgstr "e-mail: %s"
|
626 |
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
628 |
#, fuzzy
|
629 |
msgid "Change"
|
630 |
msgstr "Змяніць парадак"
|
631 |
|
632 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
633 |
#, fuzzy
|
634 |
msgid "Update selected users"
|
635 |
msgstr "Выдаліць абраныя палі"
|
636 |
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
638 |
#, fuzzy
|
639 |
msgid "Update"
|
640 |
msgstr "Абнавіць поле"
|
641 |
|
642 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
643 |
msgid "OK"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
647 |
msgid "Cancel"
|
648 |
msgstr ""
|
649 |
|
@@ -653,7 +653,7 @@ msgid "New user registration on your site %s:"
|
|
653 |
msgstr ""
|
654 |
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
657 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
658 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
659 |
#, fuzzy, php-format
|
@@ -694,52 +694,57 @@ msgid ""
|
|
694 |
"\n"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
698 |
-
|
|
|
|
|
|
|
|
|
|
|
699 |
msgid "Your account is now active!"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
703 |
#, php-format
|
704 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
708 |
msgid "An error occurred during the activation"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
712 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
713 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
714 |
#, php-format
|
715 |
msgid "Password: %s"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
719 |
msgid "Invalid activation key."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
723 |
msgid "The site is already active."
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
727 |
msgid "Could not create user"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
731 |
msgid "That username is already activated."
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
735 |
msgid "That username is currently reserved but may be available in a couple of days."
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
739 |
msgid "username and email used"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
743 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
744 |
msgstr ""
|
745 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 15:02-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-06-02 15:02-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Web Geeks\n"
|
9 |
"Language: \n"
|
54 |
msgstr "не дакладна"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
msgid "YES"
|
60 |
msgstr "ТАК"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
msgid "NO"
|
66 |
msgstr "НЕ"
|
67 |
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:722
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Імя карыстача"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:749
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1221
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Змяніць парадак"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1296
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1298
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1304
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1312
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
356 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
359 |
msgid "Name"
|
360 |
msgstr "Імя"
|
361 |
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
365 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
368 |
msgid "Value"
|
369 |
msgstr "Значэнне"
|
370 |
|
401 |
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
403 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1199
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1290
|
406 |
#, fuzzy
|
407 |
msgid "Fieldset"
|
408 |
msgstr "Палі"
|
529 |
msgstr "WordPress Fields"
|
530 |
|
531 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
536 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
556 |
msgstr "ПАСПЯХОВА"
|
557 |
|
558 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1790
|
560 |
#, fuzzy
|
561 |
msgid "select"
|
562 |
msgstr "Выдаліць"
|
563 |
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1294
|
566 |
#, fuzzy
|
567 |
msgid "Users per page"
|
568 |
msgstr "Табліца дадзеных карыстачоў"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1205
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1296
|
572 |
msgid "Apply"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1370
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
578 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
580 |
msgid "Users Extended"
|
581 |
msgstr "Спіс Аўтараў і прасунутых карыстачоў"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1378
|
584 |
#, php-format
|
585 |
msgid "Search results for “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1416
|
589 |
#, php-format
|
590 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
|
594 |
msgid "Search Users"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1463
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
|
599 |
#, fuzzy
|
600 |
msgid "Role"
|
601 |
msgstr "Кіравала"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1468
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
|
605 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
606 |
msgid "Website"
|
607 |
msgstr "Адрас сайта"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1473
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
|
611 |
msgid "Posts"
|
612 |
msgstr "Паведамленні"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
615 |
msgid "View posts by this author"
|
616 |
msgstr "Прагледзець паведамленні гэтага аўтара"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1621
|
619 |
msgid "Super Admin"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1632
|
623 |
#, php-format
|
624 |
msgid "e-mail: %s"
|
625 |
msgstr "e-mail: %s"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
628 |
#, fuzzy
|
629 |
msgid "Change"
|
630 |
msgstr "Змяніць парадак"
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1759
|
633 |
#, fuzzy
|
634 |
msgid "Update selected users"
|
635 |
msgstr "Выдаліць абраныя палі"
|
636 |
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
638 |
#, fuzzy
|
639 |
msgid "Update"
|
640 |
msgstr "Абнавіць поле"
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1795
|
643 |
msgid "OK"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1796
|
647 |
msgid "Cancel"
|
648 |
msgstr ""
|
649 |
|
653 |
msgstr ""
|
654 |
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
657 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
658 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
659 |
#, fuzzy, php-format
|
694 |
"\n"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
698 |
+
#, php-format
|
699 |
+
msgid "[%1$s] Activate %2$s"
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
704 |
msgid "Your account is now active!"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
|
708 |
#, php-format
|
709 |
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>."
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
713 |
msgid "An error occurred during the activation"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
717 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
718 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
719 |
#, php-format
|
720 |
msgid "Password: %s"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
|
724 |
msgid "Invalid activation key."
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
728 |
msgid "The site is already active."
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
|
732 |
msgid "Could not create user"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
736 |
msgid "That username is already activated."
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
|
740 |
msgid "That username is currently reserved but may be available in a couple of days."
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
|
744 |
msgid "username and email used"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
|
748 |
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."
|
749 |
msgstr ""
|
750 |
|
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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -54,14 +54,14 @@ msgid "isn’t correct"
|
|
54 |
msgstr "не е правилно"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "ДА"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "НЕ"
|
67 |
|
@@ -106,58 +106,58 @@ msgstr "не може да има дължина по-голяма от"
|
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Потребителско име"
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Моля качете снимка с някое от тези разширения"
|
127 |
|
128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Моля качете снимка с някое от тези разширения"
|
133 |
|
134 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Смени реда"
|
146 |
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
@@ -354,8 +354,8 @@ msgstr "Със <strong>picture</strong>: вие може да заместите
|
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
356 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
359 |
msgid "Name"
|
360 |
msgstr "Име"
|
361 |
|
@@ -363,8 +363,8 @@ msgstr "Име"
|
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
365 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
msgid "Value"
|
369 |
msgstr "Стойност"
|
370 |
|
@@ -401,8 +401,8 @@ msgstr "Действия"
|
|
401 |
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
403 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
406 |
#, fuzzy
|
407 |
msgid "Fieldset"
|
408 |
msgstr "Полета"
|
@@ -529,8 +529,8 @@ msgid "WordPress Fields"
|
|
529 |
msgstr "WordPress полета"
|
530 |
|
531 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
536 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
@@ -556,23 +556,23 @@ msgid "SUCCESSFUL"
|
|
556 |
msgstr "УСПЕХ"
|
557 |
|
558 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
#, fuzzy
|
561 |
msgid "select"
|
562 |
msgstr "Изтрий"
|
563 |
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
566 |
#, fuzzy
|
567 |
msgid "Users per page"
|
568 |
msgstr "Таблица с потребителски данни"
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
572 |
msgid "Apply"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
578 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
@@ -580,69 +580,69 @@ msgstr ""
|
|
580 |
msgid "Users Extended"
|
581 |
msgstr "Разширен списък с Автори & Потребители"
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
#, php-format
|
585 |
msgid "Search results for “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
#, php-format
|
590 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
msgid "Search Users"
|
595 |
msgstr "Търсене на потребители"
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
msgid "Role"
|
600 |
msgstr "Роля"
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
604 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
605 |
msgid "Website"
|
606 |
msgstr "Интернет сайт"
|
607 |
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
610 |
msgid "Posts"
|
611 |
msgstr "Постове"
|
612 |
|
613 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
614 |
msgid "View posts by this author"
|
615 |
msgstr "Виж постовете на този автор"
|
616 |
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
618 |
msgid "Super Admin"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
622 |
#, php-format
|
623 |
msgid "e-mail: %s"
|
624 |
msgstr "e-mail: %s"
|
625 |
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
627 |
#, fuzzy
|
628 |
msgid "Change"
|
629 |
msgstr "Смени реда"
|
630 |
|
631 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
632 |
#, fuzzy
|
633 |
msgid "Update selected users"
|
634 |
msgstr "Изтрий маркираните полета"
|
635 |
|
636 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
637 |
#, fuzzy
|
638 |
msgid "Update"
|
639 |
msgstr "Поднови поле"
|
640 |
|
641 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
642 |
msgid "OK"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
646 |
msgid "Cancel"
|
647 |
msgstr ""
|
648 |
|
@@ -652,7 +652,7 @@ msgid "New user registration on your site %s:"
|
|
652 |
msgstr ""
|
653 |
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
656 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
657 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
658 |
#, fuzzy, php-format
|
@@ -693,52 +693,57 @@ msgid ""
|
|
693 |
"\n"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
697 |
-
|
|
|
|
|
|
|
|
|
|
|
698 |
msgid "Your account is now active!"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
702 |
#, php-format
|
703 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
707 |
msgid "An error occurred during the activation"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
711 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
712 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
713 |
#, php-format
|
714 |
msgid "Password: %s"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
718 |
msgid "Invalid activation key."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
722 |
msgid "The site is already active."
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
726 |
msgid "Could not create user"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
730 |
msgid "That username is already activated."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
734 |
msgid "That username is currently reserved but may be available in a couple of days."
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
738 |
msgid "username and email used"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
742 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
743 |
msgstr ""
|
744 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 15:02-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-06-02 15:02-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"Language: \n"
|
54 |
msgstr "не е правилно"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
msgid "YES"
|
60 |
msgstr "ДА"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
msgid "NO"
|
66 |
msgstr "НЕ"
|
67 |
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:722
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Потребителско име"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:749
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Моля качете снимка с някое от тези разширения"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Моля качете снимка с някое от тези разширения"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1221
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Смени реда"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1296
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1298
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1304
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1312
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
356 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
359 |
msgid "Name"
|
360 |
msgstr "Име"
|
361 |
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
365 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
368 |
msgid "Value"
|
369 |
msgstr "Стойност"
|
370 |
|
401 |
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
403 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1199
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1290
|
406 |
#, fuzzy
|
407 |
msgid "Fieldset"
|
408 |
msgstr "Полета"
|
529 |
msgstr "WordPress полета"
|
530 |
|
531 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
536 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
556 |
msgstr "УСПЕХ"
|
557 |
|
558 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1790
|
560 |
#, fuzzy
|
561 |
msgid "select"
|
562 |
msgstr "Изтрий"
|
563 |
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1294
|
566 |
#, fuzzy
|
567 |
msgid "Users per page"
|
568 |
msgstr "Таблица с потребителски данни"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1205
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1296
|
572 |
msgid "Apply"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1370
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
578 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
580 |
msgid "Users Extended"
|
581 |
msgstr "Разширен списък с Автори & Потребители"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1378
|
584 |
#, php-format
|
585 |
msgid "Search results for “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1416
|
589 |
#, php-format
|
590 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
|
594 |
msgid "Search Users"
|
595 |
msgstr "Търсене на потребители"
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1463
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
|
599 |
msgid "Role"
|
600 |
msgstr "Роля"
|
601 |
|
602 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1468
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
|
604 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
605 |
msgid "Website"
|
606 |
msgstr "Интернет сайт"
|
607 |
|
608 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1473
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
|
610 |
msgid "Posts"
|
611 |
msgstr "Постове"
|
612 |
|
613 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
614 |
msgid "View posts by this author"
|
615 |
msgstr "Виж постовете на този автор"
|
616 |
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1621
|
618 |
msgid "Super Admin"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1632
|
622 |
#, php-format
|
623 |
msgid "e-mail: %s"
|
624 |
msgstr "e-mail: %s"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
627 |
#, fuzzy
|
628 |
msgid "Change"
|
629 |
msgstr "Смени реда"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1759
|
632 |
#, fuzzy
|
633 |
msgid "Update selected users"
|
634 |
msgstr "Изтрий маркираните полета"
|
635 |
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
637 |
#, fuzzy
|
638 |
msgid "Update"
|
639 |
msgstr "Поднови поле"
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1795
|
642 |
msgid "OK"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1796
|
646 |
msgid "Cancel"
|
647 |
msgstr ""
|
648 |
|
652 |
msgstr ""
|
653 |
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
656 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
657 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
658 |
#, fuzzy, php-format
|
693 |
"\n"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
697 |
+
#, php-format
|
698 |
+
msgid "[%1$s] Activate %2$s"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
703 |
msgid "Your account is now active!"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
|
707 |
#, php-format
|
708 |
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>."
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
712 |
msgid "An error occurred during the activation"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
716 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
717 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
718 |
#, php-format
|
719 |
msgid "Password: %s"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
|
723 |
msgid "Invalid activation key."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
727 |
msgid "The site is already active."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
|
731 |
msgid "Could not create user"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
735 |
msgid "That username is already activated."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
|
739 |
msgid "That username is currently reserved but may be available in a couple of days."
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
|
743 |
msgid "username and email used"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
|
747 |
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."
|
748 |
msgstr ""
|
749 |
|
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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
@@ -54,14 +54,14 @@ msgid "isn’t correct"
|
|
54 |
msgstr "er forkert"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "JA"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NEJ"
|
67 |
|
@@ -106,58 +106,58 @@ msgstr "Længde må ikke overstige"
|
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Brugernavn"
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
127 |
|
128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
133 |
|
134 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Ændre rækkefølge"
|
146 |
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
@@ -354,8 +354,8 @@ msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivels
|
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
356 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
359 |
msgid "Name"
|
360 |
msgstr "Navn"
|
361 |
|
@@ -363,8 +363,8 @@ msgstr "Navn"
|
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
365 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
msgid "Value"
|
369 |
msgstr "Værdi"
|
370 |
|
@@ -401,8 +401,8 @@ msgstr "Handlinger"
|
|
401 |
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
403 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
406 |
#, fuzzy
|
407 |
msgid "Fieldset"
|
408 |
msgstr "Felter"
|
@@ -529,8 +529,8 @@ msgid "WordPress Fields"
|
|
529 |
msgstr "WordPress felter"
|
530 |
|
531 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
536 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
@@ -556,23 +556,23 @@ msgid "SUCCESSFUL"
|
|
556 |
msgstr "GENNEMFØRT"
|
557 |
|
558 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
#, fuzzy
|
561 |
msgid "select"
|
562 |
msgstr "Slet"
|
563 |
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
566 |
#, fuzzy
|
567 |
msgid "Users per page"
|
568 |
msgstr "Tabel for brugerdata"
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
572 |
msgid "Apply"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
578 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
@@ -580,70 +580,70 @@ msgstr ""
|
|
580 |
msgid "Users Extended"
|
581 |
msgstr "Vis alle brugere"
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
#, php-format
|
585 |
msgid "Search results for “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
#, php-format
|
590 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
msgid "Search Users"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
#, fuzzy
|
600 |
msgid "Role"
|
601 |
msgstr "Regler"
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
605 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
606 |
msgid "Website"
|
607 |
msgstr "Website"
|
608 |
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
611 |
msgid "Posts"
|
612 |
msgstr "Indlæg"
|
613 |
|
614 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
615 |
msgid "View posts by this author"
|
616 |
msgstr "Vis denne brugers indlæg"
|
617 |
|
618 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
619 |
msgid "Super Admin"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
623 |
#, php-format
|
624 |
msgid "e-mail: %s"
|
625 |
msgstr "e-mail: %s"
|
626 |
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
628 |
#, fuzzy
|
629 |
msgid "Change"
|
630 |
msgstr "Ændre rækkefølge"
|
631 |
|
632 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
633 |
#, fuzzy
|
634 |
msgid "Update selected users"
|
635 |
msgstr "Slet valgte felter"
|
636 |
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
638 |
#, fuzzy
|
639 |
msgid "Update"
|
640 |
msgstr "Opdater felt"
|
641 |
|
642 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
643 |
msgid "OK"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
647 |
msgid "Cancel"
|
648 |
msgstr ""
|
649 |
|
@@ -653,7 +653,7 @@ msgid "New user registration on your site %s:"
|
|
653 |
msgstr ""
|
654 |
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
657 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
658 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
659 |
#, fuzzy, php-format
|
@@ -694,52 +694,57 @@ msgid ""
|
|
694 |
"\n"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
698 |
-
|
|
|
|
|
|
|
|
|
|
|
699 |
msgid "Your account is now active!"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
703 |
#, php-format
|
704 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
708 |
msgid "An error occurred during the activation"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
712 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
713 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
714 |
#, php-format
|
715 |
msgid "Password: %s"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
719 |
msgid "Invalid activation key."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
723 |
msgid "The site is already active."
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
727 |
msgid "Could not create user"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
731 |
msgid "That username is already activated."
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
735 |
msgid "That username is currently reserved but may be available in a couple of days."
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
739 |
msgid "username and email used"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
743 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
744 |
msgstr ""
|
745 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 15:02-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-06-02 15:02-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
54 |
msgstr "er forkert"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
msgid "YES"
|
60 |
msgstr "JA"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
msgid "NO"
|
66 |
msgstr "NEJ"
|
67 |
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:722
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Brugernavn"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:749
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1221
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Ændre rækkefølge"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1296
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1298
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1304
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1312
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
356 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
359 |
msgid "Name"
|
360 |
msgstr "Navn"
|
361 |
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
365 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
368 |
msgid "Value"
|
369 |
msgstr "Værdi"
|
370 |
|
401 |
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
403 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1199
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1290
|
406 |
#, fuzzy
|
407 |
msgid "Fieldset"
|
408 |
msgstr "Felter"
|
529 |
msgstr "WordPress felter"
|
530 |
|
531 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
536 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
556 |
msgstr "GENNEMFØRT"
|
557 |
|
558 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1790
|
560 |
#, fuzzy
|
561 |
msgid "select"
|
562 |
msgstr "Slet"
|
563 |
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1294
|
566 |
#, fuzzy
|
567 |
msgid "Users per page"
|
568 |
msgstr "Tabel for brugerdata"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1205
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1296
|
572 |
msgid "Apply"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1370
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
578 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
580 |
msgid "Users Extended"
|
581 |
msgstr "Vis alle brugere"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1378
|
584 |
#, php-format
|
585 |
msgid "Search results for “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1416
|
589 |
#, php-format
|
590 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
|
594 |
msgid "Search Users"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1463
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
|
599 |
#, fuzzy
|
600 |
msgid "Role"
|
601 |
msgstr "Regler"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1468
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
|
605 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
606 |
msgid "Website"
|
607 |
msgstr "Website"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1473
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
|
611 |
msgid "Posts"
|
612 |
msgstr "Indlæg"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
615 |
msgid "View posts by this author"
|
616 |
msgstr "Vis denne brugers indlæg"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1621
|
619 |
msgid "Super Admin"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1632
|
623 |
#, php-format
|
624 |
msgid "e-mail: %s"
|
625 |
msgstr "e-mail: %s"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
628 |
#, fuzzy
|
629 |
msgid "Change"
|
630 |
msgstr "Ændre rækkefølge"
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1759
|
633 |
#, fuzzy
|
634 |
msgid "Update selected users"
|
635 |
msgstr "Slet valgte felter"
|
636 |
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
638 |
#, fuzzy
|
639 |
msgid "Update"
|
640 |
msgstr "Opdater felt"
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1795
|
643 |
msgid "OK"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1796
|
647 |
msgid "Cancel"
|
648 |
msgstr ""
|
649 |
|
653 |
msgstr ""
|
654 |
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
657 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
658 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
659 |
#, fuzzy, php-format
|
694 |
"\n"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
698 |
+
#, php-format
|
699 |
+
msgid "[%1$s] Activate %2$s"
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
704 |
msgid "Your account is now active!"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
|
708 |
#, php-format
|
709 |
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>."
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
713 |
msgid "An error occurred during the activation"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
717 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
718 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
719 |
#, php-format
|
720 |
msgid "Password: %s"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
|
724 |
msgid "Invalid activation key."
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
728 |
msgid "The site is already active."
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
|
732 |
msgid "Could not create user"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
736 |
msgid "That username is already activated."
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
|
740 |
msgid "That username is currently reserved but may be available in a couple of days."
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
|
744 |
msgid "username and email used"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
|
748 |
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."
|
749 |
msgstr ""
|
750 |
|
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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
@@ -54,14 +54,14 @@ msgid "isn’t correct"
|
|
54 |
msgstr "ist nicht richtig"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "JA"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NEIN"
|
67 |
|
@@ -106,58 +106,58 @@ msgstr "darf keine Länge haben über"
|
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "\"Benutzer\"name"
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-Mail"
|
121 |
|
122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
127 |
|
128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
133 |
|
134 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Reihenfolge ändern "
|
146 |
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
@@ -353,8 +353,8 @@ msgstr "Bei <strong>picture</strong> gilt: Du kannst ein Bild hochladen, indem D
|
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
msgid "Name"
|
359 |
msgstr "Name"
|
360 |
|
@@ -362,8 +362,8 @@ msgstr "Name"
|
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
msgid "Value"
|
368 |
msgstr "Wert/$value"
|
369 |
|
@@ -400,8 +400,8 @@ msgstr "Aktion"
|
|
400 |
|
401 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
#, fuzzy
|
406 |
msgid "Fieldset"
|
407 |
msgstr "Felder"
|
@@ -528,8 +528,8 @@ msgid "WordPress Fields"
|
|
528 |
msgstr "WordPress Felder"
|
529 |
|
530 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
531 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
@@ -555,22 +555,22 @@ msgid "SUCCESSFUL"
|
|
555 |
msgstr "ERFOLGREICH"
|
556 |
|
557 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
559 |
#, fuzzy
|
560 |
msgid "select"
|
561 |
msgstr "Löschen"
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
565 |
msgid "Users per page"
|
566 |
msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
570 |
msgid "Apply"
|
571 |
msgstr "anwenden"
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
574 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
@@ -578,69 +578,69 @@ msgstr "anwenden"
|
|
578 |
msgid "Users Extended"
|
579 |
msgstr "Liste aller \"Benutzer\""
|
580 |
|
581 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
582 |
#, php-format
|
583 |
msgid "Search results for “%s”"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
587 |
#, php-format
|
588 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
592 |
msgid "Search Users"
|
593 |
msgstr "Suche \"Benutzer\""
|
594 |
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
597 |
msgid "Role"
|
598 |
msgstr "\"Benutzer\"-Rollen"
|
599 |
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
601 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
602 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
603 |
msgid "Website"
|
604 |
msgstr "Webseite"
|
605 |
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
607 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
608 |
msgid "Posts"
|
609 |
msgstr "Artikel"
|
610 |
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
612 |
msgid "View posts by this author"
|
613 |
msgstr "Zeige Artikel dieses Autors"
|
614 |
|
615 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
616 |
msgid "Super Admin"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
620 |
#, php-format
|
621 |
msgid "e-mail: %s"
|
622 |
msgstr "E-Mail: %s"
|
623 |
|
624 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
625 |
#, fuzzy
|
626 |
msgid "Change"
|
627 |
msgstr "Reihenfolge ändern "
|
628 |
|
629 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
630 |
#, fuzzy
|
631 |
msgid "Update selected users"
|
632 |
msgstr "Ausgewählte Felder löschen"
|
633 |
|
634 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
635 |
#, fuzzy
|
636 |
msgid "Update"
|
637 |
msgstr "Feld aktualisieren"
|
638 |
|
639 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
640 |
msgid "OK"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
644 |
msgid "Cancel"
|
645 |
msgstr ""
|
646 |
|
@@ -650,7 +650,7 @@ msgid "New user registration on your site %s:"
|
|
650 |
msgstr ""
|
651 |
|
652 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
653 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
656 |
#, fuzzy, php-format
|
@@ -691,52 +691,57 @@ msgid ""
|
|
691 |
"\n"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
695 |
-
|
|
|
|
|
|
|
|
|
|
|
696 |
msgid "Your account is now active!"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
700 |
#, php-format
|
701 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
705 |
msgid "An error occurred during the activation"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
709 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
710 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
711 |
#, fuzzy, php-format
|
712 |
msgid "Password: %s"
|
713 |
msgstr "Passwort"
|
714 |
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
716 |
msgid "Invalid activation key."
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
720 |
msgid "The site is already active."
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
724 |
msgid "Could not create user"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
728 |
msgid "That username is already activated."
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
732 |
msgid "That username is currently reserved but may be available in a couple of days."
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
736 |
msgid "username and email used"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
740 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
741 |
msgstr ""
|
742 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 15:02-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-06-02 15:02-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
54 |
msgstr "ist nicht richtig"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
msgid "YES"
|
60 |
msgstr "JA"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
msgid "NO"
|
66 |
msgstr "NEIN"
|
67 |
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:722
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "\"Benutzer\"name"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:749
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-Mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1221
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Reihenfolge ändern "
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1296
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1298
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1304
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1312
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
358 |
msgid "Name"
|
359 |
msgstr "Name"
|
360 |
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
367 |
msgid "Value"
|
368 |
msgstr "Wert/$value"
|
369 |
|
400 |
|
401 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1199
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1290
|
405 |
#, fuzzy
|
406 |
msgid "Fieldset"
|
407 |
msgstr "Felder"
|
528 |
msgstr "WordPress Felder"
|
529 |
|
530 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
533 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
555 |
msgstr "ERFOLGREICH"
|
556 |
|
557 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1790
|
559 |
#, fuzzy
|
560 |
msgid "select"
|
561 |
msgstr "Löschen"
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1294
|
565 |
msgid "Users per page"
|
566 |
msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
|
567 |
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1205
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1296
|
570 |
msgid "Apply"
|
571 |
msgstr "anwenden"
|
572 |
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1370
|
574 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
578 |
msgid "Users Extended"
|
579 |
msgstr "Liste aller \"Benutzer\""
|
580 |
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1378
|
582 |
#, php-format
|
583 |
msgid "Search results for “%s”"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1416
|
587 |
#, php-format
|
588 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
|
592 |
msgid "Search Users"
|
593 |
msgstr "Suche \"Benutzer\""
|
594 |
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1463
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
|
597 |
msgid "Role"
|
598 |
msgstr "\"Benutzer\"-Rollen"
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1468
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
|
602 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
603 |
msgid "Website"
|
604 |
msgstr "Webseite"
|
605 |
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1473
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
|
608 |
msgid "Posts"
|
609 |
msgstr "Artikel"
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
612 |
msgid "View posts by this author"
|
613 |
msgstr "Zeige Artikel dieses Autors"
|
614 |
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1621
|
616 |
msgid "Super Admin"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1632
|
620 |
#, php-format
|
621 |
msgid "e-mail: %s"
|
622 |
msgstr "E-Mail: %s"
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
625 |
#, fuzzy
|
626 |
msgid "Change"
|
627 |
msgstr "Reihenfolge ändern "
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1759
|
630 |
#, fuzzy
|
631 |
msgid "Update selected users"
|
632 |
msgstr "Ausgewählte Felder löschen"
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
635 |
#, fuzzy
|
636 |
msgid "Update"
|
637 |
msgstr "Feld aktualisieren"
|
638 |
|
639 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1795
|
640 |
msgid "OK"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1796
|
644 |
msgid "Cancel"
|
645 |
msgstr ""
|
646 |
|
650 |
msgstr ""
|
651 |
|
652 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
653 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
656 |
#, fuzzy, php-format
|
691 |
"\n"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
695 |
+
#, php-format
|
696 |
+
msgid "[%1$s] Activate %2$s"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
701 |
msgid "Your account is now active!"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
|
705 |
#, php-format
|
706 |
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>."
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
710 |
msgid "An error occurred during the activation"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
714 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
715 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
716 |
#, fuzzy, php-format
|
717 |
msgid "Password: %s"
|
718 |
msgstr "Passwort"
|
719 |
|
720 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
|
721 |
msgid "Invalid activation key."
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
725 |
msgid "The site is already active."
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
|
729 |
msgid "Could not create user"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
733 |
msgid "That username is already activated."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
|
737 |
msgid "That username is currently reserved but may be available in a couple of days."
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
|
741 |
msgid "username and email used"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
|
745 |
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."
|
746 |
msgstr ""
|
747 |
|
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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
@@ -54,14 +54,14 @@ msgid "isn’t correct"
|
|
54 |
msgstr "no es correcto"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "SI"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NO"
|
67 |
|
@@ -106,58 +106,58 @@ msgstr "no puede tener longitud mayor a"
|
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Nombre de usuario"
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
119 |
msgid "E-mail"
|
120 |
msgstr "Correo electrónico"
|
121 |
|
122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
127 |
|
128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
133 |
|
134 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Cambiar orden"
|
146 |
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
@@ -353,8 +353,8 @@ msgstr "Con <strong>picture</strong>: puede precargar una imagen por default pon
|
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
msgid "Name"
|
359 |
msgstr "Nombre"
|
360 |
|
@@ -362,8 +362,8 @@ msgstr "Nombre"
|
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
msgid "Value"
|
368 |
msgstr "Valor"
|
369 |
|
@@ -400,8 +400,8 @@ msgstr "Acciones"
|
|
400 |
|
401 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
msgid "Fieldset"
|
406 |
msgstr "Grupo de campos"
|
407 |
|
@@ -527,8 +527,8 @@ msgid "WordPress Fields"
|
|
527 |
msgstr "Campos WordPress"
|
528 |
|
529 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
531 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
532 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
533 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
@@ -554,22 +554,22 @@ msgid "SUCCESSFUL"
|
|
554 |
msgstr "EXITOSO"
|
555 |
|
556 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
#, fuzzy
|
559 |
msgid "select"
|
560 |
msgstr "Borrar"
|
561 |
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
msgid "Users per page"
|
565 |
msgstr "Usuarios por página"
|
566 |
|
567 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
569 |
msgid "Apply"
|
570 |
msgstr "Aplicar"
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
573 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
574 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
@@ -577,69 +577,69 @@ msgstr "Aplicar"
|
|
577 |
msgid "Users Extended"
|
578 |
msgstr "Usuarios extendido"
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
581 |
#, php-format
|
582 |
msgid "Search results for “%s”"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
586 |
#, php-format
|
587 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
591 |
msgid "Search Users"
|
592 |
msgstr "Buscar Usuarios"
|
593 |
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
596 |
msgid "Role"
|
597 |
msgstr "Rol"
|
598 |
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
601 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
602 |
msgid "Website"
|
603 |
msgstr "Sitio Web"
|
604 |
|
605 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
607 |
msgid "Posts"
|
608 |
msgstr "Entradas"
|
609 |
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
611 |
msgid "View posts by this author"
|
612 |
msgstr "Ver entradas de este autor"
|
613 |
|
614 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
615 |
msgid "Super Admin"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
619 |
#, php-format
|
620 |
msgid "e-mail: %s"
|
621 |
msgstr "correo electrónico: %s"
|
622 |
|
623 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
624 |
#, fuzzy
|
625 |
msgid "Change"
|
626 |
msgstr "Cambiar orden"
|
627 |
|
628 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
629 |
#, fuzzy
|
630 |
msgid "Update selected users"
|
631 |
msgstr "Borrar campos seleccionados"
|
632 |
|
633 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
634 |
#, fuzzy
|
635 |
msgid "Update"
|
636 |
msgstr "Actualizar campo"
|
637 |
|
638 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
639 |
msgid "OK"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
643 |
msgid "Cancel"
|
644 |
msgstr ""
|
645 |
|
@@ -649,7 +649,7 @@ msgid "New user registration on your site %s:"
|
|
649 |
msgstr ""
|
650 |
|
651 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
652 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
653 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
655 |
#, fuzzy, php-format
|
@@ -690,52 +690,57 @@ msgid ""
|
|
690 |
"\n"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
694 |
-
|
|
|
|
|
|
|
|
|
|
|
695 |
msgid "Your account is now active!"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
699 |
#, php-format
|
700 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
704 |
msgid "An error occurred during the activation"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
708 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
709 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
710 |
#, fuzzy, php-format
|
711 |
msgid "Password: %s"
|
712 |
msgstr "Contraseña"
|
713 |
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
715 |
msgid "Invalid activation key."
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
719 |
msgid "The site is already active."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
723 |
msgid "Could not create user"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
727 |
msgid "That username is already activated."
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
731 |
msgid "That username is currently reserved but may be available in a couple of days."
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
735 |
msgid "username and email used"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
739 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
740 |
msgstr ""
|
741 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 15:02-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-06-02 15:02-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
54 |
msgstr "no es correcto"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
msgid "YES"
|
60 |
msgstr "SI"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
msgid "NO"
|
66 |
msgstr "NO"
|
67 |
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:722
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Nombre de usuario"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:749
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
119 |
msgid "E-mail"
|
120 |
msgstr "Correo electrónico"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1221
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Cambiar orden"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1296
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1298
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1304
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1312
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
358 |
msgid "Name"
|
359 |
msgstr "Nombre"
|
360 |
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
367 |
msgid "Value"
|
368 |
msgstr "Valor"
|
369 |
|
400 |
|
401 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1199
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1290
|
405 |
msgid "Fieldset"
|
406 |
msgstr "Grupo de campos"
|
407 |
|
527 |
msgstr "Campos WordPress"
|
528 |
|
529 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
532 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
533 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
554 |
msgstr "EXITOSO"
|
555 |
|
556 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1790
|
558 |
#, fuzzy
|
559 |
msgid "select"
|
560 |
msgstr "Borrar"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1294
|
564 |
msgid "Users per page"
|
565 |
msgstr "Usuarios por página"
|
566 |
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1205
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1296
|
569 |
msgid "Apply"
|
570 |
msgstr "Aplicar"
|
571 |
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1370
|
573 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
574 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
577 |
msgid "Users Extended"
|
578 |
msgstr "Usuarios extendido"
|
579 |
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1378
|
581 |
#, php-format
|
582 |
msgid "Search results for “%s”"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1416
|
586 |
#, php-format
|
587 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
|
591 |
msgid "Search Users"
|
592 |
msgstr "Buscar Usuarios"
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1463
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
|
596 |
msgid "Role"
|
597 |
msgstr "Rol"
|
598 |
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1468
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
|
601 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
602 |
msgid "Website"
|
603 |
msgstr "Sitio Web"
|
604 |
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1473
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
|
607 |
msgid "Posts"
|
608 |
msgstr "Entradas"
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
611 |
msgid "View posts by this author"
|
612 |
msgstr "Ver entradas de este autor"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1621
|
615 |
msgid "Super Admin"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1632
|
619 |
#, php-format
|
620 |
msgid "e-mail: %s"
|
621 |
msgstr "correo electrónico: %s"
|
622 |
|
623 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
624 |
#, fuzzy
|
625 |
msgid "Change"
|
626 |
msgstr "Cambiar orden"
|
627 |
|
628 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1759
|
629 |
#, fuzzy
|
630 |
msgid "Update selected users"
|
631 |
msgstr "Borrar campos seleccionados"
|
632 |
|
633 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
634 |
#, fuzzy
|
635 |
msgid "Update"
|
636 |
msgstr "Actualizar campo"
|
637 |
|
638 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1795
|
639 |
msgid "OK"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1796
|
643 |
msgid "Cancel"
|
644 |
msgstr ""
|
645 |
|
649 |
msgstr ""
|
650 |
|
651 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
652 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
653 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
655 |
#, fuzzy, php-format
|
690 |
"\n"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
694 |
+
#, php-format
|
695 |
+
msgid "[%1$s] Activate %2$s"
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
700 |
msgid "Your account is now active!"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
|
704 |
#, php-format
|
705 |
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>."
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
709 |
msgid "An error occurred during the activation"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
713 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
714 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
715 |
#, fuzzy, php-format
|
716 |
msgid "Password: %s"
|
717 |
msgstr "Contraseña"
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
|
720 |
msgid "Invalid activation key."
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
724 |
msgid "The site is already active."
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
|
728 |
msgid "Could not create user"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
732 |
msgid "That username is already activated."
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
|
736 |
msgid "That username is currently reserved but may be available in a couple of days."
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
|
740 |
msgid "username and email used"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
|
744 |
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."
|
745 |
msgstr ""
|
746 |
|
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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -54,14 +54,14 @@ msgid "isn’t correct"
|
|
54 |
msgstr "n'est pas correct"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "OUI"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NON"
|
67 |
|
@@ -107,57 +107,57 @@ msgstr "ne pouvait pas avoir une longueur supérieure à"
|
|
107 |
msgid "Typed code is not correct."
|
108 |
msgstr "Le code saisi est incorrect."
|
109 |
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
112 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
113 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
114 |
msgid "Username"
|
115 |
msgstr "Identifiant"
|
116 |
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
119 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
120 |
msgid "E-mail"
|
121 |
msgstr "Courriel"
|
122 |
|
123 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
124 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Veuillez téléchargez un fichier avec l'une des extensions suivantes"
|
127 |
|
128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "S'il vous plait, téléchargez une image avec l'une des extensions suivantes"
|
133 |
|
134 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
135 |
msgid "Strength indicator"
|
136 |
msgstr "Indicateur de sûreté"
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
139 |
#, fuzzy
|
140 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
141 |
msgstr "Suggestion: Le mot de passe devrait contenir au moins sept caractères. Pour le sécuriser encore plus, utilisez une combinaison de minuscules, de majuscules, de chiffres et de symboles tels que ! \\\" ? $ % ^ & )."
|
142 |
|
143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
144 |
msgid "Change image"
|
145 |
msgstr "Changer l'image"
|
146 |
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
148 |
msgid "Insert the code:"
|
149 |
msgstr "Insérer le code :"
|
150 |
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
@@ -352,8 +352,8 @@ msgstr "Avec le type <strong>picture</strong> : vous pouvez précharger un f
|
|
352 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
msgid "Name"
|
358 |
msgstr "Nom"
|
359 |
|
@@ -361,8 +361,8 @@ msgstr "Nom"
|
|
361 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
366 |
msgid "Value"
|
367 |
msgstr "Valeur"
|
368 |
|
@@ -399,8 +399,8 @@ msgstr "Actions"
|
|
399 |
|
400 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
401 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
msgid "Fieldset"
|
405 |
msgstr "Regroupements"
|
406 |
|
@@ -523,8 +523,8 @@ msgid "WordPress Fields"
|
|
523 |
msgstr "Champs WordPress"
|
524 |
|
525 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
528 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
529 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
530 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
@@ -550,89 +550,89 @@ msgid "SUCCESSFUL"
|
|
550 |
msgstr "SUCCÈS"
|
551 |
|
552 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
553 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
554 |
#, fuzzy
|
555 |
msgid "select"
|
556 |
msgstr "sélectionnez"
|
557 |
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
msgid "Users per page"
|
561 |
msgstr "Utilisateurs par page"
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
565 |
msgid "Apply"
|
566 |
msgstr "Appliquer"
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
569 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
570 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
571 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
572 |
msgid "Users Extended"
|
573 |
msgstr "Utilisateurs Étendus"
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
576 |
#, php-format
|
577 |
msgid "Search results for “%s”"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
581 |
#, php-format
|
582 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
583 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
584 |
|
585 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
586 |
msgid "Search Users"
|
587 |
msgstr "Chercher des utilisateurs"
|
588 |
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
590 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
591 |
msgid "Role"
|
592 |
msgstr "Rôle"
|
593 |
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
596 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
597 |
msgid "Website"
|
598 |
msgstr "Site Web"
|
599 |
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
601 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
602 |
msgid "Posts"
|
603 |
msgstr "Articles"
|
604 |
|
605 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
606 |
msgid "View posts by this author"
|
607 |
msgstr "Voir les articles de cet auteur"
|
608 |
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
610 |
msgid "Super Admin"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
614 |
#, php-format
|
615 |
msgid "e-mail: %s"
|
616 |
msgstr "courriel : %s"
|
617 |
|
618 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
619 |
#, fuzzy
|
620 |
msgid "Change"
|
621 |
msgstr "Changer l'image"
|
622 |
|
623 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
624 |
msgid "Update selected users"
|
625 |
msgstr "Mettre à jour les utilisateurs sélectionnés"
|
626 |
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
628 |
msgid "Update"
|
629 |
msgstr "Mettre à jour"
|
630 |
|
631 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
632 |
msgid "OK"
|
633 |
msgstr "OK"
|
634 |
|
635 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
636 |
msgid "Cancel"
|
637 |
msgstr "Annuler"
|
638 |
|
@@ -642,7 +642,7 @@ msgid "New user registration on your site %s:"
|
|
642 |
msgstr "Inscription d'un nouvel utilisateur sur votre site %s :"
|
643 |
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
645 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
646 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
647 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
648 |
#, php-format
|
@@ -688,52 +688,57 @@ msgstr ""
|
|
688 |
"\n"
|
689 |
"Après l'activation, vous recevrez un *autre courriel* avec votre identifiant.\n"
|
690 |
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
692 |
-
|
|
|
|
|
|
|
|
|
|
|
693 |
msgid "Your account is now active!"
|
694 |
msgstr "Votre compte est maintenant actif!"
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
697 |
#, php-format
|
698 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
699 |
msgstr "Votre compte à <a href=\"%1$s\">%2$s</a> est actif. Vous pouvez vous connecter à votre compte en utilisant l'identifiant \"%3$s\". Veuillez vérifier la boite de réception de votre courriel %4$s pour votre mot de passe et les instructions de connexion. Si vous ne recevez pas ce courriel, vérifiez dans votre dossier de pourriel (spam). Si après une heure vous n'avez toujours pas reçu de courriel, vous pouvez <a href=\"%5$s\">réinitialiser votre mot de passe</a></p>."
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
702 |
msgid "An error occurred during the activation"
|
703 |
msgstr "Une erreur est survenue durant l'activation"
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
706 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
707 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
708 |
#, php-format
|
709 |
msgid "Password: %s"
|
710 |
msgstr "Mot de passe : %s"
|
711 |
|
712 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
713 |
msgid "Invalid activation key."
|
714 |
msgstr "Clef d'activation invalide."
|
715 |
|
716 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
717 |
msgid "The site is already active."
|
718 |
msgstr "Le compte est déjà actif."
|
719 |
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
721 |
msgid "Could not create user"
|
722 |
msgstr "N'a pu créer l'utilisateur"
|
723 |
|
724 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
725 |
msgid "That username is already activated."
|
726 |
msgstr "Cet identifiant est déjà actif."
|
727 |
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
729 |
msgid "That username is currently reserved but may be available in a couple of days."
|
730 |
msgstr "Cet identifiant est actuellement réservé, mais peut être disponible d'ici quelques jours."
|
731 |
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
733 |
msgid "username and email used"
|
734 |
msgstr "identifiant et courriel utilisé"
|
735 |
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
737 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
738 |
msgstr "Cette adresse courriel est déjà utilisée. Veuillez vérifier votre boite aux lettres pour le courriel d'activation. Si vous ne faites rien, ce courriel sera de nouveau disponible pour l'inscription."
|
739 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 15:02-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-06-02 15:02-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"Language: \n"
|
54 |
msgstr "n'est pas correct"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
msgid "YES"
|
60 |
msgstr "OUI"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
msgid "NO"
|
66 |
msgstr "NON"
|
67 |
|
107 |
msgid "Typed code is not correct."
|
108 |
msgstr "Le code saisi est incorrect."
|
109 |
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:722
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
113 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
114 |
msgid "Username"
|
115 |
msgstr "Identifiant"
|
116 |
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:749
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
119 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
120 |
msgid "E-mail"
|
121 |
msgstr "Courriel"
|
122 |
|
123 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
124 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Veuillez téléchargez un fichier avec l'une des extensions suivantes"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "S'il vous plait, téléchargez une image avec l'une des extensions suivantes"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
|
135 |
msgid "Strength indicator"
|
136 |
msgstr "Indicateur de sûreté"
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
139 |
#, fuzzy
|
140 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
141 |
msgstr "Suggestion: Le mot de passe devrait contenir au moins sept caractères. Pour le sécuriser encore plus, utilisez une combinaison de minuscules, de majuscules, de chiffres et de symboles tels que ! \\\" ? $ % ^ & )."
|
142 |
|
143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1221
|
144 |
msgid "Change image"
|
145 |
msgstr "Changer l'image"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
148 |
msgid "Insert the code:"
|
149 |
msgstr "Insérer le code :"
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1296
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1298
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1304
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1312
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
352 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
357 |
msgid "Name"
|
358 |
msgstr "Nom"
|
359 |
|
361 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
366 |
msgid "Value"
|
367 |
msgstr "Valeur"
|
368 |
|
399 |
|
400 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
401 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1199
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1290
|
404 |
msgid "Fieldset"
|
405 |
msgstr "Regroupements"
|
406 |
|
523 |
msgstr "Champs WordPress"
|
524 |
|
525 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
528 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
529 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
530 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
550 |
msgstr "SUCCÈS"
|
551 |
|
552 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1790
|
554 |
#, fuzzy
|
555 |
msgid "select"
|
556 |
msgstr "sélectionnez"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1294
|
560 |
msgid "Users per page"
|
561 |
msgstr "Utilisateurs par page"
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1205
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1296
|
565 |
msgid "Apply"
|
566 |
msgstr "Appliquer"
|
567 |
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1370
|
569 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
570 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
571 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
572 |
msgid "Users Extended"
|
573 |
msgstr "Utilisateurs Étendus"
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1378
|
576 |
#, php-format
|
577 |
msgid "Search results for “%s”"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1416
|
581 |
#, php-format
|
582 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
583 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
584 |
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
|
586 |
msgid "Search Users"
|
587 |
msgstr "Chercher des utilisateurs"
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1463
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
|
591 |
msgid "Role"
|
592 |
msgstr "Rôle"
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1468
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
|
596 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
597 |
msgid "Website"
|
598 |
msgstr "Site Web"
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1473
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
|
602 |
msgid "Posts"
|
603 |
msgstr "Articles"
|
604 |
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
606 |
msgid "View posts by this author"
|
607 |
msgstr "Voir les articles de cet auteur"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1621
|
610 |
msgid "Super Admin"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1632
|
614 |
#, php-format
|
615 |
msgid "e-mail: %s"
|
616 |
msgstr "courriel : %s"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
619 |
#, fuzzy
|
620 |
msgid "Change"
|
621 |
msgstr "Changer l'image"
|
622 |
|
623 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1759
|
624 |
msgid "Update selected users"
|
625 |
msgstr "Mettre à jour les utilisateurs sélectionnés"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
628 |
msgid "Update"
|
629 |
msgstr "Mettre à jour"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1795
|
632 |
msgid "OK"
|
633 |
msgstr "OK"
|
634 |
|
635 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1796
|
636 |
msgid "Cancel"
|
637 |
msgstr "Annuler"
|
638 |
|
642 |
msgstr "Inscription d'un nouvel utilisateur sur votre site %s :"
|
643 |
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
646 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
647 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
648 |
#, php-format
|
688 |
"\n"
|
689 |
"Après l'activation, vous recevrez un *autre courriel* avec votre identifiant.\n"
|
690 |
|
691 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
692 |
+
#, php-format
|
693 |
+
msgid "[%1$s] Activate %2$s"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
698 |
msgid "Your account is now active!"
|
699 |
msgstr "Votre compte est maintenant actif!"
|
700 |
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
|
702 |
#, php-format
|
703 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
704 |
msgstr "Votre compte à <a href=\"%1$s\">%2$s</a> est actif. Vous pouvez vous connecter à votre compte en utilisant l'identifiant \"%3$s\". Veuillez vérifier la boite de réception de votre courriel %4$s pour votre mot de passe et les instructions de connexion. Si vous ne recevez pas ce courriel, vérifiez dans votre dossier de pourriel (spam). Si après une heure vous n'avez toujours pas reçu de courriel, vous pouvez <a href=\"%5$s\">réinitialiser votre mot de passe</a></p>."
|
705 |
|
706 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
707 |
msgid "An error occurred during the activation"
|
708 |
msgstr "Une erreur est survenue durant l'activation"
|
709 |
|
710 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
711 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
712 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
713 |
#, php-format
|
714 |
msgid "Password: %s"
|
715 |
msgstr "Mot de passe : %s"
|
716 |
|
717 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
|
718 |
msgid "Invalid activation key."
|
719 |
msgstr "Clef d'activation invalide."
|
720 |
|
721 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
722 |
msgid "The site is already active."
|
723 |
msgstr "Le compte est déjà actif."
|
724 |
|
725 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
|
726 |
msgid "Could not create user"
|
727 |
msgstr "N'a pu créer l'utilisateur"
|
728 |
|
729 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
730 |
msgid "That username is already activated."
|
731 |
msgstr "Cet identifiant est déjà actif."
|
732 |
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
|
734 |
msgid "That username is currently reserved but may be available in a couple of days."
|
735 |
msgstr "Cet identifiant est actuellement réservé, mais peut être disponible d'ici quelques jours."
|
736 |
|
737 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
|
738 |
msgid "username and email used"
|
739 |
msgstr "identifiant et courriel utilisé"
|
740 |
|
741 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
|
742 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
743 |
msgstr "Cette adresse courriel est déjà utilisée. Veuillez vérifier votre boite aux lettres pour le courriel d'activation. Si vous ne faites rien, ce courriel sera de nouveau disponible pour l'inscription."
|
744 |
|
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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -54,14 +54,14 @@ msgid "isn’t correct"
|
|
54 |
msgstr "non è corretto"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "SI"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NO"
|
67 |
|
@@ -106,57 +106,57 @@ msgstr "non può avere lunghezza maggiore di"
|
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr "Il codice inserito non è corretto."
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
119 |
msgid "E-mail"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Per favore spedisci un file con una delle seguenti estensioni"
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
134 |
msgid "Strength indicator"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
138 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
142 |
#, fuzzy
|
143 |
msgid "Change image"
|
144 |
msgstr "Cambia ordine"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
147 |
msgid "Insert the code:"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr "Conferma la registrazione"
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
160 |
msgid "← Back"
|
161 |
msgstr "← Indietro"
|
162 |
|
@@ -351,8 +351,8 @@ msgstr "Con <strong>file</strong>: puoi precaricare un file di default mettendo
|
|
351 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
352 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
msgid "Name"
|
357 |
msgstr ""
|
358 |
|
@@ -360,8 +360,8 @@ msgstr ""
|
|
360 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
361 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
msgid "Value"
|
366 |
msgstr ""
|
367 |
|
@@ -398,8 +398,8 @@ msgstr ""
|
|
398 |
|
399 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
400 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
msgid "Fieldset"
|
404 |
msgstr "Raggruppamento"
|
405 |
|
@@ -520,8 +520,8 @@ msgid "WordPress Fields"
|
|
520 |
msgstr "Campi WordPress"
|
521 |
|
522 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
525 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
526 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
527 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
@@ -547,90 +547,90 @@ msgid "SUCCESSFUL"
|
|
547 |
msgstr "SUCCESSO"
|
548 |
|
549 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
550 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
551 |
msgid "select"
|
552 |
msgstr "seleziona"
|
553 |
|
554 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
556 |
msgid "Users per page"
|
557 |
msgstr "Utenti per pagina"
|
558 |
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
561 |
msgid "Apply"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
565 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
566 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
567 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
568 |
msgid "Users Extended"
|
569 |
msgstr "Utenti Estesa"
|
570 |
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
572 |
#, php-format
|
573 |
msgid "Search results for “%s”"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
577 |
#, php-format
|
578 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
582 |
msgid "Search Users"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
586 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
587 |
#, fuzzy
|
588 |
msgid "Role"
|
589 |
msgstr "Regole"
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
593 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
594 |
msgid "Website"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
msgid "Posts"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
603 |
msgid "View posts by this author"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
607 |
msgid "Super Admin"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
611 |
#, php-format
|
612 |
msgid "e-mail: %s"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
616 |
#, fuzzy
|
617 |
msgid "Change"
|
618 |
msgstr "Cambia ordine"
|
619 |
|
620 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
621 |
msgid "Update selected users"
|
622 |
msgstr "Aggiorna gli utenti selezionati"
|
623 |
|
624 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
625 |
#, fuzzy
|
626 |
msgid "Update"
|
627 |
msgstr "Aggiorna campo"
|
628 |
|
629 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
630 |
msgid "OK"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
634 |
msgid "Cancel"
|
635 |
msgstr ""
|
636 |
|
@@ -640,7 +640,7 @@ msgid "New user registration on your site %s:"
|
|
640 |
msgstr ""
|
641 |
|
642 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
643 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
645 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
646 |
#, php-format
|
@@ -684,55 +684,60 @@ msgstr ""
|
|
684 |
"\n"
|
685 |
"%s\n"
|
686 |
"\n"
|
687 |
-
"Dopo l
|
688 |
"\n"
|
689 |
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
691 |
-
|
|
|
|
|
|
|
|
|
|
|
692 |
msgid "Your account is now active!"
|
693 |
msgstr "Il tuo account è ora attivo!"
|
694 |
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
696 |
#, php-format
|
697 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
698 |
msgstr "Il sito su <a href=\"%1$s\">%2$s</a> è attivo. Ora è possibile effettuare la login al sito utilizzando il nome utente scelto che è \"%3$s\". Per favore controllare la propria casella postale su %4$s per la password e le istruzioni per il login. Se non si ricevesse alcuna email, controllare la cartella junk o spam. Se si continua a non ricevere alcuna email nella prossima ora è possibile <a href=\"%5$s\">azzerare la propria password</a>.</p>"
|
699 |
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
701 |
msgid "An error occurred during the activation"
|
702 |
msgstr "Si è verificato un errore durante l'attivazione"
|
703 |
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
705 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
706 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
707 |
#, fuzzy, php-format
|
708 |
msgid "Password: %s"
|
709 |
msgstr "Mostra password"
|
710 |
|
711 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
712 |
msgid "Invalid activation key."
|
713 |
msgstr "Chiave di attivazione non valida."
|
714 |
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
716 |
msgid "The site is already active."
|
717 |
msgstr "Il sito è già attivo."
|
718 |
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
720 |
msgid "Could not create user"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
724 |
msgid "That username is already activated."
|
725 |
msgstr "Il nome utente è già stato attivato."
|
726 |
|
727 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
728 |
msgid "That username is currently reserved but may be available in a couple of days."
|
729 |
msgstr "Il nome utente è attualmente riservato ma potrebbe rendersi disponibile in un paio di giorni."
|
730 |
|
731 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
732 |
msgid "username and email used"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
736 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
737 |
msgstr "Questo indirizzo email è stato già utilizzato. Per favore verificare la propria casella di posta per una mail di attivazione. Se non si farà nulla diverrà nuovamente disponibile in un paio di giorni."
|
738 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 14:55-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-06-02 15:26-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"Language: \n"
|
54 |
msgstr "non è corretto"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
msgid "YES"
|
60 |
msgstr "SI"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
msgid "NO"
|
66 |
msgstr "NO"
|
67 |
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr "Il codice inserito non è corretto."
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:722
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:749
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
119 |
msgid "E-mail"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Per favore spedisci un file con una delle seguenti estensioni"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
|
134 |
msgid "Strength indicator"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
138 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1221
|
142 |
#, fuzzy
|
143 |
msgid "Change image"
|
144 |
msgstr "Cambia ordine"
|
145 |
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
147 |
msgid "Insert the code:"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1296
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1298
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr "Conferma la registrazione"
|
154 |
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1304
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1312
|
160 |
msgid "← Back"
|
161 |
msgstr "← Indietro"
|
162 |
|
351 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
352 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
356 |
msgid "Name"
|
357 |
msgstr ""
|
358 |
|
360 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
361 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
365 |
msgid "Value"
|
366 |
msgstr ""
|
367 |
|
398 |
|
399 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
400 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1199
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1290
|
403 |
msgid "Fieldset"
|
404 |
msgstr "Raggruppamento"
|
405 |
|
520 |
msgstr "Campi WordPress"
|
521 |
|
522 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
525 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
526 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
527 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
547 |
msgstr "SUCCESSO"
|
548 |
|
549 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
550 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1790
|
551 |
msgid "select"
|
552 |
msgstr "seleziona"
|
553 |
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
555 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1294
|
556 |
msgid "Users per page"
|
557 |
msgstr "Utenti per pagina"
|
558 |
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1205
|
560 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1296
|
561 |
msgid "Apply"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1370
|
565 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
566 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
567 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
568 |
msgid "Users Extended"
|
569 |
msgstr "Utenti Estesa"
|
570 |
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1378
|
572 |
#, php-format
|
573 |
msgid "Search results for “%s”"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1416
|
577 |
#, php-format
|
578 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
|
582 |
msgid "Search Users"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1463
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
|
587 |
#, fuzzy
|
588 |
msgid "Role"
|
589 |
msgstr "Regole"
|
590 |
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1468
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
|
593 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
594 |
msgid "Website"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1473
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
|
599 |
msgid "Posts"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
603 |
msgid "View posts by this author"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1621
|
607 |
msgid "Super Admin"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1632
|
611 |
#, php-format
|
612 |
msgid "e-mail: %s"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
616 |
#, fuzzy
|
617 |
msgid "Change"
|
618 |
msgstr "Cambia ordine"
|
619 |
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1759
|
621 |
msgid "Update selected users"
|
622 |
msgstr "Aggiorna gli utenti selezionati"
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
625 |
#, fuzzy
|
626 |
msgid "Update"
|
627 |
msgstr "Aggiorna campo"
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1795
|
630 |
msgid "OK"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1796
|
634 |
msgid "Cancel"
|
635 |
msgstr ""
|
636 |
|
640 |
msgstr ""
|
641 |
|
642 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
645 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
646 |
#, php-format
|
684 |
"\n"
|
685 |
"%s\n"
|
686 |
"\n"
|
687 |
+
"Dopo l'attivazione, si riceverà *un'altra email* con i dati di login.\n"
|
688 |
"\n"
|
689 |
|
690 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
691 |
+
#, php-format
|
692 |
+
msgid "[%1$s] Activate %2$s"
|
693 |
+
msgstr "[%1$s] Attivazione %2$s"
|
694 |
+
|
695 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
697 |
msgid "Your account is now active!"
|
698 |
msgstr "Il tuo account è ora attivo!"
|
699 |
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
|
701 |
#, php-format
|
702 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
703 |
msgstr "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>"
|
704 |
|
705 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
706 |
msgid "An error occurred during the activation"
|
707 |
msgstr "Si è verificato un errore durante l'attivazione"
|
708 |
|
709 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
710 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
711 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
712 |
#, fuzzy, php-format
|
713 |
msgid "Password: %s"
|
714 |
msgstr "Mostra password"
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
|
717 |
msgid "Invalid activation key."
|
718 |
msgstr "Chiave di attivazione non valida."
|
719 |
|
720 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
721 |
msgid "The site is already active."
|
722 |
msgstr "Il sito è già attivo."
|
723 |
|
724 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
|
725 |
msgid "Could not create user"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
729 |
msgid "That username is already activated."
|
730 |
msgstr "Il nome utente è già stato attivato."
|
731 |
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
|
733 |
msgid "That username is currently reserved but may be available in a couple of days."
|
734 |
msgstr "Il nome utente è attualmente riservato ma potrebbe rendersi disponibile in un paio di giorni."
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
|
737 |
msgid "username and email used"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
|
741 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
742 |
msgstr "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."
|
743 |
|
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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <pik256@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -54,14 +54,14 @@ msgid "isn’t correct"
|
|
54 |
msgstr "jest nieprawidłowy"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "TAK"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NIE"
|
67 |
|
@@ -106,57 +106,57 @@ msgstr "nie może być dłuższy niż"
|
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Nazwa użytkownika"
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Wgraj plik w jednym z następujących formatów"
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Wgraj obrazek w jednym z następujących formatów"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
134 |
msgid "Strength indicator"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
138 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
142 |
#, fuzzy
|
143 |
msgid "Change image"
|
144 |
msgstr "Zmień kolejność"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
147 |
msgid "Insert the code:"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
@@ -351,8 +351,8 @@ msgstr "Dla <strong>Pliku</strong>: możesz wgrać plik domyślny podająć URL
|
|
351 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
352 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
msgid "Name"
|
357 |
msgstr "Nazwa"
|
358 |
|
@@ -360,8 +360,8 @@ msgstr "Nazwa"
|
|
360 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
361 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
msgid "Value"
|
366 |
msgstr "Wartość"
|
367 |
|
@@ -398,8 +398,8 @@ msgstr "Działania"
|
|
398 |
|
399 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
400 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
msgid "Fieldset"
|
404 |
msgstr "Grupa pól"
|
405 |
|
@@ -522,8 +522,8 @@ msgid "WordPress Fields"
|
|
522 |
msgstr "Pola Wordpressa"
|
523 |
|
524 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
525 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
527 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
528 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
529 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
@@ -549,90 +549,90 @@ msgid "SUCCESSFUL"
|
|
549 |
msgstr "PRAWIDŁOWO"
|
550 |
|
551 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
553 |
msgid "select"
|
554 |
msgstr "- Wybierz -"
|
555 |
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
msgid "Users per page"
|
559 |
msgstr "Użytkowników na stronie"
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
563 |
msgid "Apply"
|
564 |
msgstr "Zastosuj"
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
567 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
568 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
569 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
570 |
msgid "Users Extended"
|
571 |
msgstr "Lista rozszerzona"
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
574 |
#, php-format
|
575 |
msgid "Search results for “%s”"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
579 |
#, php-format
|
580 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
msgid "Search Users"
|
585 |
msgstr "Szukaj użytkowników"
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
msgid "Role"
|
590 |
msgstr "Rola"
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
595 |
msgid "Website"
|
596 |
msgstr "Strona internetowa"
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
600 |
msgid "Posts"
|
601 |
msgstr "Wpisy"
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
604 |
msgid "View posts by this author"
|
605 |
msgstr "Zobacz wpisy tego autora"
|
606 |
|
607 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
608 |
msgid "Super Admin"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
612 |
#, php-format
|
613 |
msgid "e-mail: %s"
|
614 |
msgstr "e-mail: %s"
|
615 |
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
617 |
#, fuzzy
|
618 |
msgid "Change"
|
619 |
msgstr "Zmień kolejność"
|
620 |
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
622 |
#, fuzzy
|
623 |
msgid "Update selected users"
|
624 |
msgstr "Usuń wybrane pola"
|
625 |
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
627 |
#, fuzzy
|
628 |
msgid "Update"
|
629 |
msgstr "Zaktualizuj pole"
|
630 |
|
631 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
632 |
msgid "OK"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
636 |
msgid "Cancel"
|
637 |
msgstr ""
|
638 |
|
@@ -642,7 +642,7 @@ msgid "New user registration on your site %s:"
|
|
642 |
msgstr ""
|
643 |
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
645 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
646 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
647 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
648 |
#, fuzzy, php-format
|
@@ -683,52 +683,57 @@ msgid ""
|
|
683 |
"\n"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
687 |
-
|
|
|
|
|
|
|
|
|
|
|
688 |
msgid "Your account is now active!"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
692 |
#, php-format
|
693 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
697 |
msgid "An error occurred during the activation"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
701 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
702 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
703 |
#, fuzzy, php-format
|
704 |
msgid "Password: %s"
|
705 |
msgstr "Hasło"
|
706 |
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
708 |
msgid "Invalid activation key."
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
712 |
msgid "The site is already active."
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
716 |
msgid "Could not create user"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
720 |
msgid "That username is already activated."
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
724 |
msgid "That username is currently reserved but may be available in a couple of days."
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
728 |
msgid "username and email used"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
732 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
733 |
msgstr ""
|
734 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 15:03-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-06-02 15:03-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <pik256@gmail.com>\n"
|
9 |
"Language: \n"
|
54 |
msgstr "jest nieprawidłowy"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
msgid "YES"
|
60 |
msgstr "TAK"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
msgid "NO"
|
66 |
msgstr "NIE"
|
67 |
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:722
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Nazwa użytkownika"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:749
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Wgraj plik w jednym z następujących formatów"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Wgraj obrazek w jednym z następujących formatów"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
|
134 |
msgid "Strength indicator"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
138 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1221
|
142 |
#, fuzzy
|
143 |
msgid "Change image"
|
144 |
msgstr "Zmień kolejność"
|
145 |
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
147 |
msgid "Insert the code:"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1296
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1298
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1304
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1312
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
351 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
352 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
356 |
msgid "Name"
|
357 |
msgstr "Nazwa"
|
358 |
|
360 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
361 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
365 |
msgid "Value"
|
366 |
msgstr "Wartość"
|
367 |
|
398 |
|
399 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
400 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1199
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1290
|
403 |
msgid "Fieldset"
|
404 |
msgstr "Grupa pól"
|
405 |
|
522 |
msgstr "Pola Wordpressa"
|
523 |
|
524 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
527 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
528 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
529 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
549 |
msgstr "PRAWIDŁOWO"
|
550 |
|
551 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1790
|
553 |
msgid "select"
|
554 |
msgstr "- Wybierz -"
|
555 |
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1294
|
558 |
msgid "Users per page"
|
559 |
msgstr "Użytkowników na stronie"
|
560 |
|
561 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1205
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1296
|
563 |
msgid "Apply"
|
564 |
msgstr "Zastosuj"
|
565 |
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1370
|
567 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
568 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
569 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
570 |
msgid "Users Extended"
|
571 |
msgstr "Lista rozszerzona"
|
572 |
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1378
|
574 |
#, php-format
|
575 |
msgid "Search results for “%s”"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1416
|
579 |
#, php-format
|
580 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
|
584 |
msgid "Search Users"
|
585 |
msgstr "Szukaj użytkowników"
|
586 |
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1463
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
|
589 |
msgid "Role"
|
590 |
msgstr "Rola"
|
591 |
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1468
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
|
594 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
595 |
msgid "Website"
|
596 |
msgstr "Strona internetowa"
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1473
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
|
600 |
msgid "Posts"
|
601 |
msgstr "Wpisy"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
604 |
msgid "View posts by this author"
|
605 |
msgstr "Zobacz wpisy tego autora"
|
606 |
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1621
|
608 |
msgid "Super Admin"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1632
|
612 |
#, php-format
|
613 |
msgid "e-mail: %s"
|
614 |
msgstr "e-mail: %s"
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
617 |
#, fuzzy
|
618 |
msgid "Change"
|
619 |
msgstr "Zmień kolejność"
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1759
|
622 |
#, fuzzy
|
623 |
msgid "Update selected users"
|
624 |
msgstr "Usuń wybrane pola"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
627 |
#, fuzzy
|
628 |
msgid "Update"
|
629 |
msgstr "Zaktualizuj pole"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1795
|
632 |
msgid "OK"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1796
|
636 |
msgid "Cancel"
|
637 |
msgstr ""
|
638 |
|
642 |
msgstr ""
|
643 |
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
646 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
647 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
648 |
#, fuzzy, php-format
|
683 |
"\n"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
687 |
+
#, php-format
|
688 |
+
msgid "[%1$s] Activate %2$s"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
|
692 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
693 |
msgid "Your account is now active!"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
|
697 |
#, php-format
|
698 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
702 |
msgid "An error occurred during the activation"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
706 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
707 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
708 |
#, fuzzy, php-format
|
709 |
msgid "Password: %s"
|
710 |
msgstr "Hasło"
|
711 |
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
|
713 |
msgid "Invalid activation key."
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
717 |
msgid "The site is already active."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
|
721 |
msgid "Could not create user"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
725 |
msgid "That username is already activated."
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
|
729 |
msgid "That username is currently reserved but may be available in a couple of days."
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
|
733 |
msgid "username and email used"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
|
737 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
738 |
msgstr ""
|
739 |
|
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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Diana K. Cury <dianakac@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -54,14 +54,14 @@ msgid "isn’t correct"
|
|
54 |
msgstr "não está correto"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "SIM"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NÃO"
|
67 |
|
@@ -106,57 +106,57 @@ msgstr "não pode ter comprimento maior que"
|
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr "Código digitado não está correto."
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Nome de Usuário"
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Por favor envie um arquivo com uma das seguintes extensões"
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Por favor envie uma imagem com uma das seguintes extensões"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
134 |
msgid "Strength indicator"
|
135 |
msgstr "Indicador de força"
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
138 |
#, fuzzy
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr "Dica: A senha deve ter ao menos sete caracteres. Para torná-la mais segura, use maiúsculas, minúsculas, números e simbolos como ! \\\" ? $ % ^ & )."
|
141 |
|
142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
143 |
msgid "Change image"
|
144 |
msgstr "Mudar imagem"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
147 |
msgid "Insert the code:"
|
148 |
msgstr "Inserir o código:"
|
149 |
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
@@ -351,8 +351,8 @@ msgstr "<strong>file</strong>: Permite carregar um arquivo informando sua URL em
|
|
351 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
352 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
msgid "Name"
|
357 |
msgstr "Nome"
|
358 |
|
@@ -360,8 +360,8 @@ msgstr "Nome"
|
|
360 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
361 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
msgid "Value"
|
366 |
msgstr "Valor"
|
367 |
|
@@ -398,8 +398,8 @@ msgstr "Ações"
|
|
398 |
|
399 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
400 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
msgid "Fieldset"
|
404 |
msgstr "Área do Campo"
|
405 |
|
@@ -522,8 +522,8 @@ msgid "WordPress Fields"
|
|
522 |
msgstr "Campos WordPress"
|
523 |
|
524 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
525 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
527 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
528 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
529 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
@@ -549,88 +549,88 @@ msgid "SUCCESSFUL"
|
|
549 |
msgstr "CONCLUÍDO"
|
550 |
|
551 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
552 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
553 |
msgid "select"
|
554 |
msgstr "Selecionar"
|
555 |
|
556 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
msgid "Users per page"
|
559 |
msgstr "Usuários por Páginas"
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
563 |
msgid "Apply"
|
564 |
msgstr "Aplicar"
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
567 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
568 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
569 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
570 |
msgid "Users Extended"
|
571 |
msgstr "Usuários Extendidos"
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
574 |
#, php-format
|
575 |
msgid "Search results for “%s”"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
579 |
#, php-format
|
580 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
581 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
msgid "Search Users"
|
585 |
msgstr "Pesquisar por Usuários"
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
msgid "Role"
|
590 |
msgstr "Função"
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
595 |
msgid "Website"
|
596 |
msgstr "Website"
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
600 |
msgid "Posts"
|
601 |
msgstr "Postagens"
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
604 |
msgid "View posts by this author"
|
605 |
msgstr "Ver postagens desse autor"
|
606 |
|
607 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
608 |
msgid "Super Admin"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
612 |
#, php-format
|
613 |
msgid "e-mail: %s"
|
614 |
msgstr "e-mail: %s"
|
615 |
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
617 |
#, fuzzy
|
618 |
msgid "Change"
|
619 |
msgstr "Mudar imagem"
|
620 |
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
622 |
msgid "Update selected users"
|
623 |
msgstr "Atualizar Usuários selecionados"
|
624 |
|
625 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
626 |
msgid "Update"
|
627 |
msgstr "Atualizar"
|
628 |
|
629 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
630 |
msgid "OK"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
634 |
msgid "Cancel"
|
635 |
msgstr ""
|
636 |
|
@@ -640,7 +640,7 @@ msgid "New user registration on your site %s:"
|
|
640 |
msgstr "Novos usuários registrados no site %s:"
|
641 |
|
642 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
643 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
645 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
646 |
#, php-format
|
@@ -687,52 +687,57 @@ msgstr ""
|
|
687 |
"Depois de ativar, você receberá <strong>outro e-mail</strong> com seu login.\n"
|
688 |
"\n"
|
689 |
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
691 |
-
|
|
|
|
|
|
|
|
|
|
|
692 |
msgid "Your account is now active!"
|
693 |
msgstr "Sua conta agora está ativa!"
|
694 |
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
696 |
#, php-format
|
697 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
698 |
msgstr "Seu site em <a href=\"%1$s\">%2$s</a> Está ativo. Faça login usando seu nome de usuário e senha: “%3$s”. Verifique a Caixa de Entrada do seu e-mail às %4$s para senha e intruções. Se não receber seu e-mail, veja se não está na pasta de Spams. Se ainda não receber um e-mail em uma hora, tente <a href=\"%5$s\">redefinir sua senha</a></p>."
|
699 |
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
701 |
msgid "An error occurred during the activation"
|
702 |
msgstr "Um erro ocorreu durante a ativação"
|
703 |
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
705 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
706 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
707 |
#, php-format
|
708 |
msgid "Password: %s"
|
709 |
msgstr "Senha: %s"
|
710 |
|
711 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
712 |
msgid "Invalid activation key."
|
713 |
msgstr "Chave de ativação inválida"
|
714 |
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
716 |
msgid "The site is already active."
|
717 |
msgstr "O site já está ativo"
|
718 |
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
720 |
msgid "Could not create user"
|
721 |
msgstr "Não foi possível criar usuário"
|
722 |
|
723 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
724 |
msgid "That username is already activated."
|
725 |
msgstr "Este nome de usuário já está ativado"
|
726 |
|
727 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
728 |
msgid "That username is currently reserved but may be available in a couple of days."
|
729 |
msgstr "Nome de usuário reservado."
|
730 |
|
731 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
732 |
msgid "username and email used"
|
733 |
msgstr "Nome de usuário e e-mail usados"
|
734 |
|
735 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
736 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
737 |
msgstr "E-mail já usado. Verifique se não há um e-mail de ativação na sua caixa de entrada. Estará disponível em alguns dias se nada fizer."
|
738 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 15:03-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-06-02 15:03-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Diana K. Cury <dianakac@gmail.com>\n"
|
9 |
"Language: \n"
|
54 |
msgstr "não está correto"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
msgid "YES"
|
60 |
msgstr "SIM"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
msgid "NO"
|
66 |
msgstr "NÃO"
|
67 |
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr "Código digitado não está correto."
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:722
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Nome de Usuário"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:749
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Por favor envie um arquivo com uma das seguintes extensões"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Por favor envie uma imagem com uma das seguintes extensões"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
|
134 |
msgid "Strength indicator"
|
135 |
msgstr "Indicador de força"
|
136 |
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
138 |
#, fuzzy
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr "Dica: A senha deve ter ao menos sete caracteres. Para torná-la mais segura, use maiúsculas, minúsculas, números e simbolos como ! \\\" ? $ % ^ & )."
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1221
|
143 |
msgid "Change image"
|
144 |
msgstr "Mudar imagem"
|
145 |
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
147 |
msgid "Insert the code:"
|
148 |
msgstr "Inserir o código:"
|
149 |
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1296
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1298
|
152 |
msgid "Confirm your registration"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1304
|
156 |
msgid "A password will be e-mailed to you."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1312
|
160 |
msgid "← Back"
|
161 |
msgstr ""
|
162 |
|
351 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
352 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
356 |
msgid "Name"
|
357 |
msgstr "Nome"
|
358 |
|
360 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
361 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
364 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
365 |
msgid "Value"
|
366 |
msgstr "Valor"
|
367 |
|
398 |
|
399 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
400 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1199
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1290
|
403 |
msgid "Fieldset"
|
404 |
msgstr "Área do Campo"
|
405 |
|
522 |
msgstr "Campos WordPress"
|
523 |
|
524 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
527 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
528 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
529 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
549 |
msgstr "CONCLUÍDO"
|
550 |
|
551 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1790
|
553 |
msgid "select"
|
554 |
msgstr "Selecionar"
|
555 |
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1294
|
558 |
msgid "Users per page"
|
559 |
msgstr "Usuários por Páginas"
|
560 |
|
561 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1205
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1296
|
563 |
msgid "Apply"
|
564 |
msgstr "Aplicar"
|
565 |
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1370
|
567 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
568 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
569 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
570 |
msgid "Users Extended"
|
571 |
msgstr "Usuários Extendidos"
|
572 |
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1378
|
574 |
#, php-format
|
575 |
msgid "Search results for “%s”"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1416
|
579 |
#, php-format
|
580 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
581 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
|
584 |
msgid "Search Users"
|
585 |
msgstr "Pesquisar por Usuários"
|
586 |
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1463
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
|
589 |
msgid "Role"
|
590 |
msgstr "Função"
|
591 |
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1468
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
|
594 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
595 |
msgid "Website"
|
596 |
msgstr "Website"
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1473
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
|
600 |
msgid "Posts"
|
601 |
msgstr "Postagens"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
604 |
msgid "View posts by this author"
|
605 |
msgstr "Ver postagens desse autor"
|
606 |
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1621
|
608 |
msgid "Super Admin"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1632
|
612 |
#, php-format
|
613 |
msgid "e-mail: %s"
|
614 |
msgstr "e-mail: %s"
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
617 |
#, fuzzy
|
618 |
msgid "Change"
|
619 |
msgstr "Mudar imagem"
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1759
|
622 |
msgid "Update selected users"
|
623 |
msgstr "Atualizar Usuários selecionados"
|
624 |
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
626 |
msgid "Update"
|
627 |
msgstr "Atualizar"
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1795
|
630 |
msgid "OK"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1796
|
634 |
msgid "Cancel"
|
635 |
msgstr ""
|
636 |
|
640 |
msgstr "Novos usuários registrados no site %s:"
|
641 |
|
642 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
645 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
646 |
#, php-format
|
687 |
"Depois de ativar, você receberá <strong>outro e-mail</strong> com seu login.\n"
|
688 |
"\n"
|
689 |
|
690 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
691 |
+
#, php-format
|
692 |
+
msgid "[%1$s] Activate %2$s"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
697 |
msgid "Your account is now active!"
|
698 |
msgstr "Sua conta agora está ativa!"
|
699 |
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
|
701 |
#, php-format
|
702 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
703 |
msgstr "Seu site em <a href=\"%1$s\">%2$s</a> Está ativo. Faça login usando seu nome de usuário e senha: “%3$s”. Verifique a Caixa de Entrada do seu e-mail às %4$s para senha e intruções. Se não receber seu e-mail, veja se não está na pasta de Spams. Se ainda não receber um e-mail em uma hora, tente <a href=\"%5$s\">redefinir sua senha</a></p>."
|
704 |
|
705 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
706 |
msgid "An error occurred during the activation"
|
707 |
msgstr "Um erro ocorreu durante a ativação"
|
708 |
|
709 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
710 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
711 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
712 |
#, php-format
|
713 |
msgid "Password: %s"
|
714 |
msgstr "Senha: %s"
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
|
717 |
msgid "Invalid activation key."
|
718 |
msgstr "Chave de ativação inválida"
|
719 |
|
720 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
721 |
msgid "The site is already active."
|
722 |
msgstr "O site já está ativo"
|
723 |
|
724 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
|
725 |
msgid "Could not create user"
|
726 |
msgstr "Não foi possível criar usuário"
|
727 |
|
728 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
729 |
msgid "That username is already activated."
|
730 |
msgstr "Este nome de usuário já está ativado"
|
731 |
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
|
733 |
msgid "That username is currently reserved but may be available in a couple of days."
|
734 |
msgstr "Nome de usuário reservado."
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
|
737 |
msgid "username and email used"
|
738 |
msgstr "Nome de usuário e e-mail usados"
|
739 |
|
740 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
|
741 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
742 |
msgstr "E-mail já usado. Verifique se não há um e-mail de ativação na sua caixa de entrada. Estará disponível em alguns dias se nada fizer."
|
743 |
|
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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: mikolka <mikolka.info@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -54,14 +54,14 @@ msgid "isn’t correct"
|
|
54 |
msgstr "не верно"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "ДА"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "НЕТ"
|
67 |
|
@@ -106,58 +106,58 @@ msgstr "имеет длину больше чем"
|
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Имя пользователя"
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
127 |
|
128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
133 |
|
134 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Изменить порядок"
|
146 |
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
@@ -354,8 +354,8 @@ msgstr "С <strong>изображением(picture)</strong>: вы можете
|
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
356 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
359 |
msgid "Name"
|
360 |
msgstr "Имя"
|
361 |
|
@@ -363,8 +363,8 @@ msgstr "Имя"
|
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
365 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
msgid "Value"
|
369 |
msgstr "Значение"
|
370 |
|
@@ -401,8 +401,8 @@ msgstr "Действия"
|
|
401 |
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
403 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
406 |
#, fuzzy
|
407 |
msgid "Fieldset"
|
408 |
msgstr "Поля"
|
@@ -529,8 +529,8 @@ msgid "WordPress Fields"
|
|
529 |
msgstr "WordPress Fields"
|
530 |
|
531 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
536 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
@@ -556,23 +556,23 @@ msgid "SUCCESSFUL"
|
|
556 |
msgstr "УСПЕШНО"
|
557 |
|
558 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
#, fuzzy
|
561 |
msgid "select"
|
562 |
msgstr "Удалить"
|
563 |
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
566 |
#, fuzzy
|
567 |
msgid "Users per page"
|
568 |
msgstr "Таблица данных пользователей"
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
572 |
msgid "Apply"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
578 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
@@ -580,70 +580,70 @@ msgstr ""
|
|
580 |
msgid "Users Extended"
|
581 |
msgstr "Список Авторов и продвинутых пользователей"
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
#, php-format
|
585 |
msgid "Search results for “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
#, php-format
|
590 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
msgid "Search Users"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
#, fuzzy
|
600 |
msgid "Role"
|
601 |
msgstr "Правила"
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
605 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
606 |
msgid "Website"
|
607 |
msgstr "Адрес сайта"
|
608 |
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
611 |
msgid "Posts"
|
612 |
msgstr "Сообщения"
|
613 |
|
614 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
615 |
msgid "View posts by this author"
|
616 |
msgstr "Просмотреть сообщения этого автора"
|
617 |
|
618 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
619 |
msgid "Super Admin"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
623 |
#, php-format
|
624 |
msgid "e-mail: %s"
|
625 |
msgstr "e-mail: %s"
|
626 |
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
628 |
#, fuzzy
|
629 |
msgid "Change"
|
630 |
msgstr "Изменить порядок"
|
631 |
|
632 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
633 |
#, fuzzy
|
634 |
msgid "Update selected users"
|
635 |
msgstr "Удалить выбранные поля"
|
636 |
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
638 |
#, fuzzy
|
639 |
msgid "Update"
|
640 |
msgstr "Обновить поле"
|
641 |
|
642 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
643 |
msgid "OK"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
647 |
msgid "Cancel"
|
648 |
msgstr ""
|
649 |
|
@@ -653,7 +653,7 @@ msgid "New user registration on your site %s:"
|
|
653 |
msgstr ""
|
654 |
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
657 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
658 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
659 |
#, fuzzy, php-format
|
@@ -694,52 +694,57 @@ msgid ""
|
|
694 |
"\n"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
698 |
-
|
|
|
|
|
|
|
|
|
|
|
699 |
msgid "Your account is now active!"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
703 |
#, php-format
|
704 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
708 |
msgid "An error occurred during the activation"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
712 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
713 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
714 |
#, php-format
|
715 |
msgid "Password: %s"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
719 |
msgid "Invalid activation key."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
723 |
msgid "The site is already active."
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
727 |
msgid "Could not create user"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
731 |
msgid "That username is already activated."
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
735 |
msgid "That username is currently reserved but may be available in a couple of days."
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
739 |
msgid "username and email used"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
743 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
744 |
msgstr ""
|
745 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 15:03-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-06-02 15:03-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: mikolka <mikolka.info@gmail.com>\n"
|
9 |
"Language: \n"
|
54 |
msgstr "не верно"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
msgid "YES"
|
60 |
msgstr "ДА"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
msgid "NO"
|
66 |
msgstr "НЕТ"
|
67 |
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:722
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Имя пользователя"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:749
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-mail"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1221
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Изменить порядок"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1296
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1298
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1304
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1312
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
356 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
359 |
msgid "Name"
|
360 |
msgstr "Имя"
|
361 |
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
365 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
368 |
msgid "Value"
|
369 |
msgstr "Значение"
|
370 |
|
401 |
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
403 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1199
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1290
|
406 |
#, fuzzy
|
407 |
msgid "Fieldset"
|
408 |
msgstr "Поля"
|
529 |
msgstr "WordPress Fields"
|
530 |
|
531 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
535 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
536 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
556 |
msgstr "УСПЕШНО"
|
557 |
|
558 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1790
|
560 |
#, fuzzy
|
561 |
msgid "select"
|
562 |
msgstr "Удалить"
|
563 |
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1294
|
566 |
#, fuzzy
|
567 |
msgid "Users per page"
|
568 |
msgstr "Таблица данных пользователей"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1205
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1296
|
572 |
msgid "Apply"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1370
|
576 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
577 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
578 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
580 |
msgid "Users Extended"
|
581 |
msgstr "Список Авторов и продвинутых пользователей"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1378
|
584 |
#, php-format
|
585 |
msgid "Search results for “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1416
|
589 |
#, php-format
|
590 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
|
594 |
msgid "Search Users"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1463
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
|
599 |
#, fuzzy
|
600 |
msgid "Role"
|
601 |
msgstr "Правила"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1468
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
|
605 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
606 |
msgid "Website"
|
607 |
msgstr "Адрес сайта"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1473
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
|
611 |
msgid "Posts"
|
612 |
msgstr "Сообщения"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
615 |
msgid "View posts by this author"
|
616 |
msgstr "Просмотреть сообщения этого автора"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1621
|
619 |
msgid "Super Admin"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1632
|
623 |
#, php-format
|
624 |
msgid "e-mail: %s"
|
625 |
msgstr "e-mail: %s"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
628 |
#, fuzzy
|
629 |
msgid "Change"
|
630 |
msgstr "Изменить порядок"
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1759
|
633 |
#, fuzzy
|
634 |
msgid "Update selected users"
|
635 |
msgstr "Удалить выбранные поля"
|
636 |
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
638 |
#, fuzzy
|
639 |
msgid "Update"
|
640 |
msgstr "Обновить поле"
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1795
|
643 |
msgid "OK"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1796
|
647 |
msgid "Cancel"
|
648 |
msgstr ""
|
649 |
|
653 |
msgstr ""
|
654 |
|
655 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
657 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
658 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
659 |
#, fuzzy, php-format
|
694 |
"\n"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
698 |
+
#, php-format
|
699 |
+
msgid "[%1$s] Activate %2$s"
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
704 |
msgid "Your account is now active!"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
|
708 |
#, php-format
|
709 |
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>."
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
713 |
msgid "An error occurred during the activation"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
717 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
718 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
719 |
#, php-format
|
720 |
msgid "Password: %s"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
|
724 |
msgid "Invalid activation key."
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
728 |
msgid "The site is already active."
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
|
732 |
msgid "Could not create user"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
736 |
msgid "That username is already activated."
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
|
740 |
msgid "That username is currently reserved but may be available in a couple of days."
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
|
744 |
msgid "username and email used"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
|
748 |
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."
|
749 |
msgstr ""
|
750 |
|
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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
@@ -54,14 +54,14 @@ msgid "isn’t correct"
|
|
54 |
msgstr "är ej korrekt"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "JA"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "NEJ"
|
67 |
|
@@ -106,58 +106,58 @@ msgstr "får inte vara längre än"
|
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Användarnamn"
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-post"
|
121 |
|
122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
127 |
|
128 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
133 |
|
134 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Ändra ordning"
|
146 |
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
@@ -353,8 +353,8 @@ msgstr "Med <strong>bild</strong>: Du kan använde en standard bild med (URL
|
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
358 |
msgid "Name"
|
359 |
msgstr "Namn"
|
360 |
|
@@ -362,8 +362,8 @@ msgstr "Namn"
|
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
365 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
366 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
367 |
msgid "Value"
|
368 |
msgstr "Värde"
|
369 |
|
@@ -400,8 +400,8 @@ msgstr "Åtgärder"
|
|
400 |
|
401 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
msgid "Fieldset"
|
406 |
msgstr "Fältsektion"
|
407 |
|
@@ -527,8 +527,8 @@ msgid "WordPress Fields"
|
|
527 |
msgstr "WordPress-fält"
|
528 |
|
529 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
531 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
532 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
533 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
@@ -554,91 +554,91 @@ msgid "SUCCESSFUL"
|
|
554 |
msgstr "FRAMGÅNGSRIKT"
|
555 |
|
556 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
#, fuzzy
|
559 |
msgid "select"
|
560 |
msgstr "Ta bort"
|
561 |
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
msgid "Users per page"
|
565 |
msgstr "Användare per sida"
|
566 |
|
567 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
569 |
msgid "Apply"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
573 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
574 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
576 |
msgid "Users Extended"
|
577 |
msgstr "Extra fält för användare"
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
580 |
#, php-format
|
581 |
msgid "Search results for “%s”"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
585 |
#, php-format
|
586 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
590 |
msgid "Search Users"
|
591 |
msgstr "Sök Användare"
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
595 |
msgid "Role"
|
596 |
msgstr "Roll"
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
600 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
601 |
msgid "Website"
|
602 |
msgstr "Webbsajt"
|
603 |
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
605 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
606 |
msgid "Posts"
|
607 |
msgstr "Postningar"
|
608 |
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
610 |
msgid "View posts by this author"
|
611 |
msgstr "Visa postningar av dessa skribent"
|
612 |
|
613 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
614 |
msgid "Super Admin"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
618 |
#, php-format
|
619 |
msgid "e-mail: %s"
|
620 |
msgstr "e-post: %s"
|
621 |
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
623 |
#, fuzzy
|
624 |
msgid "Change"
|
625 |
msgstr "Ändra ordning"
|
626 |
|
627 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
628 |
#, fuzzy
|
629 |
msgid "Update selected users"
|
630 |
msgstr "Ta bort valda fälter"
|
631 |
|
632 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
633 |
#, fuzzy
|
634 |
msgid "Update"
|
635 |
msgstr "Uppdatera fält"
|
636 |
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
638 |
msgid "OK"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
642 |
msgid "Cancel"
|
643 |
msgstr ""
|
644 |
|
@@ -648,7 +648,7 @@ msgid "New user registration on your site %s:"
|
|
648 |
msgstr ""
|
649 |
|
650 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
651 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
652 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
653 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
654 |
#, fuzzy, php-format
|
@@ -689,52 +689,57 @@ msgid ""
|
|
689 |
"\n"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
693 |
-
|
|
|
|
|
|
|
|
|
|
|
694 |
msgid "Your account is now active!"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
698 |
#, php-format
|
699 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
703 |
msgid "An error occurred during the activation"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
707 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
708 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
709 |
#, php-format
|
710 |
msgid "Password: %s"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
714 |
msgid "Invalid activation key."
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
718 |
msgid "The site is already active."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
722 |
msgid "Could not create user"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
726 |
msgid "That username is already activated."
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
730 |
msgid "That username is currently reserved but may be available in a couple of days."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
734 |
msgid "username and email used"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
738 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
739 |
msgstr ""
|
740 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 15:03-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-06-02 15:03-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
54 |
msgstr "är ej korrekt"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
msgid "YES"
|
60 |
msgstr "JA"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
msgid "NO"
|
66 |
msgstr "NEJ"
|
67 |
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:722
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Användarnamn"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:749
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
119 |
msgid "E-mail"
|
120 |
msgstr "E-post"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
#, fuzzy
|
125 |
msgid "Please upload a file with one of the following extensions"
|
126 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
127 |
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
131 |
msgid "Please upload an image with one of the following extensions"
|
132 |
msgstr "Ladda upp en bild med en av följlande filändelser"
|
133 |
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
|
135 |
msgid "Strength indicator"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
139 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1221
|
143 |
#, fuzzy
|
144 |
msgid "Change image"
|
145 |
msgstr "Ändra ordning"
|
146 |
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
148 |
msgid "Insert the code:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1296
|
152 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1298
|
153 |
msgid "Confirm your registration"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1304
|
157 |
msgid "A password will be e-mailed to you."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1312
|
161 |
msgid "← Back"
|
162 |
msgstr ""
|
163 |
|
353 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
355 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
356 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
358 |
msgid "Name"
|
359 |
msgstr "Namn"
|
360 |
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
363 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
364 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
365 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
366 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
367 |
msgid "Value"
|
368 |
msgstr "Värde"
|
369 |
|
400 |
|
401 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1199
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1290
|
405 |
msgid "Fieldset"
|
406 |
msgstr "Fältsektion"
|
407 |
|
527 |
msgstr "WordPress-fält"
|
528 |
|
529 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
532 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
533 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
534 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
554 |
msgstr "FRAMGÅNGSRIKT"
|
555 |
|
556 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1790
|
558 |
#, fuzzy
|
559 |
msgid "select"
|
560 |
msgstr "Ta bort"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1294
|
564 |
msgid "Users per page"
|
565 |
msgstr "Användare per sida"
|
566 |
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1205
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1296
|
569 |
msgid "Apply"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1370
|
573 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
574 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
576 |
msgid "Users Extended"
|
577 |
msgstr "Extra fält för användare"
|
578 |
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1378
|
580 |
#, php-format
|
581 |
msgid "Search results for “%s”"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1416
|
585 |
#, php-format
|
586 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
|
590 |
msgid "Search Users"
|
591 |
msgstr "Sök Användare"
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1463
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
|
595 |
msgid "Role"
|
596 |
msgstr "Roll"
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1468
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
|
600 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
601 |
msgid "Website"
|
602 |
msgstr "Webbsajt"
|
603 |
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1473
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
|
606 |
msgid "Posts"
|
607 |
msgstr "Postningar"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
610 |
msgid "View posts by this author"
|
611 |
msgstr "Visa postningar av dessa skribent"
|
612 |
|
613 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1621
|
614 |
msgid "Super Admin"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1632
|
618 |
#, php-format
|
619 |
msgid "e-mail: %s"
|
620 |
msgstr "e-post: %s"
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
623 |
#, fuzzy
|
624 |
msgid "Change"
|
625 |
msgstr "Ändra ordning"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1759
|
628 |
#, fuzzy
|
629 |
msgid "Update selected users"
|
630 |
msgstr "Ta bort valda fälter"
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
633 |
#, fuzzy
|
634 |
msgid "Update"
|
635 |
msgstr "Uppdatera fält"
|
636 |
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1795
|
638 |
msgid "OK"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1796
|
642 |
msgid "Cancel"
|
643 |
msgstr ""
|
644 |
|
648 |
msgstr ""
|
649 |
|
650 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
652 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
653 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
654 |
#, fuzzy, php-format
|
689 |
"\n"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
693 |
+
#, php-format
|
694 |
+
msgid "[%1$s] Activate %2$s"
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
699 |
msgid "Your account is now active!"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
|
703 |
#, php-format
|
704 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
708 |
msgid "An error occurred during the activation"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
712 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
713 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
714 |
#, php-format
|
715 |
msgid "Password: %s"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
|
719 |
msgid "Invalid activation key."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
723 |
msgid "The site is already active."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
|
727 |
msgid "Could not create user"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
731 |
msgid "That username is already activated."
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
|
735 |
msgid "That username is currently reserved but may be available in a couple of days."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
|
739 |
msgid "username and email used"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
|
743 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
744 |
msgstr ""
|
745 |
|
langs/cimy_uef-uk.mo
CHANGED
Binary file
|
langs/cimy_uef-uk.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Oleg Bondarenko <o.o.bondarenko@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -54,14 +54,14 @@ msgid "isn’t correct"
|
|
54 |
msgstr "не правильно"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
59 |
msgid "YES"
|
60 |
msgstr "ТАК"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
64 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
65 |
msgid "NO"
|
66 |
msgstr "НІ"
|
67 |
|
@@ -106,56 +106,56 @@ msgstr "не може мати довжину більш ніж"
|
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr "Введений код не правильний."
|
108 |
|
109 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
111 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Ім'я користувача"
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
117 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
119 |
msgid "E-mail"
|
120 |
msgstr "Ел. пошта"
|
121 |
|
122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
134 |
msgid "Strength indicator"
|
135 |
msgstr "Індикатор сили"
|
136 |
|
137 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
138 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
139 |
msgstr "Підказка: пароль повинен бути не менше семи символів. Щоб зробити його сильнішим, використовуйте верхній та нижній регістр, цифри і символи, наприклад ! \" ? $ % ^ & )."
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
142 |
msgid "Change image"
|
143 |
msgstr "Змінити картинку"
|
144 |
|
145 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
146 |
msgid "Insert the code:"
|
147 |
msgstr "Вставте код:"
|
148 |
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
151 |
msgid "Confirm your registration"
|
152 |
msgstr "Підтвердіть реєстрацію"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
155 |
msgid "A password will be e-mailed to you."
|
156 |
msgstr "Пароль буде направлений до вас ел. поштою."
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:
|
159 |
msgid "← Back"
|
160 |
msgstr "← Назад"
|
161 |
|
@@ -350,8 +350,8 @@ msgstr "З <strong>файл<strong>: ви можете попередньо за
|
|
350 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
351 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
352 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
353 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
354 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
355 |
msgid "Name"
|
356 |
msgstr "Ім'я"
|
357 |
|
@@ -359,8 +359,8 @@ msgstr "Ім'я"
|
|
359 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
360 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
361 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
362 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
msgid "Value"
|
365 |
msgstr "Значення"
|
366 |
|
@@ -397,8 +397,8 @@ msgstr "Дії"
|
|
397 |
|
398 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
399 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
msgid "Fieldset"
|
403 |
msgstr "Група полів"
|
404 |
|
@@ -519,8 +519,8 @@ msgid "WordPress Fields"
|
|
519 |
msgstr "Поля WordPress"
|
520 |
|
521 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
524 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
525 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
526 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
@@ -546,87 +546,87 @@ msgid "SUCCESSFUL"
|
|
546 |
msgstr "УСПІШНО"
|
547 |
|
548 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
549 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
550 |
msgid "select"
|
551 |
msgstr "вибрати"
|
552 |
|
553 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
554 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
555 |
msgid "Users per page"
|
556 |
msgstr "Користувачів на сторінку"
|
557 |
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
msgid "Apply"
|
561 |
msgstr "Застосувати"
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
565 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
566 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
567 |
msgid "Users Extended"
|
568 |
msgstr "Користувачі (Розширене)"
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
571 |
#, php-format
|
572 |
msgid "Search results for “%s”"
|
573 |
msgstr "Шукати результати для “%s”"
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
576 |
#, php-format
|
577 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
578 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
581 |
msgid "Search Users"
|
582 |
msgstr "Пошук Користувачів"
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
585 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
586 |
msgid "Role"
|
587 |
msgstr "Роль"
|
588 |
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
590 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
591 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
592 |
msgid "Website"
|
593 |
msgstr "Веб-сайт"
|
594 |
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
597 |
msgid "Posts"
|
598 |
msgstr "Дописи"
|
599 |
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
601 |
msgid "View posts by this author"
|
602 |
msgstr "Переглянути всі дописи цього автора"
|
603 |
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
605 |
msgid "Super Admin"
|
606 |
msgstr "Супер Адмін"
|
607 |
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
609 |
#, php-format
|
610 |
msgid "e-mail: %s"
|
611 |
msgstr "ел. пошта: %s"
|
612 |
|
613 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
614 |
msgid "Change"
|
615 |
msgstr "Зміна"
|
616 |
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
618 |
msgid "Update selected users"
|
619 |
msgstr "Оновлення вибраних користувачів"
|
620 |
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
622 |
msgid "Update"
|
623 |
msgstr "Оновлення"
|
624 |
|
625 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
626 |
msgid "OK"
|
627 |
msgstr "ОК"
|
628 |
|
629 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
630 |
msgid "Cancel"
|
631 |
msgstr "Скасувати"
|
632 |
|
@@ -636,7 +636,7 @@ msgid "New user registration on your site %s:"
|
|
636 |
msgstr "Реєстрація нового користувача на вашому сайті %s:"
|
637 |
|
638 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
639 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
640 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
641 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
642 |
#, php-format
|
@@ -683,52 +683,57 @@ msgstr ""
|
|
683 |
"Після активації, ви отримаєте *ще одне повідомлення* з вашим логіном.\n"
|
684 |
"\n"
|
685 |
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
687 |
-
|
|
|
|
|
|
|
|
|
|
|
688 |
msgid "Your account is now active!"
|
689 |
msgstr "Тепер ваш акаунт активний!"
|
690 |
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
692 |
#, php-format
|
693 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
694 |
msgstr "Ваш сайт за адресою <a href=\"%1$s\">%2$s</a> активний. Тепер ви можете увійти в свій сайт, використовуючи вибране вами ім'я користувача “%3$s”. Будь ласка, перевірте вашу ел. поштову скриньку на %4$s для отримання вашого пароля та логіну. Якщо ви не отримаєте ел. пошту, будь ласка, перевірте вашу папку зі спамом. Якщо ви все ще не отримали листа протягом години, ви можете <a href=\"%5$s\">скинути ваш пароль</a></p>."
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
697 |
msgid "An error occurred during the activation"
|
698 |
msgstr "Помилка при активації"
|
699 |
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
701 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
702 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
703 |
#, php-format
|
704 |
msgid "Password: %s"
|
705 |
msgstr "Пароль: %s"
|
706 |
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
708 |
msgid "Invalid activation key."
|
709 |
msgstr "Неприпустимий ключ активації."
|
710 |
|
711 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
712 |
msgid "The site is already active."
|
713 |
msgstr "Сайт вже активний."
|
714 |
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
716 |
msgid "Could not create user"
|
717 |
msgstr "Не вдається створити користувача"
|
718 |
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
720 |
msgid "That username is already activated."
|
721 |
msgstr "Це ім'я користувача вже активовано."
|
722 |
|
723 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
724 |
msgid "That username is currently reserved but may be available in a couple of days."
|
725 |
msgstr "Це ім'я користувача наразі зарезервовано, але може стати доступним впродовж пари днів."
|
726 |
|
727 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
728 |
msgid "username and email used"
|
729 |
msgstr "ім'я користувача та адреса ел. пошти використані"
|
730 |
|
731 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:
|
732 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
733 |
msgstr "Ця адреса ел. пошти вже використовується. Будь ласка, перевірте вашу поштову скриньку на предмет листа активації. Вона стане доступна через пару днів, якщо нічого не робити."
|
734 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 15:03-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-06-02 15:03-0800\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: Oleg Bondarenko <o.o.bondarenko@gmail.com>\n"
|
9 |
"Language: \n"
|
54 |
msgstr "не правильно"
|
55 |
|
56 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
58 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
59 |
msgid "YES"
|
60 |
msgstr "ТАК"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:521
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
|
65 |
msgid "NO"
|
66 |
msgstr "НІ"
|
67 |
|
106 |
msgid "Typed code is not correct."
|
107 |
msgstr "Введений код не правильний."
|
108 |
|
109 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:722
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1448
|
111 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1449
|
112 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:192
|
113 |
msgid "Username"
|
114 |
msgstr "Ім'я користувача"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:749
|
117 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1458
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
|
119 |
msgid "E-mail"
|
120 |
msgstr "Ел. пошта"
|
121 |
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
|
123 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
|
124 |
msgid "Please upload a file with one of the following extensions"
|
125 |
msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
|
126 |
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
|
129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
|
130 |
msgid "Please upload an image with one of the following extensions"
|
131 |
msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
|
134 |
msgid "Strength indicator"
|
135 |
msgstr "Індикатор сили"
|
136 |
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1182
|
138 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & )."
|
139 |
msgstr "Підказка: пароль повинен бути не менше семи символів. Щоб зробити його сильнішим, використовуйте верхній та нижній регістр, цифри і символи, наприклад ! \" ? $ % ^ & )."
|
140 |
|
141 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1221
|
142 |
msgid "Change image"
|
143 |
msgstr "Змінити картинку"
|
144 |
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
146 |
msgid "Insert the code:"
|
147 |
msgstr "Вставте код:"
|
148 |
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1296
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1298
|
151 |
msgid "Confirm your registration"
|
152 |
msgstr "Підтвердіть реєстрацію"
|
153 |
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1304
|
155 |
msgid "A password will be e-mailed to you."
|
156 |
msgstr "Пароль буде направлений до вас ел. поштою."
|
157 |
|
158 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1312
|
159 |
msgid "← Back"
|
160 |
msgstr "← Назад"
|
161 |
|
350 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:576
|
351 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
352 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1453
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1454
|
355 |
msgid "Name"
|
356 |
msgstr "Ім'я"
|
357 |
|
359 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:577
|
360 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:777
|
361 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:874
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
364 |
msgid "Value"
|
365 |
msgstr "Значення"
|
366 |
|
397 |
|
398 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
|
399 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:888
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1199
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1290
|
402 |
msgid "Fieldset"
|
403 |
msgstr "Група полів"
|
404 |
|
519 |
msgstr "Поля WordPress"
|
520 |
|
521 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:750
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1763
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1768
|
524 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
|
525 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
526 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
|
546 |
msgstr "УСПІШНО"
|
547 |
|
548 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1790
|
550 |
msgid "select"
|
551 |
msgstr "вибрати"
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1294
|
555 |
msgid "Users per page"
|
556 |
msgstr "Користувачів на сторінку"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1205
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1296
|
560 |
msgid "Apply"
|
561 |
msgstr "Застосувати"
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1370
|
564 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
565 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
566 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
567 |
msgid "Users Extended"
|
568 |
msgstr "Користувачі (Розширене)"
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1378
|
571 |
#, php-format
|
572 |
msgid "Search results for “%s”"
|
573 |
msgstr "Шукати результати для “%s”"
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1416
|
576 |
#, php-format
|
577 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
578 |
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
579 |
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
|
581 |
msgid "Search Users"
|
582 |
msgstr "Пошук Користувачів"
|
583 |
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1463
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
|
586 |
msgid "Role"
|
587 |
msgstr "Роль"
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1468
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
|
591 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:324
|
592 |
msgid "Website"
|
593 |
msgstr "Веб-сайт"
|
594 |
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1473
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
|
597 |
msgid "Posts"
|
598 |
msgstr "Дописи"
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
601 |
msgid "View posts by this author"
|
602 |
msgstr "Переглянути всі дописи цього автора"
|
603 |
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1621
|
605 |
msgid "Super Admin"
|
606 |
msgstr "Супер Адмін"
|
607 |
|
608 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1632
|
609 |
#, php-format
|
610 |
msgid "e-mail: %s"
|
611 |
msgstr "ел. пошта: %s"
|
612 |
|
613 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
614 |
msgid "Change"
|
615 |
msgstr "Зміна"
|
616 |
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1759
|
618 |
msgid "Update selected users"
|
619 |
msgstr "Оновлення вибраних користувачів"
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1780
|
622 |
msgid "Update"
|
623 |
msgstr "Оновлення"
|
624 |
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1795
|
626 |
msgid "OK"
|
627 |
msgstr "ОК"
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1796
|
630 |
msgid "Cancel"
|
631 |
msgstr "Скасувати"
|
632 |
|
636 |
msgstr "Реєстрація нового користувача на вашому сайті %s:"
|
637 |
|
638 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
639 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
640 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
641 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
|
642 |
#, php-format
|
683 |
"Після активації, ви отримаєте *ще одне повідомлення* з вашим логіном.\n"
|
684 |
"\n"
|
685 |
|
686 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
687 |
+
#, php-format
|
688 |
+
msgid "[%1$s] Activate %2$s"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
|
692 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
693 |
msgid "Your account is now active!"
|
694 |
msgstr "Тепер ваш акаунт активний!"
|
695 |
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
|
697 |
#, php-format
|
698 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
699 |
msgstr "Ваш сайт за адресою <a href=\"%1$s\">%2$s</a> активний. Тепер ви можете увійти в свій сайт, використовуючи вибране вами ім'я користувача “%3$s”. Будь ласка, перевірте вашу ел. поштову скриньку на %4$s для отримання вашого пароля та логіну. Якщо ви не отримаєте ел. пошту, будь ласка, перевірте вашу папку зі спамом. Якщо ви все ще не отримали листа протягом години, ви можете <a href=\"%5$s\">скинути ваш пароль</a></p>."
|
700 |
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
702 |
msgid "An error occurred during the activation"
|
703 |
msgstr "Помилка при активації"
|
704 |
|
705 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
|
706 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
707 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
|
708 |
#, php-format
|
709 |
msgid "Password: %s"
|
710 |
msgstr "Пароль: %s"
|
711 |
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
|
713 |
msgid "Invalid activation key."
|
714 |
msgstr "Неприпустимий ключ активації."
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
|
717 |
msgid "The site is already active."
|
718 |
msgstr "Сайт вже активний."
|
719 |
|
720 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
|
721 |
msgid "Could not create user"
|
722 |
msgstr "Не вдається створити користувача"
|
723 |
|
724 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
|
725 |
msgid "That username is already activated."
|
726 |
msgstr "Це ім'я користувача вже активовано."
|
727 |
|
728 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
|
729 |
msgid "That username is currently reserved but may be available in a couple of days."
|
730 |
msgstr "Це ім'я користувача наразі зарезервовано, але може стати доступним впродовж пари днів."
|
731 |
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
|
733 |
msgid "username and email used"
|
734 |
msgstr "ім'я користувача та адреса ел. пошти використані"
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
|
737 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
738 |
msgstr "Ця адреса ел. пошти вже використовується. Будь ласка, перевірте вашу поштову скриньку на предмет листа активації. Вона стане доступна через пару днів, якщо нічого не робити."
|
739 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Website link: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra
|
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar, recaptcha, captcha
|
6 |
Requires at least: 3.1
|
7 |
Tested up to: 3.5
|
8 |
-
Stable tag: 2.5.
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar, recaptcha, captcha
|
6 |
Requires at least: 3.1
|
7 |
Tested up to: 3.5
|
8 |
+
Stable tag: 2.5.2
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|