Version Description
Download this release
Release Info
Developer | Cimmo |
Plugin | ![]() |
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 |