Version Description
Download this release
Release Info
Developer | Cimmo |
Plugin | Cimy User Extra Fields |
Version | 1.5.0 |
Comparing to | |
See all releases |
Code changes from version 1.4.0 to 1.5.0
- README_OFFICIAL.txt +122 -37
- cimy_uef_admin.php +222 -48
- cimy_uef_db.php +94 -42
- cimy_uef_functions.php +14 -10
- cimy_uef_mu_activation.php +49 -0
- cimy_uef_options.php +6 -4
- cimy_uef_profile.php +473 -400
- cimy_uef_register.php +544 -370
- cimy_user_extra_fields.php +150 -65
- js/upload_file.js +51 -0
- js/upload_pic.js +0 -23
- langs/cimy_uef-bg_BG.mo +0 -0
- langs/cimy_uef-bg_BG.po +501 -456
- langs/cimy_uef-da_DK.mo +0 -0
- langs/cimy_uef-da_DK.po +502 -457
- langs/cimy_uef-de_DE.mo +0 -0
- langs/cimy_uef-de_DE.po +506 -461
- langs/cimy_uef-es_ES.mo +0 -0
- langs/cimy_uef-es_ES.po +883 -0
- langs/cimy_uef-fr_FR.mo +0 -0
- langs/cimy_uef-fr_FR.po +502 -457
- langs/cimy_uef-it_IT.mo +0 -0
- langs/cimy_uef-it_IT.po +493 -456
- langs/cimy_uef-pt_BR.mo +0 -0
- langs/cimy_uef-pt_BR.po +504 -459
- langs/cimy_uef-ru_RU.mo +0 -0
- langs/cimy_uef-ru_RU.po +502 -457
- langs/cimy_uef-sv_SE.mo +0 -0
- langs/cimy_uef-sv_SE.po +552 -521
- readme.txt +72 -48
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- screenshot-4.png +0 -0
README_OFFICIAL.txt
CHANGED
@@ -7,39 +7,68 @@ We have developed a WordPress plug-in to do this.
|
|
7 |
|
8 |
There are some plug-ins that do something similar, but this one wants to focus on giving the administrator the possibility to add all fields needed, on the rules that can be defined for each field, and in giving the possibility to both administration and the user to change the data inserted.
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
11 |
|
12 |
Two new menus are:
|
13 |
|
14 |
-
WordPress:
|
15 |
1. "Users -> A&U Extended" - lets you show users lists with the new fields that are created
|
16 |
2. "Settings -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
|
17 |
|
18 |
-
Wordpress MU:
|
19 |
1. "Site Admin -> Users Extended" - lets you show users lists with the new fields that are created
|
20 |
2. "Site Admin -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
|
21 |
|
22 |
Rules are:
|
23 |
|
24 |
* min/exact/max length admitted
|
25 |
-
[only for text, textarea, textarea-rich, password, picture, picture-url, avatar]
|
26 |
|
27 |
* field can be empty
|
28 |
-
[only for text, textarea, textarea-rich, password, picture, picture-url, dropdown, avatar]
|
29 |
|
30 |
* check for e-mail address syntax
|
31 |
[only for text, textarea, textarea-rich, password]
|
32 |
|
33 |
* field can be modified after the registration
|
34 |
-
[only for text, textarea, textarea-rich, password, picture, picture-url, checkbox, radio, dropdown, avatar]
|
35 |
[for radio and checkbox 'edit_only_if_empty' has no effects and 'edit_only_by_admin_or_if_empty' has the same effect as edit_only_by_admin]
|
36 |
|
37 |
* field equal to some value (for example accept terms and conditions)
|
38 |
[all except avatar by default set to 512]
|
39 |
|
40 |
* equal to can be or not case sensitive
|
41 |
-
[only for text, textarea, textarea-rich, password, dropdown]
|
42 |
|
|
|
43 |
* field can be hidden during registration
|
44 |
[all]
|
45 |
|
@@ -49,33 +78,17 @@ Rules are:
|
|
49 |
* field can be hidden in A&U Extended page
|
50 |
[all]
|
51 |
|
52 |
-
|
|
|
53 |
|
54 |
-
|
55 |
-
|
56 |
-
* textarea
|
57 |
-
* textarea-rich
|
58 |
-
* password
|
59 |
-
* checkbox
|
60 |
-
* radio
|
61 |
-
* drop-down
|
62 |
-
* picture
|
63 |
-
* picture-url
|
64 |
-
* registration-date
|
65 |
-
* avatar
|
66 |
|
67 |
-
|
|
|
|
|
|
|
68 |
|
69 |
-
Following WordPress hidden fields can be enabled during registration:
|
70 |
-
* password
|
71 |
-
* first name
|
72 |
-
* last name
|
73 |
-
* nickname
|
74 |
-
* website
|
75 |
-
* Aim
|
76 |
-
* Yahoo IM
|
77 |
-
* Jabber/Google Talk
|
78 |
-
* biographical info
|
79 |
|
80 |
Bugs or suggestions can be mailed at: cimmino.marco@gmail.com
|
81 |
|
@@ -87,12 +100,37 @@ MYSQL >= 4.0
|
|
87 |
|
88 |
INSTALLATION:
|
89 |
- WordPress: just copy whole cimy-user-extra-fields subdir into your plug-in directory and activate it
|
90 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
|
92 |
UPDATE FROM A PREVIOUS VERSION:
|
93 |
- go to Cimy User Extra Fields admin options, press "Fix the problem" button and confirm
|
94 |
|
95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
FUNCTIONS USEFUL FOR YOUR THEMES OR TEMPLATES:
|
97 |
|
98 |
[Function get_cimyFieldValue]
|
@@ -375,7 +413,8 @@ Create the same directory needed for PICTURE support, avatars will be stored in
|
|
375 |
|
376 |
KNOWN ISSUES:
|
377 |
- if you add too many fields in the "A&U Extended" menu they will go out of frame
|
378 |
-
- some rules are applied only during registration (apart editable and visibility rules and max length for text and password fields only)
|
|
|
379 |
- registration date cannot be modified
|
380 |
- using WordPress password to let user customize its password works, but has one issue:
|
381 |
- on WordPress email received will contain wrong password (generated by WordPress), this due to WordPress limitation
|
@@ -383,7 +422,6 @@ KNOWN ISSUES:
|
|
383 |
- picture and avatar upload is disabled during registration under WordPress MU, will be possible once user is activated
|
384 |
- if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again
|
385 |
- dropdown issues:
|
386 |
-
- multiple choices dropdown are not supported
|
387 |
- custom value is not supported
|
388 |
- comma is not allowed as it is the delimiter
|
389 |
|
@@ -415,14 +453,20 @@ Q: Your plug-in is great, but when you will add support to add more than one cho
|
|
415 |
A: This feature is here since ages, for radio field just use the same name, for dropdown field read instructions in the add field area (in the plug-in).
|
416 |
|
417 |
|
418 |
-
Q:
|
419 |
|
420 |
-
A:
|
421 |
|
422 |
|
423 |
-
Q:
|
|
|
|
|
424 |
|
425 |
-
|
|
|
|
|
|
|
|
|
426 |
|
427 |
|
428 |
Q: When feature XYZ will be added?
|
@@ -458,6 +502,47 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
|
|
458 |
|
459 |
|
460 |
CHANGELOG:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
461 |
v1.4.0 - 18/03/2009
|
462 |
- Added user_id in the array returned by get_cimyFieldValue function
|
463 |
- Added regular expression to equalTo rule for text, textarea, textarea-rich, password, dropdown (thanks to Shane Hartman for the patch)
|
7 |
|
8 |
There are some plug-ins that do something similar, but this one wants to focus on giving the administrator the possibility to add all fields needed, on the rules that can be defined for each field, and in giving the possibility to both administration and the user to change the data inserted.
|
9 |
|
10 |
+
As for now the plug-in supports:
|
11 |
+
* text
|
12 |
+
* textarea
|
13 |
+
* textarea-rich
|
14 |
+
* password
|
15 |
+
* checkbox
|
16 |
+
* radio
|
17 |
+
* dropdown
|
18 |
+
* dropdown-multi
|
19 |
+
* picture
|
20 |
+
* picture-url
|
21 |
+
* registration-date
|
22 |
+
* avatar
|
23 |
+
* file
|
24 |
+
|
25 |
+
future versions can have more.
|
26 |
+
|
27 |
+
Following WordPress hidden fields can be enabled during registration:
|
28 |
+
* password
|
29 |
+
* first name
|
30 |
+
* last name
|
31 |
+
* nickname
|
32 |
+
* website
|
33 |
+
* Aim
|
34 |
+
* Yahoo IM
|
35 |
+
* Jabber/Google Talk
|
36 |
+
* biographical info
|
37 |
+
|
38 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
39 |
|
40 |
Two new menus are:
|
41 |
|
42 |
+
WordPress and WordPress MU per-blog registration:
|
43 |
1. "Users -> A&U Extended" - lets you show users lists with the new fields that are created
|
44 |
2. "Settings -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
|
45 |
|
46 |
+
Wordpress MU unique registration:
|
47 |
1. "Site Admin -> Users Extended" - lets you show users lists with the new fields that are created
|
48 |
2. "Site Admin -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
|
49 |
|
50 |
Rules are:
|
51 |
|
52 |
* min/exact/max length admitted
|
53 |
+
[only for text, textarea, textarea-rich, password, picture, picture-url, avatar, file]
|
54 |
|
55 |
* field can be empty
|
56 |
+
[only for text, textarea, textarea-rich, password, picture, picture-url, dropdown, dropdown-multi, avatar, file]
|
57 |
|
58 |
* check for e-mail address syntax
|
59 |
[only for text, textarea, textarea-rich, password]
|
60 |
|
61 |
* field can be modified after the registration
|
62 |
+
[only for text, textarea, textarea-rich, password, picture, picture-url, checkbox, radio, dropdown, dropdown-multi, avatar, file]
|
63 |
[for radio and checkbox 'edit_only_if_empty' has no effects and 'edit_only_by_admin_or_if_empty' has the same effect as edit_only_by_admin]
|
64 |
|
65 |
* field equal to some value (for example accept terms and conditions)
|
66 |
[all except avatar by default set to 512]
|
67 |
|
68 |
* equal to can be or not case sensitive
|
69 |
+
[only for text, textarea, textarea-rich, password, dropdown, dropdown-multi]
|
70 |
|
71 |
+
Visualization rules
|
72 |
* field can be hidden during registration
|
73 |
[all]
|
74 |
|
78 |
* field can be hidden in A&U Extended page
|
79 |
[all]
|
80 |
|
81 |
+
* field can be hidden in Search Engine (only if you installed the template)
|
82 |
+
[all]
|
83 |
|
84 |
+
* field can be hidden in Blog's public page (only if you installed the template)
|
85 |
+
[all]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
+
* all visualization rules can be overridden if an user has certain rights (default=no override)
|
88 |
+
[all]
|
89 |
+
|
90 |
+
New fields will be visible everywhere by default, a part some WordPress fields.
|
91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
Bugs or suggestions can be mailed at: cimmino.marco@gmail.com
|
94 |
|
100 |
|
101 |
INSTALLATION:
|
102 |
- WordPress: just copy whole cimy-user-extra-fields subdir into your plug-in directory and activate it
|
103 |
+
|
104 |
+
- WordPress MU:
|
105 |
+
There are two supported ways of using this plug-in under WordPress MU:
|
106 |
+
|
107 |
+
1) Unique registration
|
108 |
+
If you want that ALL Blogs on your MU installation follow the same registration with the same fields this is the case for you.
|
109 |
+
Every blog will have shared registration page and only the site administrators (of the whole MU installation) can change it.
|
110 |
+
- unpack the package under 'mu-plugins' directory, be sure that cimy_user_extra_fields.php is outside Cimy folder (move it if necessary), then go to "Site Admin -> Cimy User Extra Fields", press "Fix the problem" button and confirm
|
111 |
+
|
112 |
+
2) Per-Blog registration
|
113 |
+
If you want that every single Blog can define its own Extra Fields then you should choose this installation.
|
114 |
+
Every registration will have Extra Fields defined by single blogs, every user will have anyway WordPress fields shared with ALL Blogs, this how it works
|
115 |
+
WordPress MU.
|
116 |
+
- unpack the package under 'plugins' directory; BE sure that cimy_uef_mu_activation.php is installed under 'mu-plugins' directory
|
117 |
+
- then every single blog will have it under "Plugins" section
|
118 |
+
|
119 |
|
120 |
UPDATE FROM A PREVIOUS VERSION:
|
121 |
- go to Cimy User Extra Fields admin options, press "Fix the problem" button and confirm
|
122 |
|
123 |
|
124 |
+
HOW TO ASSIGN A DEFAULT VALUE TO THE EXTRA FIELDS:
|
125 |
+
1. You can assign a default value using the VALUE textarea in the admin panel.
|
126 |
+
2. You can use URL (only for registration page), example:
|
127 |
+
http://www.exampleofmywebsite.it/wordpress29/wp-login.php?action=register&FIELD_01=test1&FIELD_02=test2
|
128 |
+
|
129 |
+
FIELD_01 and FIELD_02 are two existing fields that will get default assignment with string "test1" and "test2".
|
130 |
+
Note 1: Field name should be upper case otherwise won't be recognized.
|
131 |
+
Note 2: These two methods can be used together, but remember that URL has higher priority.
|
132 |
+
|
133 |
+
|
134 |
FUNCTIONS USEFUL FOR YOUR THEMES OR TEMPLATES:
|
135 |
|
136 |
[Function get_cimyFieldValue]
|
413 |
|
414 |
KNOWN ISSUES:
|
415 |
- if you add too many fields in the "A&U Extended" menu they will go out of frame
|
416 |
+
- some rules are applied only during registration (apart editable and visibility rules and max length for text and password fields only) - this has been fixed using Wordpress >= 2.8.x
|
417 |
+
- some rules are never applied if you are using PHP 4.x please update to PHP 5.x as stated in the REQUIREMENTS
|
418 |
- registration date cannot be modified
|
419 |
- using WordPress password to let user customize its password works, but has one issue:
|
420 |
- on WordPress email received will contain wrong password (generated by WordPress), this due to WordPress limitation
|
422 |
- picture and avatar upload is disabled during registration under WordPress MU, will be possible once user is activated
|
423 |
- if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again
|
424 |
- dropdown issues:
|
|
|
425 |
- custom value is not supported
|
426 |
- comma is not allowed as it is the delimiter
|
427 |
|
453 |
A: This feature is here since ages, for radio field just use the same name, for dropdown field read instructions in the add field area (in the plug-in).
|
454 |
|
455 |
|
456 |
+
Q: Uploaded images are not resized, why?
|
457 |
|
458 |
+
A: You should add php-gd module (under Ubuntu install php5-gd package).
|
459 |
|
460 |
|
461 |
+
Q: Why big files are not being uploaded?
|
462 |
+
|
463 |
+
A: Please check this website, tells you how to change your PHP configurations to fix this issue: http://www.radinks.com/upload/config.php
|
464 |
|
465 |
+
|
466 |
+
Q: Why admin user cannot see all fields even if I set to do it?
|
467 |
+
|
468 |
+
A: Probably you installed the first time WordPress on PHP4 and you experienced this bug: http://core.trac.wordpress.org/ticket/8317
|
469 |
+
To fix the problem you need to create another administrator user and change admin user to another role and then back to administrator.
|
470 |
|
471 |
|
472 |
Q: When feature XYZ will be added?
|
502 |
|
503 |
|
504 |
CHANGELOG:
|
505 |
+
v1.5.0 - 30/01/2010
|
506 |
+
- Added registration fields pre-filed within URL support (thanks to Charlie Markwick for sponsoring)
|
507 |
+
- Fixed WordPress MU unique registration mode was completely broken (introduced with v1.5.0 beta2) (thanks to Nicolene Heunis)
|
508 |
+
- Fixed WordPress MU per-blog registration was not working if main site had the plug-in disabled
|
509 |
+
- Fixed WordPress MU per-blog A&U Extended was not working
|
510 |
+
- Readme file updated
|
511 |
+
|
512 |
+
v1.5.0 beta2 - 22/11/2009
|
513 |
+
- Added roles support to Extra Fields (thanx to Jakob Wallsten for sponsoring)
|
514 |
+
- Added public search support (thanx to Jakob Wallsten and Nacho Arribas for sponsoring)
|
515 |
+
- Added public profile support (thanx to Jakob Wallsten and Nacho Arribas for sponsoring)
|
516 |
+
- Added WordPress MU per-blog support (thanx to Uwe Moosheimer for sponsoring)
|
517 |
+
- Fixed picture fields visualization in profile (introduced with v1.5.0 beta1)
|
518 |
+
- Fixed text fields visualization in profile
|
519 |
+
- Fixed admin page was completely screwed for some translations like Swedish (thanks to Erik Billerby for pointing it)
|
520 |
+
- Fixed some fields were ignored when adding new user from user-new.php in some circumstances (thanks to Erik Billerby for pointing it)
|
521 |
+
- Fixed rules were applied anyway when adding new user from user-new.php (introduced with v1.5.0 beta1)
|
522 |
+
- Fixed WordPress fields' rules were applied anyway when updating profile (introduced with v1.5.0 beta1)
|
523 |
+
- Fixed rules were applied in some circumstances when updating profile even if the field was hidden (introduced with v1.5.0 beta1)
|
524 |
+
- Fixed get_cimyFieldValue function was too slow when retrieving data using user_id and field_id (thanks to Erik Billerby for pointing it)
|
525 |
+
- Fixed A&U Extended search was not properly working when dropdown or dropdown-multi fields were present
|
526 |
+
- Fixed get_cimyFieldValue was returning an uncleaned label for dropdown-multi fields
|
527 |
+
- Fixed Biographical Info sometimes were disappearing for no apparent reason (thanks to Edward)
|
528 |
+
- Updated Swedish translation (Erik)
|
529 |
+
- Updated Italian translation
|
530 |
+
|
531 |
+
v1.5.0 beta1 - 16/08/2009
|
532 |
+
- Added WordPress 2.8.x support
|
533 |
+
- Added dropdown-multi support (thanks to Natural Building Network)
|
534 |
+
- Added file upload support (thanks to Karl Sandoval)
|
535 |
+
- Added rules check also during profile update (WP >= 2.8.x only)
|
536 |
+
- Added possibility to see up to 5000 users per page on A&U Extended page
|
537 |
+
- Added Spanish translation (David Gil)
|
538 |
+
- Changed max length for: label, description and value up to 50000 chars
|
539 |
+
- Fixed avatar and picture upload were not working for some languages like French (thanks to Miss K)
|
540 |
+
- Fixed Extra Fields were displayed after other plugins in the registration page (thanks to Nicolene Heunis)
|
541 |
+
- Fixed to not display 'picture' if the file does not exists in A&U Extended page
|
542 |
+
- Fixed an untranslatable word in A&U Extended page
|
543 |
+
- Readme file updated
|
544 |
+
- Updated Italian translation
|
545 |
+
|
546 |
v1.4.0 - 18/03/2009
|
547 |
- Added user_id in the array returned by get_cimyFieldValue function
|
548 |
- Added regular expression to equalTo rule for text, textarea, textarea-rich, password, dropdown (thanks to Shane Hartman for the patch)
|
cimy_uef_admin.php
CHANGED
@@ -29,8 +29,8 @@ function cimy_admin_define_extra_fields() {
|
|
29 |
|
30 |
$minLen = 1;
|
31 |
$maxLen = $max_length_value;
|
32 |
-
|
33 |
-
$submit =
|
34 |
|
35 |
$action = "";
|
36 |
$field_order = "";
|
@@ -40,16 +40,26 @@ function cimy_admin_define_extra_fields() {
|
|
40 |
$action = "options";
|
41 |
$res = cimy_save_options();
|
42 |
}
|
43 |
-
else if (
|
44 |
$action = "add";
|
45 |
-
|
|
|
|
|
46 |
$action = "edit";
|
47 |
-
|
|
|
|
|
48 |
$action = "del";
|
49 |
-
|
|
|
|
|
50 |
$action = "delSel";
|
51 |
-
|
|
|
|
|
52 |
$action = "order";
|
|
|
|
|
53 |
|
54 |
if (!isset($res))
|
55 |
$res = array();
|
@@ -261,6 +271,15 @@ function cimy_admin_define_extra_fields() {
|
|
261 |
$show_in_aeu = $_POST['show_in_aeu'.$field_order];
|
262 |
$show_in_aeu == "1" ? $store_rule['show_in_aeu'] = true : $store_rule['show_in_aeu'] = false;
|
263 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
// START CHECKING FOR ERRORS
|
265 |
if ($name == "")
|
266 |
$errors['name'] = __("Name not specified", $cimy_uef_domain);
|
@@ -455,6 +474,14 @@ function cimy_admin_define_extra_fields() {
|
|
455 |
|
456 |
if ($store_rule['max_length'] == 0)
|
457 |
unset($store_rule['max_length']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
458 |
|
459 |
if ($action == "add") {
|
460 |
// CAN BE MODIFIED OR NOT
|
@@ -549,10 +576,34 @@ function cimy_admin_define_extra_fields() {
|
|
549 |
$selected_input["email"] = ' checked="checked"';
|
550 |
else
|
551 |
$selected_input["email"] = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
552 |
}
|
553 |
// action is not "add"
|
554 |
-
else
|
555 |
$selected_input["ok_edit"] = ' selected="selected"';
|
|
|
|
|
556 |
|
557 |
// CAN BE EMPTY
|
558 |
if (($store_rule['can_be_empty'] == true) || ($action != "add"))
|
@@ -572,13 +623,24 @@ function cimy_admin_define_extra_fields() {
|
|
572 |
else
|
573 |
$selected_input["show_in_profile"] = '';
|
574 |
|
575 |
-
|
576 |
// SHOW IN AUTHORS AND USERS EXTENDED
|
577 |
if ((!isset($store_rule['show_in_aeu'])) || ($store_rule['show_in_aeu'] == true) || ($action != "add"))
|
578 |
$selected_input["show_in_aeu"] = ' checked="checked"';
|
579 |
else
|
580 |
$selected_input["show_in_aeu"] = '';
|
581 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
582 |
$selected_input["name"] = attribute_escape($selected_input["name"]);
|
583 |
$selected_input["value"] = attribute_escape($selected_input["value"]);
|
584 |
$selected_input["label"] = attribute_escape($selected_input["label"]);
|
@@ -595,6 +657,7 @@ function cimy_admin_define_extra_fields() {
|
|
595 |
<li><?php _e("With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)", $cimy_uef_domain); ?></li>
|
596 |
<li><?php _e("With <strong>registration-date</strong>: <em>equal TO</em> means date and time format", $cimy_uef_domain); ?></li>
|
597 |
<li><?php _e("With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels", $cimy_uef_domain); ?></li>
|
|
|
598 |
</ul>
|
599 |
<br />
|
600 |
|
@@ -678,11 +741,29 @@ function cimy_admin_define_extra_fields() {
|
|
678 |
|
679 |
<!-- SHOW IN A&U EXTENDED -->
|
680 |
<input type="checkbox" name="show_in_aeu" value="1"<?php echo $selected_input["show_in_aeu"]; ?> /> <?php _e("Show the field in A&U Extended menu", $cimy_uef_domain); ?><br />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
681 |
</td>
|
682 |
<td align="center" style="vertical-align: middle;">
|
683 |
<p class="submit" style="border-width: 0px;">
|
684 |
<input name="reset" type="reset" value="<?php _e("Clear", $cimy_uef_domain); ?>" /><br /><br />
|
685 |
-
<input class="button-primary" name="
|
686 |
</p>
|
687 |
</td>
|
688 |
</tr>
|
@@ -702,7 +783,7 @@ function cimy_admin_define_extra_fields() {
|
|
702 |
}
|
703 |
|
704 |
function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
|
705 |
-
global $cimy_uef_domain, $rule_maxlen, $rule_email, $rule_canbeempty, $rule_equalto, $rule_equalto_case_sensitive, $available_types, $max_length_name, $max_length_label, $max_length_desc, $max_length_value, $max_size_file, $cimy_uef_file_types, $is_mu, $rule_equalto_regex;
|
706 |
|
707 |
if (!cimy_check_admin("manage_options"))
|
708 |
return;
|
@@ -728,6 +809,9 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
|
|
728 |
$del_caption = $submit_msgs['del_caption'];
|
729 |
$delSel_caption = $submit_msgs['delSel_caption'];
|
730 |
$order_caption = $submit_msgs['order_caption'];
|
|
|
|
|
|
|
731 |
|
732 |
?>
|
733 |
<div class="wrap" id="<?php echo $div_id; ?>">
|
@@ -750,11 +834,11 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
|
|
750 |
else {
|
751 |
?>
|
752 |
<p class="submit" style="border-width: 0px; margin-top: 0px; margin-bottom: 0px; padding: 0px;">
|
753 |
-
<input type="button" value="<?php
|
754 |
-
<input name="
|
755 |
|
756 |
<?php if (!$wp_fields) { ?>
|
757 |
-
<input name="
|
758 |
<?php } ?>
|
759 |
</p>
|
760 |
|
@@ -930,7 +1014,46 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
|
|
930 |
$show_in_aeu = ' checked="checked"';
|
931 |
else
|
932 |
$show_in_aeu = "";
|
933 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
934 |
if (in_array($type, $cimy_uef_file_types)) {
|
935 |
$min_length_caption = __("Min size", $cimy_uef_domain)." (KB)";
|
936 |
$exact_length_caption = __("Exact size", $cimy_uef_domain)." (KB)";
|
@@ -1034,18 +1157,42 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
|
|
1034 |
<input type="checkbox" name="show_in_reg<?php echo $order ?>" value="1"<?php echo $show_in_reg ?> /> <?php _e("Show the field in the registration", $cimy_uef_domain); ?><br />
|
1035 |
|
1036 |
<!-- SHOW IN PROFILE -->
|
1037 |
-
<input type="checkbox" name="show_in_profile<?php echo $order ?>" value="1"<?php echo $show_in_profile ?> /> <?php _e("Show the field in User's profile", $cimy_uef_domain); ?><br />
|
1038 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1039 |
<!-- SHOW IN A&U EXTENDED -->
|
1040 |
<input type="checkbox" name="show_in_aeu<?php echo $order ?>" value="1"<?php echo $show_in_aeu ?> /> <?php _e("Show the field in A&U Extended menu", $cimy_uef_domain); ?><br />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
</td>
|
1042 |
<td align="center" style="vertical-align: middle;">
|
1043 |
<p class="submit" style="border-width: 0px;">
|
1044 |
<input name="reset" type="reset" value="<?php _e("Reset", $cimy_uef_domain); ?>" /><br /><br />
|
1045 |
-
<input class="button-primary" name="
|
1046 |
|
1047 |
<?php if (!$wp_fields) { ?>
|
1048 |
-
<input name="
|
1049 |
<?php } ?>
|
1050 |
</p>
|
1051 |
</td>
|
@@ -1056,11 +1203,11 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
|
|
1056 |
</tbody>
|
1057 |
</table>
|
1058 |
<p class="submit" style="border-width: 0px; margin-top: 0px; margin-bottom: 0px; padding: 0px;">
|
1059 |
-
<input type="button" value="<?php
|
1060 |
-
<input name="
|
1061 |
|
1062 |
<?php if (!$wp_fields) { ?>
|
1063 |
-
<input name="
|
1064 |
<?php } ?>
|
1065 |
</p>
|
1066 |
<br />
|
@@ -1081,23 +1228,19 @@ function cimy_admin_users_list_page() {
|
|
1081 |
if (!cimy_check_admin('edit_users'))
|
1082 |
return;
|
1083 |
|
1084 |
-
|
1085 |
-
$options = get_site_option($cimy_uef_options);
|
1086 |
-
else
|
1087 |
-
$options = get_option($cimy_uef_options);
|
1088 |
|
1089 |
if (isset($_POST["cimy_uef_users_per_page"])) {
|
1090 |
$users_per_page = $_POST["cimy_uef_users_per_page"];
|
1091 |
$options["users_per_page"] = $users_per_page;
|
1092 |
|
1093 |
-
|
1094 |
-
update_site_option($cimy_uef_options, $options);
|
1095 |
-
else
|
1096 |
-
update_option($cimy_uef_options, $options);
|
1097 |
}
|
1098 |
else
|
1099 |
$users_per_page = $options["users_per_page"];
|
1100 |
-
|
|
|
|
|
1101 |
$extra_fields = get_cimyFields();
|
1102 |
|
1103 |
// yes stupid WP_User_Search doesn't support custom $users_per_page support, lets add it!
|
@@ -1108,7 +1251,7 @@ function cimy_admin_users_list_page() {
|
|
1108 |
$this->page = (int) ( '' == $page ) ? 1 : $page;
|
1109 |
$this->role = $role;
|
1110 |
$this->users_per_page = intval($users_per_page);
|
1111 |
-
|
1112 |
$this->prepare_query();
|
1113 |
$this->query();
|
1114 |
$this->prepare_vars_for_template_usage();
|
@@ -1126,27 +1269,28 @@ function cimy_admin_users_list_page() {
|
|
1126 |
$wp_user_search = new Cimy_User_Search($_POST['usersearch'], $_GET['userspage'], $_GET['role'], $users_per_page);
|
1127 |
|
1128 |
$search_result = $wp_user_search->get_results();
|
1129 |
-
|
1130 |
// search into extra field engine
|
1131 |
$i = 0;
|
|
|
1132 |
foreach ($search_result as $userid) {
|
1133 |
foreach ($extra_fields as $ef) {
|
1134 |
$ef_id = $ef["ID"];
|
1135 |
$ef_type = $ef["TYPE"];
|
1136 |
$ef_name = $ef["NAME"];
|
1137 |
-
|
1138 |
$ef_search = "";
|
1139 |
|
1140 |
if (isset($_POST["ef_search"][$ef_name])) {
|
1141 |
$ef_search = $_POST["ef_search"][$ef_name];
|
1142 |
}
|
1143 |
-
|
1144 |
if ($ef_search != "") {
|
1145 |
$remove = false;
|
1146 |
|
1147 |
$ef_value = $wpdb->get_var("SELECT VALUE FROM ".$wpdb_data_table." WHERE USER_ID=".$userid." AND FIELD_ID=".$ef_id);
|
1148 |
-
|
1149 |
-
if (($ef_type == "text") || ($ef_type == "textarea") || ($ef_type == "textarea-rich") || ($ef_type == "picture") || ($ef_type == "picture-url")) {
|
1150 |
if (stristr($ef_value, $ef_search) === FALSE) {
|
1151 |
$remove = true;
|
1152 |
}
|
@@ -1159,9 +1303,20 @@ function cimy_admin_users_list_page() {
|
|
1159 |
$remove = true;
|
1160 |
}
|
1161 |
} else if ($ef_type == "dropdown") {
|
|
|
|
|
|
|
|
|
1162 |
if ($ef_search != $ef_value) {
|
1163 |
$remove = true;
|
1164 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1165 |
}
|
1166 |
|
1167 |
if ($remove) {
|
@@ -1174,7 +1329,7 @@ function cimy_admin_users_list_page() {
|
|
1174 |
|
1175 |
$i++;
|
1176 |
}
|
1177 |
-
|
1178 |
$wp_user_search->paging_text = "";
|
1179 |
// oh yeah baby, now it's time for paging!
|
1180 |
$wp_user_search->do_paging();
|
@@ -1281,7 +1436,7 @@ function cimy_admin_users_list_page() {
|
|
1281 |
<?php _e("Users per page", $cimy_uef_domain); ?>
|
1282 |
<select name="cimy_uef_users_per_page">
|
1283 |
<?php
|
1284 |
-
$users_per_page_list = array(10, 50, 100, 500);
|
1285 |
|
1286 |
foreach ($users_per_page_list as $item) {
|
1287 |
echo "<option";
|
@@ -1354,8 +1509,14 @@ function cimy_admin_users_list_page() {
|
|
1354 |
|
1355 |
$search_input = "";
|
1356 |
$search_value = "";
|
1357 |
-
|
1358 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1359 |
$thead_str.= "<th scope=\"col\" class=\"manage-column\" style=\"\">";
|
1360 |
$tfoot_str.= "<th scope=\"col\" class=\"manage-column\" style=\"\">";
|
1361 |
|
@@ -1364,13 +1525,20 @@ function cimy_admin_users_list_page() {
|
|
1364 |
$ret = cimy_dropDownOptions($label, $search_value);
|
1365 |
$label = $ret['label'];
|
1366 |
|
1367 |
-
$search_input = '<select name="ef_search['.$name.']"><option
|
|
|
|
|
|
|
|
|
|
|
|
|
1368 |
break;
|
1369 |
case "text":
|
1370 |
case "textarea":
|
1371 |
case "textarea-rich":
|
1372 |
case "picture":
|
1373 |
case "picture-url":
|
|
|
1374 |
$search_input = '<input type="text" name="ef_search['.$name.']" value="'.$search_value.'" size="6" />';
|
1375 |
break;
|
1376 |
case "checkbox":
|
@@ -1519,7 +1687,7 @@ function cimy_admin_users_list_page() {
|
|
1519 |
|
1520 |
if ($field != "") {
|
1521 |
if (intval($rules['equal_to'])) {
|
1522 |
-
echo '<a href="'.$field.'">';
|
1523 |
echo '<img src="'.$field.'" alt="picture"'.$size.' width="'.intval($rules['equal_to']).'" height="*" />';
|
1524 |
echo "</a>";
|
1525 |
}
|
@@ -1543,19 +1711,25 @@ function cimy_admin_users_list_page() {
|
|
1543 |
|
1544 |
$value_thumb = cimy_get_thumb_path($field);
|
1545 |
$file_thumb = $cuef_upload_path.$user_login."/".cimy_get_thumb_path(basename($field));
|
1546 |
-
|
|
|
1547 |
echo "\n\t\t";
|
1548 |
|
1549 |
if (is_file($file_thumb)) {
|
1550 |
-
echo '<a href="'.$field.'"><img src="'.$value_thumb.'" alt="picture" /></a><br />';
|
1551 |
echo "\n\t\t";
|
1552 |
}
|
1553 |
-
else {
|
1554 |
echo '<img src="'.$field.'" alt="picture" /><br />';
|
1555 |
-
|
1556 |
}
|
1557 |
}
|
1558 |
}
|
|
|
|
|
|
|
|
|
|
|
1559 |
else if ($type == "registration-date") {
|
1560 |
if (isset($rules['equal_to']))
|
1561 |
$registration_date = cimy_get_formatted_date($field, $rules['equal_to']);
|
29 |
|
30 |
$minLen = 1;
|
31 |
$maxLen = $max_length_value;
|
32 |
+
|
33 |
+
$submit = "";
|
34 |
|
35 |
$action = "";
|
36 |
$field_order = "";
|
40 |
$action = "options";
|
41 |
$res = cimy_save_options();
|
42 |
}
|
43 |
+
else if ((isset($_POST["submit_add"])) && ($_POST["submit_add"] != "")) {
|
44 |
$action = "add";
|
45 |
+
$submit = $_POST["submit_add"];
|
46 |
+
}
|
47 |
+
else if ((isset($_POST["submit_edit"])) && ($_POST["submit_edit"] != "")) {
|
48 |
$action = "edit";
|
49 |
+
$submit = $_POST["submit_edit"];
|
50 |
+
}
|
51 |
+
else if ((isset($_POST["submit_del"])) && ($_POST["submit_del"] != "")) {
|
52 |
$action = "del";
|
53 |
+
$submit = $_POST["submit_del"];
|
54 |
+
}
|
55 |
+
else if ((isset($_POST["submit_del_sel"])) && ($_POST["submit_del_sel"] != "")) {
|
56 |
$action = "delSel";
|
57 |
+
$submit = $_POST["submit_del_sel"];
|
58 |
+
}
|
59 |
+
else if ((isset($_POST["submit_order"])) && ($_POST["submit_order"] != "")) {
|
60 |
$action = "order";
|
61 |
+
$submit = $_POST["submit_order"];
|
62 |
+
}
|
63 |
|
64 |
if (!isset($res))
|
65 |
$res = array();
|
271 |
$show_in_aeu = $_POST['show_in_aeu'.$field_order];
|
272 |
$show_in_aeu == "1" ? $store_rule['show_in_aeu'] = true : $store_rule['show_in_aeu'] = false;
|
273 |
|
274 |
+
$show_in_search = $_POST['show_in_search'.$field_order];
|
275 |
+
$show_in_search == "1" ? $store_rule['show_in_search'] = true : $store_rule['show_in_search'] = false;
|
276 |
+
|
277 |
+
$show_in_blog = $_POST['show_in_blog'.$field_order];
|
278 |
+
$show_in_blog == "1" ? $store_rule['show_in_blog'] = true : $store_rule['show_in_blog'] = false;
|
279 |
+
|
280 |
+
$show_level = $_POST['show_level'.$field_order];
|
281 |
+
$store_rule['show_level'] = $show_level;
|
282 |
+
|
283 |
// START CHECKING FOR ERRORS
|
284 |
if ($name == "")
|
285 |
$errors['name'] = __("Name not specified", $cimy_uef_domain);
|
474 |
|
475 |
if ($store_rule['max_length'] == 0)
|
476 |
unset($store_rule['max_length']);
|
477 |
+
|
478 |
+
// SHOW LEVEL
|
479 |
+
$show_anonymous = '';
|
480 |
+
$show_subscriber = '';
|
481 |
+
$show_contributor = '';
|
482 |
+
$show_author = '';
|
483 |
+
$show_editor = '';
|
484 |
+
$show_admin = '';
|
485 |
|
486 |
if ($action == "add") {
|
487 |
// CAN BE MODIFIED OR NOT
|
576 |
$selected_input["email"] = ' checked="checked"';
|
577 |
else
|
578 |
$selected_input["email"] = '';
|
579 |
+
|
580 |
+
// SHOW LEVEL
|
581 |
+
switch ($store_rule['show_level']) {
|
582 |
+
case '-1':
|
583 |
+
$show_anonymous = ' selected="selected"';
|
584 |
+
break;
|
585 |
+
case '0':
|
586 |
+
$show_subscriber = ' selected="selected"';
|
587 |
+
break;
|
588 |
+
case '1':
|
589 |
+
$show_contributor = ' selected="selected"';
|
590 |
+
break;
|
591 |
+
case '2':
|
592 |
+
$show_author = ' selected="selected"';
|
593 |
+
break;
|
594 |
+
case '5':
|
595 |
+
$show_editor = ' selected="selected"';
|
596 |
+
break;
|
597 |
+
case '8':
|
598 |
+
$show_admin = ' selected="selected"';
|
599 |
+
break;
|
600 |
+
}
|
601 |
}
|
602 |
// action is not "add"
|
603 |
+
else {
|
604 |
$selected_input["ok_edit"] = ' selected="selected"';
|
605 |
+
$show_anonymous = ' selected="selected"';
|
606 |
+
}
|
607 |
|
608 |
// CAN BE EMPTY
|
609 |
if (($store_rule['can_be_empty'] == true) || ($action != "add"))
|
623 |
else
|
624 |
$selected_input["show_in_profile"] = '';
|
625 |
|
|
|
626 |
// SHOW IN AUTHORS AND USERS EXTENDED
|
627 |
if ((!isset($store_rule['show_in_aeu'])) || ($store_rule['show_in_aeu'] == true) || ($action != "add"))
|
628 |
$selected_input["show_in_aeu"] = ' checked="checked"';
|
629 |
else
|
630 |
$selected_input["show_in_aeu"] = '';
|
631 |
+
|
632 |
+
// SHOW IN THE SEARCH
|
633 |
+
if ((!isset($store_rule['show_in_search'])) || ($store_rule['show_in_search'] == true) || ($action != "add"))
|
634 |
+
$selected_input["show_in_search"] = ' checked="checked"';
|
635 |
+
else
|
636 |
+
$selected_input["show_in_search"] = '';
|
637 |
+
|
638 |
+
// SHOW IN THE BLOG
|
639 |
+
if ((!isset($store_rule['show_in_blog'])) || ($store_rule['show_in_blog'] == true) || ($action != "add"))
|
640 |
+
$selected_input["show_in_blog"] = ' checked="checked"';
|
641 |
+
else
|
642 |
+
$selected_input["show_in_blog"] = '';
|
643 |
+
|
644 |
$selected_input["name"] = attribute_escape($selected_input["name"]);
|
645 |
$selected_input["value"] = attribute_escape($selected_input["value"]);
|
646 |
$selected_input["label"] = attribute_escape($selected_input["label"]);
|
657 |
<li><?php _e("With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)", $cimy_uef_domain); ?></li>
|
658 |
<li><?php _e("With <strong>registration-date</strong>: <em>equal TO</em> means date and time format", $cimy_uef_domain); ?></li>
|
659 |
<li><?php _e("With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels", $cimy_uef_domain); ?></li>
|
660 |
+
<li><?php _e("With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc", $cimy_uef_domain); ?></li>
|
661 |
</ul>
|
662 |
<br />
|
663 |
|
741 |
|
742 |
<!-- SHOW IN A&U EXTENDED -->
|
743 |
<input type="checkbox" name="show_in_aeu" value="1"<?php echo $selected_input["show_in_aeu"]; ?> /> <?php _e("Show the field in A&U Extended menu", $cimy_uef_domain); ?><br />
|
744 |
+
|
745 |
+
<!-- SHOW IN THE SEARCH ENGINE -->
|
746 |
+
<input type="checkbox" name="show_in_search" value="1"<?php echo $selected_input["show_in_search"]; ?> /> <?php _e("Show the field in the search engine", $cimy_uef_domain); ?><br />
|
747 |
+
|
748 |
+
<!-- SHOW IN THE BLOG -->
|
749 |
+
<input type="checkbox" name="show_in_blog" value="1"<?php echo $selected_input["show_in_blog"]; ?> /> <?php _e("Show the field in the blog", $cimy_uef_domain); ?><br />
|
750 |
+
|
751 |
+
<!-- SHOW SECURITY LEVEL -->
|
752 |
+
<?php _e("Show the field if the role is at least:", $cimy_uef_domain)." "; ?>
|
753 |
+
<select name="show_level<?php echo $order ?>">
|
754 |
+
<option value="-1"<?php echo $show_anonymous ?>><?php _e("Anonymous"); ?></option>
|
755 |
+
<option value="0"<?php echo $show_subscriber ?>><?php echo translate_user_role("Subscriber"); ?></option>
|
756 |
+
<option value="1"<?php echo $show_contributor ?>><?php echo translate_user_role("Contributor"); ?></option>
|
757 |
+
<option value="2"<?php echo $show_author ?>><?php echo translate_user_role("Author"); ?></option>
|
758 |
+
<option value="5"<?php echo $show_editor ?>><?php echo translate_user_role("Editor"); ?></option>
|
759 |
+
<option value="8"<?php echo $show_admin ?>><?php echo translate_user_role("Administrator"); ?></option>
|
760 |
+
</select>
|
761 |
+
<br />
|
762 |
</td>
|
763 |
<td align="center" style="vertical-align: middle;">
|
764 |
<p class="submit" style="border-width: 0px;">
|
765 |
<input name="reset" type="reset" value="<?php _e("Clear", $cimy_uef_domain); ?>" /><br /><br />
|
766 |
+
<input class="button-primary" name="submit_add" type="submit" value="<?php echo $add_caption ?>" />
|
767 |
</p>
|
768 |
</td>
|
769 |
</tr>
|
783 |
}
|
784 |
|
785 |
function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
|
786 |
+
global $wpdb, $cimy_uef_domain, $rule_maxlen, $rule_email, $rule_canbeempty, $rule_equalto, $rule_equalto_case_sensitive, $available_types, $max_length_name, $max_length_label, $max_length_desc, $max_length_value, $max_size_file, $cimy_uef_file_types, $is_mu, $rule_equalto_regex;
|
787 |
|
788 |
if (!cimy_check_admin("manage_options"))
|
789 |
return;
|
809 |
$del_caption = $submit_msgs['del_caption'];
|
810 |
$delSel_caption = $submit_msgs['delSel_caption'];
|
811 |
$order_caption = $submit_msgs['order_caption'];
|
812 |
+
|
813 |
+
$invert_selection_label = $wpdb->escape(__("Invert selection", $cimy_uef_domain));
|
814 |
+
$delete_fields_label = $wpdb->escape(__("Are you sure you want to delete field(s) and all data inserted into by users?", $cimy_uef_domain));
|
815 |
|
816 |
?>
|
817 |
<div class="wrap" id="<?php echo $div_id; ?>">
|
834 |
else {
|
835 |
?>
|
836 |
<p class="submit" style="border-width: 0px; margin-top: 0px; margin-bottom: 0px; padding: 0px;">
|
837 |
+
<input type="button" value="<?php echo $invert_selection_label; ?>" onclick="this.value=invert_sel('<?php echo $form_id; ?>', 'check', '<?php echo $invert_selection_label; ?>')" />
|
838 |
+
<input name="submit_order" type="submit" value="<?php echo $order_caption ?>" />
|
839 |
|
840 |
<?php if (!$wp_fields) { ?>
|
841 |
+
<input name="submit_del_sel" type="submit" value="<?php echo $delSel_caption ?>" onclick="return confirm('<?php echo $delete_fields_label; ?>');" />
|
842 |
<?php } ?>
|
843 |
</p>
|
844 |
|
1014 |
$show_in_aeu = ' checked="checked"';
|
1015 |
else
|
1016 |
$show_in_aeu = "";
|
1017 |
+
|
1018 |
+
if ($rules['show_in_search'])
|
1019 |
+
$show_in_search = ' checked="checked"';
|
1020 |
+
else
|
1021 |
+
$show_in_search = "";
|
1022 |
+
|
1023 |
+
if ($rules['show_in_blog'])
|
1024 |
+
$show_in_blog = ' checked="checked"';
|
1025 |
+
else
|
1026 |
+
$show_in_blog = "";
|
1027 |
+
|
1028 |
+
// SHOW LEVEL
|
1029 |
+
$show_anonymous = '';
|
1030 |
+
$show_subscriber = '';
|
1031 |
+
$show_contributor = '';
|
1032 |
+
$show_author = '';
|
1033 |
+
$show_editor = '';
|
1034 |
+
$show_admin = '';
|
1035 |
+
|
1036 |
+
switch ($rules['show_level']) {
|
1037 |
+
case '-1':
|
1038 |
+
$show_anonymous = ' selected="selected"';
|
1039 |
+
break;
|
1040 |
+
case '0':
|
1041 |
+
$show_subscriber = ' selected="selected"';
|
1042 |
+
break;
|
1043 |
+
case '1':
|
1044 |
+
$show_contributor = ' selected="selected"';
|
1045 |
+
break;
|
1046 |
+
case '2':
|
1047 |
+
$show_author = ' selected="selected"';
|
1048 |
+
break;
|
1049 |
+
case '5':
|
1050 |
+
$show_editor = ' selected="selected"';
|
1051 |
+
break;
|
1052 |
+
case '8':
|
1053 |
+
$show_admin = ' selected="selected"';
|
1054 |
+
break;
|
1055 |
+
}
|
1056 |
+
|
1057 |
if (in_array($type, $cimy_uef_file_types)) {
|
1058 |
$min_length_caption = __("Min size", $cimy_uef_domain)." (KB)";
|
1059 |
$exact_length_caption = __("Exact size", $cimy_uef_domain)." (KB)";
|
1157 |
<input type="checkbox" name="show_in_reg<?php echo $order ?>" value="1"<?php echo $show_in_reg ?> /> <?php _e("Show the field in the registration", $cimy_uef_domain); ?><br />
|
1158 |
|
1159 |
<!-- SHOW IN PROFILE -->
|
1160 |
+
<input type="checkbox" name="show_in_profile<?php echo $order ?>" value="1"<?php echo $show_in_profile ?><?php echo $disable_it; ?> /> <?php _e("Show the field in User's profile", $cimy_uef_domain); ?><br />
|
1161 |
+
<?php
|
1162 |
+
if ($wp_fields) {
|
1163 |
+
?>
|
1164 |
+
<input name="show_in_profile<?php echo $order ?>" type="hidden" value="1" />
|
1165 |
+
<?php
|
1166 |
+
}
|
1167 |
+
?>
|
1168 |
<!-- SHOW IN A&U EXTENDED -->
|
1169 |
<input type="checkbox" name="show_in_aeu<?php echo $order ?>" value="1"<?php echo $show_in_aeu ?> /> <?php _e("Show the field in A&U Extended menu", $cimy_uef_domain); ?><br />
|
1170 |
+
|
1171 |
+
<!-- SHOW IN THE SEARCH -->
|
1172 |
+
<input type="checkbox" name="show_in_search<?php echo $order ?>" value="1"<?php echo $show_in_search ?> /> <?php _e("Show the field in the search engine", $cimy_uef_domain); ?><br />
|
1173 |
+
|
1174 |
+
<!-- SHOW IN THE BLOG -->
|
1175 |
+
<input type="checkbox" name="show_in_blog<?php echo $order ?>" value="1"<?php echo $show_in_blog ?> /> <?php _e("Show the field in the blog", $cimy_uef_domain); ?><br />
|
1176 |
+
|
1177 |
+
<!-- SHOW SECURITY LEVEL -->
|
1178 |
+
<?php _e("Show the field if the role is at least:", $cimy_uef_domain)." "; ?>
|
1179 |
+
<select name="show_level<?php echo $order ?>">
|
1180 |
+
<option value="-1"<?php echo $show_anonymous ?>><?php _e("Anonymous"); ?></option>
|
1181 |
+
<option value="0"<?php echo $show_subscriber ?>><?php echo translate_user_role("Subscriber"); ?></option>
|
1182 |
+
<option value="1"<?php echo $show_contributor ?>><?php echo translate_user_role("Contributor"); ?></option>
|
1183 |
+
<option value="2"<?php echo $show_author ?>><?php echo translate_user_role("Author"); ?></option>
|
1184 |
+
<option value="5"<?php echo $show_editor ?>><?php echo translate_user_role("Editor"); ?></option>
|
1185 |
+
<option value="8"<?php echo $show_admin ?>><?php echo translate_user_role("Administrator"); ?></option>
|
1186 |
+
</select>
|
1187 |
+
<br />
|
1188 |
</td>
|
1189 |
<td align="center" style="vertical-align: middle;">
|
1190 |
<p class="submit" style="border-width: 0px;">
|
1191 |
<input name="reset" type="reset" value="<?php _e("Reset", $cimy_uef_domain); ?>" /><br /><br />
|
1192 |
+
<input class="button-primary" name="submit_edit" type="submit" value="<?php echo $edit_caption." #".$order ?>" /><br /><br />
|
1193 |
|
1194 |
<?php if (!$wp_fields) { ?>
|
1195 |
+
<input name="submit_del" type="submit" value="<?php echo $del_caption." #".$order ?>" onclick="return confirm('<?php echo $delete_fields_label; ?>');" />
|
1196 |
<?php } ?>
|
1197 |
</p>
|
1198 |
</td>
|
1203 |
</tbody>
|
1204 |
</table>
|
1205 |
<p class="submit" style="border-width: 0px; margin-top: 0px; margin-bottom: 0px; padding: 0px;">
|
1206 |
+
<input type="button" value="<?php echo $invert_selection_label; ?>" onclick="this.value=invert_sel('<?php echo $form_id; ?>', 'check', '<?php echo $invert_selection_label; ?>')" />
|
1207 |
+
<input name="submit_order" type="submit" value="<?php echo $order_caption ?>" />
|
1208 |
|
1209 |
<?php if (!$wp_fields) { ?>
|
1210 |
+
<input name="submit_del_sel" type="submit" value="<?php echo $delSel_caption ?>" onclick="return confirm('<?php echo $delete_fields_label; ?>');" />
|
1211 |
<?php } ?>
|
1212 |
</p>
|
1213 |
<br />
|
1228 |
if (!cimy_check_admin('edit_users'))
|
1229 |
return;
|
1230 |
|
1231 |
+
$options = cimy_get_options();
|
|
|
|
|
|
|
1232 |
|
1233 |
if (isset($_POST["cimy_uef_users_per_page"])) {
|
1234 |
$users_per_page = $_POST["cimy_uef_users_per_page"];
|
1235 |
$options["users_per_page"] = $users_per_page;
|
1236 |
|
1237 |
+
cimy_set_options($options);
|
|
|
|
|
|
|
1238 |
}
|
1239 |
else
|
1240 |
$users_per_page = $options["users_per_page"];
|
1241 |
+
|
1242 |
+
$dropdown_first_item = '--- '.__("select", $cimy_uef_domain).' ---';
|
1243 |
+
|
1244 |
$extra_fields = get_cimyFields();
|
1245 |
|
1246 |
// yes stupid WP_User_Search doesn't support custom $users_per_page support, lets add it!
|
1251 |
$this->page = (int) ( '' == $page ) ? 1 : $page;
|
1252 |
$this->role = $role;
|
1253 |
$this->users_per_page = intval($users_per_page);
|
1254 |
+
|
1255 |
$this->prepare_query();
|
1256 |
$this->query();
|
1257 |
$this->prepare_vars_for_template_usage();
|
1269 |
$wp_user_search = new Cimy_User_Search($_POST['usersearch'], $_GET['userspage'], $_GET['role'], $users_per_page);
|
1270 |
|
1271 |
$search_result = $wp_user_search->get_results();
|
1272 |
+
|
1273 |
// search into extra field engine
|
1274 |
$i = 0;
|
1275 |
+
|
1276 |
foreach ($search_result as $userid) {
|
1277 |
foreach ($extra_fields as $ef) {
|
1278 |
$ef_id = $ef["ID"];
|
1279 |
$ef_type = $ef["TYPE"];
|
1280 |
$ef_name = $ef["NAME"];
|
1281 |
+
|
1282 |
$ef_search = "";
|
1283 |
|
1284 |
if (isset($_POST["ef_search"][$ef_name])) {
|
1285 |
$ef_search = $_POST["ef_search"][$ef_name];
|
1286 |
}
|
1287 |
+
|
1288 |
if ($ef_search != "") {
|
1289 |
$remove = false;
|
1290 |
|
1291 |
$ef_value = $wpdb->get_var("SELECT VALUE FROM ".$wpdb_data_table." WHERE USER_ID=".$userid." AND FIELD_ID=".$ef_id);
|
1292 |
+
|
1293 |
+
if (($ef_type == "text") || ($ef_type == "textarea") || ($ef_type == "textarea-rich") || ($ef_type == "picture") || ($ef_type == "picture-url") || ($ef_type == "file")) {
|
1294 |
if (stristr($ef_value, $ef_search) === FALSE) {
|
1295 |
$remove = true;
|
1296 |
}
|
1303 |
$remove = true;
|
1304 |
}
|
1305 |
} else if ($ef_type == "dropdown") {
|
1306 |
+
// if it is selected the "--- select ---" item then skip this check
|
1307 |
+
if ($ef_search == $dropdown_first_item)
|
1308 |
+
continue;
|
1309 |
+
|
1310 |
if ($ef_search != $ef_value) {
|
1311 |
$remove = true;
|
1312 |
}
|
1313 |
+
} else if ($ef_type == "dropdown-multi") {
|
1314 |
+
// if it is selected the "--- select ---" item then remove it
|
1315 |
+
if ($ef_search[0] == $dropdown_first_item)
|
1316 |
+
unset($ef_search[0]);
|
1317 |
+
|
1318 |
+
if (count(array_diff($ef_search, explode(",", $ef_value))) != 0)
|
1319 |
+
$remove = true;
|
1320 |
}
|
1321 |
|
1322 |
if ($remove) {
|
1329 |
|
1330 |
$i++;
|
1331 |
}
|
1332 |
+
|
1333 |
$wp_user_search->paging_text = "";
|
1334 |
// oh yeah baby, now it's time for paging!
|
1335 |
$wp_user_search->do_paging();
|
1436 |
<?php _e("Users per page", $cimy_uef_domain); ?>
|
1437 |
<select name="cimy_uef_users_per_page">
|
1438 |
<?php
|
1439 |
+
$users_per_page_list = array(10, 50, 100, 500, 1000, 5000);
|
1440 |
|
1441 |
foreach ($users_per_page_list as $item) {
|
1442 |
echo "<option";
|
1509 |
|
1510 |
$search_input = "";
|
1511 |
$search_value = "";
|
1512 |
+
|
1513 |
+
if (!empty($_POST["ef_search"][$name])) {
|
1514 |
+
if ($type == "dropdown-multi")
|
1515 |
+
$search_value = attribute_escape(stripslashes(implode(",", $_POST["ef_search"][$name])));
|
1516 |
+
else
|
1517 |
+
$search_value = attribute_escape(stripslashes($_POST["ef_search"][$name]));
|
1518 |
+
}
|
1519 |
+
|
1520 |
$thead_str.= "<th scope=\"col\" class=\"manage-column\" style=\"\">";
|
1521 |
$tfoot_str.= "<th scope=\"col\" class=\"manage-column\" style=\"\">";
|
1522 |
|
1525 |
$ret = cimy_dropDownOptions($label, $search_value);
|
1526 |
$label = $ret['label'];
|
1527 |
|
1528 |
+
$search_input = '<select name="ef_search['.$name.']"><option>'.$dropdown_first_item.'</option>'.$ret['html'].'</select>';
|
1529 |
+
break;
|
1530 |
+
case "dropdown-multi":
|
1531 |
+
$ret = cimy_dropDownOptions($label, $search_value);
|
1532 |
+
$label = $ret['label'];
|
1533 |
+
|
1534 |
+
$search_input = '<select name="ef_search['.$name.'][]" multiple="multiple" style="height: 6em;"><option>'.$dropdown_first_item.'</option>'.$ret['html'].'</select>';
|
1535 |
break;
|
1536 |
case "text":
|
1537 |
case "textarea":
|
1538 |
case "textarea-rich":
|
1539 |
case "picture":
|
1540 |
case "picture-url":
|
1541 |
+
case "file":
|
1542 |
$search_input = '<input type="text" name="ef_search['.$name.']" value="'.$search_value.'" size="6" />';
|
1543 |
break;
|
1544 |
case "checkbox":
|
1687 |
|
1688 |
if ($field != "") {
|
1689 |
if (intval($rules['equal_to'])) {
|
1690 |
+
echo '<a target="_blank" href="'.$field.'">';
|
1691 |
echo '<img src="'.$field.'" alt="picture"'.$size.' width="'.intval($rules['equal_to']).'" height="*" />';
|
1692 |
echo "</a>";
|
1693 |
}
|
1711 |
|
1712 |
$value_thumb = cimy_get_thumb_path($field);
|
1713 |
$file_thumb = $cuef_upload_path.$user_login."/".cimy_get_thumb_path(basename($field));
|
1714 |
+
$file_on_server = $cuef_upload_path.$user_login."/".basename($field);
|
1715 |
+
|
1716 |
echo "\n\t\t";
|
1717 |
|
1718 |
if (is_file($file_thumb)) {
|
1719 |
+
echo '<a target="_blank" href="'.$field.'"><img src="'.$value_thumb.'" alt="picture" /></a><br />';
|
1720 |
echo "\n\t\t";
|
1721 |
}
|
1722 |
+
else if (is_file($file_on_server)) {
|
1723 |
echo '<img src="'.$field.'" alt="picture" /><br />';
|
1724 |
+
echo "\n\t\t";
|
1725 |
}
|
1726 |
}
|
1727 |
}
|
1728 |
+
else if ($type == "file") {
|
1729 |
+
echo '<a target="_blank" href="'.$field.'">';
|
1730 |
+
echo basename($field);
|
1731 |
+
echo '</a>';
|
1732 |
+
}
|
1733 |
else if ($type == "registration-date") {
|
1734 |
if (isset($rules['equal_to']))
|
1735 |
$registration_date = cimy_get_formatted_date($field, $rules['equal_to']);
|
cimy_uef_db.php
CHANGED
@@ -128,6 +128,45 @@ function cimy_plugin_install () {
|
|
128 |
$wpdb->query($sql);
|
129 |
}
|
130 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
$options['version'] = $cimy_uef_version;
|
132 |
|
133 |
cimy_set_options($options);
|
@@ -244,6 +283,57 @@ function cimy_manage_db($command) {
|
|
244 |
}
|
245 |
}
|
246 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
function cimy_delete_users_info($fields_id) {
|
248 |
global $wpdb, $wpdb_data_table;
|
249 |
|
@@ -260,44 +350,6 @@ function cimy_delete_user_info($user_id) {
|
|
260 |
if (!current_user_can('edit_user', $user_id))
|
261 |
return;
|
262 |
|
263 |
-
// function to delete all files/subdirs in a path
|
264 |
-
// taken from PHP unlink's documentation comment by torch - torchsdomain dot com @ 22-Nov-2006 09:27
|
265 |
-
// modified by Marco Cimmino to delete correctly call recursion before so can also delete subdirs when empty
|
266 |
-
if (!function_exists(cimy_rfr)) {
|
267 |
-
function cimy_rfr($path, $match) {
|
268 |
-
static $deld = 0, $dsize = 0;
|
269 |
-
|
270 |
-
// remember that glob returns FALSE in case of error
|
271 |
-
$dirs = glob($path."*");
|
272 |
-
$files = glob($path.$match);
|
273 |
-
|
274 |
-
// call recursion before so we delete files in subdirs first!
|
275 |
-
if (is_array($dirs)) {
|
276 |
-
foreach ($dirs as $dir) {
|
277 |
-
if (is_dir($dir)) {
|
278 |
-
$dir = basename($dir) . "/";
|
279 |
-
cimy_rfr($path.$dir, $match);
|
280 |
-
}
|
281 |
-
}
|
282 |
-
}
|
283 |
-
|
284 |
-
if (is_array($files)) {
|
285 |
-
foreach ($files as $file) {
|
286 |
-
if (is_file($file)) {
|
287 |
-
$dsize += filesize($file);
|
288 |
-
unlink($file);
|
289 |
-
$deld++;
|
290 |
-
}
|
291 |
-
else if (is_dir($file)) {
|
292 |
-
rmdir($file);
|
293 |
-
}
|
294 |
-
}
|
295 |
-
}
|
296 |
-
|
297 |
-
return "$deld files deleted with a total size of $dsize bytes";
|
298 |
-
}
|
299 |
-
}
|
300 |
-
|
301 |
$sql = "DELETE FROM ".$wpdb_data_table." WHERE USER_ID=".$user_id;
|
302 |
$wpdb->query($sql);
|
303 |
|
@@ -327,9 +379,9 @@ function cimy_insert_ExtraFields_if_not_exist($user_id, $field_id) {
|
|
327 |
}
|
328 |
|
329 |
function cimy_get_options() {
|
330 |
-
global $is_mu, $cimy_uef_options;
|
331 |
|
332 |
-
if ($is_mu)
|
333 |
$options = get_site_option($cimy_uef_options);
|
334 |
else
|
335 |
$options = get_option($cimy_uef_options);
|
@@ -338,9 +390,9 @@ function cimy_get_options() {
|
|
338 |
}
|
339 |
|
340 |
function cimy_set_options($options) {
|
341 |
-
global $is_mu, $cimy_uef_options, $cimy_uef_options_descr;
|
342 |
|
343 |
-
if ($is_mu)
|
344 |
update_site_option($cimy_uef_options, $options);
|
345 |
else
|
346 |
update_option($cimy_uef_options, $options, $cimy_uef_options_descr, "no");
|
128 |
$wpdb->query($sql);
|
129 |
}
|
130 |
|
131 |
+
if (version_compare($options['version'], "1.4.0", "<=") === true) {
|
132 |
+
$sql = "ALTER TABLE ".$wpdb_data_table." MODIFY COLUMN VALUE LONGTEXT";
|
133 |
+
$wpdb->query($sql);
|
134 |
+
}
|
135 |
+
|
136 |
+
|
137 |
+
// add $rules[show_in_blog]=true and $rules[show_level]=-1
|
138 |
+
if (version_compare($options['version'], "1.5.0-beta1", "<=") === true) {
|
139 |
+
for ($i = 0; $i <= 1; $i++) {
|
140 |
+
if ($i == 0)
|
141 |
+
$the_table = $wpdb_wp_fields_table;
|
142 |
+
else
|
143 |
+
$the_table = $wpdb_fields_table;
|
144 |
+
|
145 |
+
$sql = "SELECT ID, RULES FROM ".$the_table;
|
146 |
+
$all_rules = $wpdb->get_results($sql, ARRAY_A);
|
147 |
+
|
148 |
+
if (isset($all_rules)) {
|
149 |
+
foreach ($all_rules as $rule) {
|
150 |
+
$rule_to_be_updated = unserialize($rule["RULES"]);
|
151 |
+
$rule_id = $rule["ID"];
|
152 |
+
|
153 |
+
// do not add show_level to $wpdb_wp_fields_table
|
154 |
+
if ((!isset($rule_to_be_updated["show_level"])) && ($i == 1))
|
155 |
+
$rule_to_be_updated["show_level"] = -1;
|
156 |
+
|
157 |
+
if (!isset($rule_to_be_updated["show_in_blog"]))
|
158 |
+
$rule_to_be_updated["show_in_blog"] = true;
|
159 |
+
|
160 |
+
if (!isset($rule_to_be_updated["show_in_search"]))
|
161 |
+
$rule_to_be_updated["show_in_search"] = true;
|
162 |
+
|
163 |
+
$sql = "UPDATE ".$the_table." SET RULES='".$wpdb->escape(serialize($rule_to_be_updated))."' WHERE ID=".$rule_id;
|
164 |
+
$wpdb->query($sql);
|
165 |
+
}
|
166 |
+
}
|
167 |
+
}
|
168 |
+
}
|
169 |
+
|
170 |
$options['version'] = $cimy_uef_version;
|
171 |
|
172 |
cimy_set_options($options);
|
283 |
}
|
284 |
}
|
285 |
|
286 |
+
// function to delete all files/subdirs in a path
|
287 |
+
// taken from PHP unlink's documentation comment by torch - torchsdomain dot com @ 22-Nov-2006 09:27
|
288 |
+
// modified by Marco Cimmino to delete correctly call recursion before so can also delete subdirs when empty
|
289 |
+
if (!function_exists(cimy_rfr)) {
|
290 |
+
function cimy_rfr($path, $match) {
|
291 |
+
static $deld = 0, $dsize = 0;
|
292 |
+
|
293 |
+
// remember that glob returns FALSE in case of error
|
294 |
+
$dirs = glob($path."*");
|
295 |
+
$files = glob($path.$match);
|
296 |
+
|
297 |
+
// call recursion before so we delete files in subdirs first!
|
298 |
+
if (is_array($dirs)) {
|
299 |
+
foreach ($dirs as $dir) {
|
300 |
+
if (is_dir($dir)) {
|
301 |
+
$dir = basename($dir) . "/";
|
302 |
+
cimy_rfr($path.$dir, $match);
|
303 |
+
}
|
304 |
+
}
|
305 |
+
}
|
306 |
+
|
307 |
+
if (is_array($files)) {
|
308 |
+
foreach ($files as $file) {
|
309 |
+
if (is_file($file)) {
|
310 |
+
$dsize += filesize($file);
|
311 |
+
unlink($file);
|
312 |
+
$deld++;
|
313 |
+
}
|
314 |
+
else if (is_dir($file)) {
|
315 |
+
rmdir($file);
|
316 |
+
}
|
317 |
+
}
|
318 |
+
}
|
319 |
+
|
320 |
+
return "$deld files deleted with a total size of $dsize bytes";
|
321 |
+
}
|
322 |
+
}
|
323 |
+
|
324 |
+
function cimy_delete_blog_info($blog_id, $drop) {
|
325 |
+
global $cuef_upload_path;
|
326 |
+
|
327 |
+
$file_path = $cuef_upload_path.$blog_id."/";
|
328 |
+
|
329 |
+
// delete all uploaded files for that users
|
330 |
+
cimy_rfr($file_path, "*");
|
331 |
+
|
332 |
+
// delete also the subdir
|
333 |
+
if (is_dir($file_path))
|
334 |
+
rmdir($file_path);
|
335 |
+
}
|
336 |
+
|
337 |
function cimy_delete_users_info($fields_id) {
|
338 |
global $wpdb, $wpdb_data_table;
|
339 |
|
350 |
if (!current_user_can('edit_user', $user_id))
|
351 |
return;
|
352 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
353 |
$sql = "DELETE FROM ".$wpdb_data_table." WHERE USER_ID=".$user_id;
|
354 |
$wpdb->query($sql);
|
355 |
|
379 |
}
|
380 |
|
381 |
function cimy_get_options() {
|
382 |
+
global $is_mu, $cimy_uef_options, $cimy_uef_plugins_dir;
|
383 |
|
384 |
+
if (($is_mu) && ($cimy_uef_plugins_dir == "mu-plugins"))
|
385 |
$options = get_site_option($cimy_uef_options);
|
386 |
else
|
387 |
$options = get_option($cimy_uef_options);
|
390 |
}
|
391 |
|
392 |
function cimy_set_options($options) {
|
393 |
+
global $is_mu, $cimy_uef_options, $cimy_uef_options_descr, $cimy_uef_plugins_dir;
|
394 |
|
395 |
+
if (($is_mu) && ($cimy_uef_plugins_dir == "mu-plugins"))
|
396 |
update_site_option($cimy_uef_options, $options);
|
397 |
else
|
398 |
update_option($cimy_uef_options, $options, $cimy_uef_options_descr, "no");
|
cimy_uef_functions.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
function get_cimyFields($wp_fields=false, $order_by_section=false) {
|
4 |
global $wpdb_fields_table, $wpdb_wp_fields_table, $wpdb;
|
5 |
-
|
6 |
if ($wp_fields)
|
7 |
$table = $wpdb_wp_fields_table;
|
8 |
else
|
@@ -81,8 +81,7 @@ function get_cimyFieldValue($user_id, $field_name, $field_value=false) {
|
|
81 |
efields.TYPE,
|
82 |
data.VALUE
|
83 |
|
84 |
-
FROM <
|
85 |
-
<uef data table> as data
|
86 |
|
87 |
JOIN <uef fields table> as efields
|
88 |
|
@@ -94,7 +93,7 @@ function get_cimyFieldValue($user_id, $field_name, $field_value=false) {
|
|
94 |
AND (efields.TYPE!='radio' OR data.VALUE!='')
|
95 |
[AND data.VALUE=<field_value>]
|
96 |
*/
|
97 |
-
$sql = "SELECT efields.LABEL, efields.TYPE, data.VALUE FROM ".$
|
98 |
}
|
99 |
|
100 |
// only USER_ID provided
|
@@ -207,7 +206,7 @@ function cimy_change_radio_labels($field_data) {
|
|
207 |
if ($field_data[$i]['TYPE'] == "radio") {
|
208 |
$field_data[$i]['VALUE'] = $field_data[$i]['LABEL'];
|
209 |
}
|
210 |
-
else if ($field_data[$i]['TYPE'] == "dropdown") {
|
211 |
$ret = cimy_dropDownOptions($field_data[$i]['LABEL'], false);
|
212 |
|
213 |
$field_data[$i]['LABEL'] = $ret['label'];
|
@@ -248,8 +247,10 @@ function cimy_dropDownOptions($values, $selected) {
|
|
248 |
else
|
249 |
$label = "";
|
250 |
|
251 |
-
$items = explode(","
|
|
|
252 |
$html_options = "";
|
|
|
253 |
|
254 |
foreach ($items as $item) {
|
255 |
$item_clean = trim($item, "\t\n\r");
|
@@ -257,9 +258,12 @@ function cimy_dropDownOptions($values, $selected) {
|
|
257 |
$html_options.= "\n\t\t\t";
|
258 |
$html_options.= '<option value="'.$item_clean.'"';
|
259 |
|
260 |
-
if (isset($
|
261 |
-
if ($
|
|
|
262 |
$html_options.= ' selected="selected"';
|
|
|
|
|
263 |
|
264 |
$html_options.= ">".$item_clean."</option>";
|
265 |
}
|
@@ -298,9 +302,9 @@ function cimy_uef_sanitize_content($content, $override_allowed_tags=null) {
|
|
298 |
}
|
299 |
|
300 |
function cimy_check_admin($permission) {
|
301 |
-
global $is_mu;
|
302 |
|
303 |
-
if ($is_mu)
|
304 |
return is_site_admin();
|
305 |
else
|
306 |
return current_user_can($permission);
|
2 |
|
3 |
function get_cimyFields($wp_fields=false, $order_by_section=false) {
|
4 |
global $wpdb_fields_table, $wpdb_wp_fields_table, $wpdb;
|
5 |
+
|
6 |
if ($wp_fields)
|
7 |
$table = $wpdb_wp_fields_table;
|
8 |
else
|
81 |
efields.TYPE,
|
82 |
data.VALUE
|
83 |
|
84 |
+
FROM <uef data table> as data
|
|
|
85 |
|
86 |
JOIN <uef fields table> as efields
|
87 |
|
93 |
AND (efields.TYPE!='radio' OR data.VALUE!='')
|
94 |
[AND data.VALUE=<field_value>]
|
95 |
*/
|
96 |
+
$sql = "SELECT efields.LABEL, efields.TYPE, data.VALUE FROM ".$wpdb_data_table." as data JOIN ".$wpdb_fields_table." as efields ON efields.id=data.field_id WHERE efields.name='".$field_name."' AND data.USER_ID=".$user_id." AND efields.TYPE!='password' AND (efields.TYPE!='radio' OR data.VALUE!='')".$sql_field_value;
|
97 |
}
|
98 |
|
99 |
// only USER_ID provided
|
206 |
if ($field_data[$i]['TYPE'] == "radio") {
|
207 |
$field_data[$i]['VALUE'] = $field_data[$i]['LABEL'];
|
208 |
}
|
209 |
+
else if (($field_data[$i]['TYPE'] == "dropdown") || ($field_data[$i]['TYPE'] == "dropdown-multi")) {
|
210 |
$ret = cimy_dropDownOptions($field_data[$i]['LABEL'], false);
|
211 |
|
212 |
$field_data[$i]['LABEL'] = $ret['label'];
|
247 |
else
|
248 |
$label = "";
|
249 |
|
250 |
+
$items = explode(",", $values);
|
251 |
+
$sel_items = explode(",", $selected);
|
252 |
$html_options = "";
|
253 |
+
$sel_i = 0;
|
254 |
|
255 |
foreach ($items as $item) {
|
256 |
$item_clean = trim($item, "\t\n\r");
|
258 |
$html_options.= "\n\t\t\t";
|
259 |
$html_options.= '<option value="'.$item_clean.'"';
|
260 |
|
261 |
+
if (isset($sel_items[$sel_i])) {
|
262 |
+
if ($sel_items[$sel_i] == $item_clean) {
|
263 |
+
$sel_i++;
|
264 |
$html_options.= ' selected="selected"';
|
265 |
+
}
|
266 |
+
}
|
267 |
|
268 |
$html_options.= ">".$item_clean."</option>";
|
269 |
}
|
302 |
}
|
303 |
|
304 |
function cimy_check_admin($permission) {
|
305 |
+
global $is_mu, $cimy_uef_plugins_dir;
|
306 |
|
307 |
+
if (($is_mu) && ($cimy_uef_plugins_dir == "mu-plugins"))
|
308 |
return is_site_admin();
|
309 |
else
|
310 |
return current_user_can($permission);
|
cimy_uef_mu_activation.php
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
This file is required only if you are installing Cimy User Extra Fields
|
4 |
+
under WordPress MU /plugins/ directory.
|
5 |
+
Unluckily WordPress MU is designed to disable ALL /plugins/* when
|
6 |
+
activating a new user/blog, preventing Cimy User Extra Fields to correctly
|
7 |
+
save extra fields data in that phase.
|
8 |
+
|
9 |
+
If you installed Cimy User Extra Fields instead under /mu-plugins/ directory
|
10 |
+
IGNORE this file!
|
11 |
+
*/
|
12 |
+
// need to know if registering with VHOST set to 'yes', as seems filters are not added in time, grr!
|
13 |
+
if (constant( "VHOST" ) == 'yes')
|
14 |
+
$action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'login';
|
15 |
+
else
|
16 |
+
$action = "";
|
17 |
+
|
18 |
+
if (isset($_REQUEST["blog_id"])) {
|
19 |
+
$mu_blog_id = intval($_REQUEST["blog_id"]);
|
20 |
+
|
21 |
+
if (cimy_uef_mu_blog_exists($mu_blog_id) /*&& ($_REQUEST["stage"] != "validate-blog-signup")*/) {
|
22 |
+
switch_to_blog($mu_blog_id);
|
23 |
+
}
|
24 |
+
}
|
25 |
+
|
26 |
+
// Leave this after all!
|
27 |
+
if ((defined('WP_INSTALLING')) || ($action == "register"))
|
28 |
+
require_once(ABSPATH.PLUGINDIR."/cimy-user-extra-fields/cimy_user_extra_fields.php");
|
29 |
+
|
30 |
+
function cimy_uef_mu_blog_exists($blog_id, $c_site_id=-1) {
|
31 |
+
global $wpdb, $site_id;
|
32 |
+
|
33 |
+
$blog_id = intval($blog_id);
|
34 |
+
$c_site_id = intval($c_site_id);
|
35 |
+
|
36 |
+
if ($c_site_id == -1)
|
37 |
+
$c_site_id = $site_id;
|
38 |
+
|
39 |
+
$sql = "SELECT blog_id FROM $wpdb->blogs WHERE blog_id=".$blog_id." AND site_id=".$c_site_id;
|
40 |
+
$id = $wpdb->get_var($sql);
|
41 |
+
|
42 |
+
// if exists any result then the blog exists too!
|
43 |
+
if (isset($id))
|
44 |
+
return true;
|
45 |
+
|
46 |
+
return false;
|
47 |
+
}
|
48 |
+
|
49 |
+
?>
|
cimy_uef_options.php
CHANGED
@@ -228,7 +228,7 @@ function cimy_save_options() {
|
|
228 |
}
|
229 |
}
|
230 |
|
231 |
-
if (isset($_POST['
|
232 |
array_push($options['wp_hidden_fields'], 'bio-info');
|
233 |
|
234 |
if (!in_array("bio-info", $old_wp_hidden_fields)) {
|
@@ -397,6 +397,8 @@ function cimy_show_options($results, $embedded) {
|
|
397 |
|
398 |
if ((isset($cimy_top_menu)) && ($embedded))
|
399 |
return $ret;
|
|
|
|
|
400 |
|
401 |
?>
|
402 |
|
@@ -445,12 +447,12 @@ function cimy_show_options($results, $embedded) {
|
|
445 |
?><br /><h4><?php _e("OPTIONS DELETED!", $cimy_uef_domain); ?></h4>
|
446 |
<input type="hidden" name="do_not_save_options" value="1" />
|
447 |
|
448 |
-
<p class="submit" style="border-width: 0px;"><input class="button-primary" type="submit" name="force_activation" value="<?php _e("Fix the problem", $cimy_uef_domain); ?>" onclick="return confirm('<?php
|
449 |
}
|
450 |
else if ($cimy_uef_version != $options['version']) {
|
451 |
?><br /><h4><?php _e("VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems...", $cimy_uef_domain); ?></h4>
|
452 |
|
453 |
-
<p class="submit" style="border-width: 0px;"><input class="button-primary" type="submit" name="force_activation" value="<?php _e("Fix the problem", $cimy_uef_domain); ?>" onclick="return confirm('<?php
|
454 |
}
|
455 |
?>
|
456 |
</td>
|
@@ -632,7 +634,7 @@ function cimy_show_options($results, $embedded) {
|
|
632 |
<td></td>
|
633 |
</tr>
|
634 |
<tr>
|
635 |
-
<th scope="row"><input type="checkbox" name="
|
636 |
<td></td>
|
637 |
</tr>
|
638 |
</table>
|
228 |
}
|
229 |
}
|
230 |
|
231 |
+
if (isset($_POST['show_wp_bio-info'])) {
|
232 |
array_push($options['wp_hidden_fields'], 'bio-info');
|
233 |
|
234 |
if (!in_array("bio-info", $old_wp_hidden_fields)) {
|
397 |
|
398 |
if ((isset($cimy_top_menu)) && ($embedded))
|
399 |
return $ret;
|
400 |
+
|
401 |
+
$update_db_label = $wpdb->escape(__("This operation will create/update all missing tables/options, do you want to proceed?", $cimy_uef_domain));
|
402 |
|
403 |
?>
|
404 |
|
447 |
?><br /><h4><?php _e("OPTIONS DELETED!", $cimy_uef_domain); ?></h4>
|
448 |
<input type="hidden" name="do_not_save_options" value="1" />
|
449 |
|
450 |
+
<p class="submit" style="border-width: 0px;"><input class="button-primary" type="submit" name="force_activation" value="<?php _e("Fix the problem", $cimy_uef_domain); ?>" onclick="return confirm('<?php echo $update_db_label; ?>');" /></p><?php
|
451 |
}
|
452 |
else if ($cimy_uef_version != $options['version']) {
|
453 |
?><br /><h4><?php _e("VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems...", $cimy_uef_domain); ?></h4>
|
454 |
|
455 |
+
<p class="submit" style="border-width: 0px;"><input class="button-primary" type="submit" name="force_activation" value="<?php _e("Fix the problem", $cimy_uef_domain); ?>" onclick="return confirm('<?php echo $update_db_label; ?>');" /></p><?php
|
456 |
}
|
457 |
?>
|
458 |
</td>
|
634 |
<td></td>
|
635 |
</tr>
|
636 |
<tr>
|
637 |
+
<th scope="row"><input type="checkbox" name="show_wp_bio-info" value="1"<?php echo $show_wp_bio_info.$dis_wp_fields; ?> /> <?php _e("Show Biographical Info", $cimy_uef_domain); ?></th>
|
638 |
<td></td>
|
639 |
</tr>
|
640 |
</table>
|
cimy_uef_profile.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
|
3 |
function cimy_extract_ExtraFields() {
|
4 |
-
global $wpdb, $user_ID, $wpdb_data_table, $start_cimy_uef_comment, $end_cimy_uef_comment, $rule_profile_value, $cimy_uef_options, $rule_maxlen_needed, $fields_name_prefix, $cuef_upload_path, $is_mu, $cimy_uef_domain, $cuef_plugin_dir, $cimy_uef_file_types, $cimy_uef_textarea_types;
|
5 |
|
6 |
// if editing a different user (only admin)
|
7 |
if (isset($_GET['user_id'])) {
|
@@ -17,7 +17,7 @@ function cimy_extract_ExtraFields() {
|
|
17 |
|
18 |
$get_user_id = $user_ID;
|
19 |
}
|
20 |
-
|
21 |
$options = cimy_get_options();
|
22 |
|
23 |
$extra_fields = get_cimyFields(false, true);
|
@@ -43,7 +43,7 @@ function cimy_extract_ExtraFields() {
|
|
43 |
|
44 |
$radio_checked = array();
|
45 |
|
46 |
-
$current_fieldset =
|
47 |
$tiny_mce_objects = "";
|
48 |
|
49 |
if ($options['fieldset_title'] != "")
|
@@ -51,8 +51,7 @@ function cimy_extract_ExtraFields() {
|
|
51 |
else
|
52 |
$fieldset_titles = array();
|
53 |
|
54 |
-
|
55 |
-
echo "\n\t<h3>".$fieldset_titles[$current_fieldset]."</h3>\n";
|
56 |
|
57 |
echo '<table class="form-table">';
|
58 |
echo "\n";
|
@@ -68,339 +67,403 @@ function cimy_extract_ExtraFields() {
|
|
68 |
$description = $thisField['DESCRIPTION'];
|
69 |
$fieldset = $thisField['FIELDSET'];
|
70 |
$input_name = $fields_name_prefix.attribute_escape($name);
|
71 |
-
|
72 |
-
if ($rules['show_in_profile']) {
|
73 |
-
|
74 |
-
foreach ($ef_db as $d_field) {
|
75 |
-
if ($d_field['FIELD_ID'] == $field_id)
|
76 |
-
$value = $d_field['VALUE'];
|
77 |
-
}
|
78 |
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
if ($value == "")
|
84 |
-
$value = $thisField['VALUE'];
|
85 |
-
}
|
86 |
|
87 |
-
|
88 |
-
|
|
|
|
|
|
|
|
|
89 |
|
90 |
-
|
|
|
|
|
|
|
91 |
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
|
|
98 |
|
99 |
-
|
100 |
-
|
101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
case "picture-url":
|
107 |
-
case "password":
|
108 |
-
case "text":
|
109 |
-
$obj_label = '<label for="'.$fields_name_prefix.$field_id.'">'.$label.'</label>';
|
110 |
-
$obj_name = ' name="'.$input_name.'"';
|
111 |
-
|
112 |
-
if ($type == "picture-url")
|
113 |
-
$obj_type = ' type="text"';
|
114 |
-
else
|
115 |
-
$obj_type = ' type="'.$type.'"';
|
116 |
-
|
117 |
-
$obj_value = ' value="'.$value.'"';
|
118 |
-
$obj_value2 = "";
|
119 |
-
$obj_checked = "";
|
120 |
-
$obj_tag = "input";
|
121 |
-
$obj_closing_tag = false;
|
122 |
-
$obj_style = "";
|
123 |
-
|
124 |
-
if ((($old_value != "") && ($rules['edit'] == 'edit_only_if_empty'))
|
125 |
-
|| (($old_value != "") && (!current_user_can('edit_users')) && ($rules['edit'] == 'edit_only_by_admin_or_if_empty'))
|
126 |
-
|| ($rules['edit'] == 'no_edit')
|
127 |
-
|| (($rules['edit'] == 'edit_only_by_admin') && (!current_user_can('edit_users'))))
|
128 |
-
$obj_disabled = ' disabled="disabled"';
|
129 |
-
else
|
130 |
-
$obj_disabled = "";
|
131 |
-
|
132 |
-
break;
|
133 |
-
|
134 |
-
case "textarea":
|
135 |
-
$obj_label = '<label for="'.$fields_name_prefix.$field_id.'">'.$label.'</label>';
|
136 |
-
$obj_name = ' name="'.$input_name.'"';
|
137 |
-
$obj_type = "";
|
138 |
-
$obj_value = "";
|
139 |
-
$obj_value2 = $value;
|
140 |
-
$obj_checked = "";
|
141 |
-
$obj_tag = "textarea";
|
142 |
-
$obj_closing_tag = true;
|
143 |
-
$obj_style = "";
|
144 |
-
|
145 |
-
if ((($old_value != "") && ($rules['edit'] == 'edit_only_if_empty'))
|
146 |
-
|| (($old_value != "") && (!current_user_can('edit_users')) && ($rules['edit'] == 'edit_only_by_admin_or_if_empty'))
|
147 |
-
|| ($rules['edit'] == 'no_edit')
|
148 |
-
|| (($rules['edit'] == 'edit_only_by_admin') && (!current_user_can('edit_users'))))
|
149 |
-
$obj_disabled = ' disabled="disabled"';
|
150 |
-
else
|
151 |
-
$obj_disabled = "";
|
152 |
-
|
153 |
-
break;
|
154 |
-
|
155 |
-
case "textarea-rich":
|
156 |
-
if ($tiny_mce_objects == "")
|
157 |
-
$tiny_mce_objects = $fields_name_prefix.$field_id;
|
158 |
-
else
|
159 |
-
$tiny_mce_objects .= ",".$fields_name_prefix.$field_id;
|
160 |
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|| ($rules['edit'] == 'no_edit')
|
174 |
-
|| (($rules['edit'] == 'edit_only_by_admin') && (!current_user_can('edit_users'))))
|
175 |
-
$obj_disabled = ' disabled="disabled"';
|
176 |
-
else
|
177 |
-
$obj_disabled = "";
|
178 |
-
break;
|
179 |
-
|
180 |
-
case "dropdown":
|
181 |
-
$ret = cimy_dropDownOptions($label, $value);
|
182 |
-
$label = $ret['label'];
|
183 |
-
$html = $ret['html'];
|
184 |
-
|
185 |
-
$obj_label = '<label for="'.$fields_name_prefix.$field_id.'">'.$label.'</label>';
|
186 |
-
$obj_name = ' name="'.$input_name.'"';
|
187 |
-
$obj_type = '';
|
188 |
-
$obj_value = '';
|
189 |
-
$obj_value2 = $html;
|
190 |
-
$obj_checked = "";
|
191 |
-
$obj_tag = "select";
|
192 |
-
$obj_closing_tag = true;
|
193 |
-
$obj_style = "";
|
194 |
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|| (($rules['edit'] == 'edit_only_by_admin') && (!current_user_can('edit_users'))))
|
199 |
-
$obj_disabled = ' disabled="disabled"';
|
200 |
-
else
|
201 |
-
$obj_disabled = "";
|
202 |
-
|
203 |
-
break;
|
204 |
-
|
205 |
-
case "checkbox":
|
206 |
-
$obj_label = '<label for="'.$fields_name_prefix.$field_id.'">'.$label.'</label>';
|
207 |
-
$obj_name = ' name="'.$input_name.'"';
|
208 |
-
$obj_type = ' type="'.$type.'"';
|
209 |
-
$obj_value = ' value="1"';
|
210 |
-
$obj_value2 = "";
|
211 |
-
$value == "YES" ? $obj_checked = ' checked="checked"' : $obj_checked = '';
|
212 |
-
$obj_tag = "input";
|
213 |
-
$obj_closing_tag = false;
|
214 |
-
$obj_style = ' style="width:auto; border:0; background:white;"';
|
215 |
-
|
216 |
-
if (($rules['edit'] == 'no_edit')
|
217 |
-
|| ((($rules['edit'] == 'edit_only_by_admin') || ($rules['edit'] == 'edit_only_by_admin_or_if_empty')) && (!current_user_can('edit_users'))))
|
218 |
-
$obj_disabled = ' disabled="disabled"';
|
219 |
-
else
|
220 |
-
$obj_disabled = "";
|
221 |
-
|
222 |
-
break;
|
223 |
-
|
224 |
-
case "radio":
|
225 |
-
$obj_label = '<label for="'.$fields_name_prefix.$field_id.'"> '.$label.'</label>';
|
226 |
-
$obj_name = ' name="'.$input_name.'"';
|
227 |
$obj_type = ' type="'.$type.'"';
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|| ((($rules['edit'] == 'edit_only_by_admin') || ($rules['edit'] == 'edit_only_by_admin_or_if_empty')) && (!current_user_can('edit_users'))))
|
236 |
-
$obj_disabled = ' disabled="disabled"';
|
237 |
-
else
|
238 |
-
$obj_disabled = "";
|
239 |
-
|
240 |
-
if ($value == "")
|
241 |
-
$obj_checked = '';
|
242 |
-
else
|
243 |
-
$obj_checked.= ' checked="checked"';
|
244 |
-
|
245 |
-
break;
|
246 |
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
$
|
252 |
-
|
253 |
-
$
|
254 |
-
$obj_type = ' type="file"';
|
255 |
-
$obj_value = ' value=""';
|
256 |
-
$obj_value2 = '';
|
257 |
-
$obj_checked = "";
|
258 |
-
$obj_tag = "input";
|
259 |
-
$obj_closing_tag = false;
|
260 |
-
$obj_style = ' onchange="uploadPic(\'your-profile\', \''.$fields_name_prefix.$field_id.'\', \''.__("Please upload an image with one of the following extensions", $cimy_uef_domain).'\');"';
|
261 |
-
|
262 |
-
if ((($old_value != "") && ($rules['edit'] == 'edit_only_if_empty'))
|
263 |
-
|| (($old_value != "") && (!current_user_can('edit_users')) && ($rules['edit'] == 'edit_only_by_admin_or_if_empty'))
|
264 |
-
|| (($rules['edit'] == 'no_edit'))
|
265 |
-
|| (($rules['edit'] == 'edit_only_by_admin') && (!current_user_can('edit_users'))))
|
266 |
-
$obj_disabled = ' disabled="disabled"';
|
267 |
-
else
|
268 |
-
$obj_disabled = "";
|
269 |
-
|
270 |
-
break;
|
271 |
|
272 |
-
|
273 |
-
if (isset($rules['equal_to']))
|
274 |
-
$obj_value = cimy_get_formatted_date($value, $rules['equal_to']);
|
275 |
-
else
|
276 |
-
$obj_value = cimy_get_formatted_date($value);
|
277 |
|
278 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
}
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
$
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
|
|
305 |
|
306 |
-
|
307 |
-
$
|
308 |
-
|
309 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
|
317 |
-
|
318 |
-
echo $description."<br />";
|
319 |
|
320 |
-
|
321 |
-
|
322 |
-
}
|
323 |
|
324 |
-
|
325 |
-
|
326 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
|
329 |
-
|
330 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
echo "\n\t\t";
|
337 |
-
|
338 |
-
if (is_file($file_thumb)) {
|
339 |
-
echo '<a href="'.$value.'"><img src="'.$value_thumb.'" alt="picture" /></a><br />';
|
340 |
-
echo "\n\t\t";
|
341 |
-
}
|
342 |
-
else {
|
343 |
-
echo '<img src="'.$value.'" alt="picture" /><br />';
|
344 |
-
echo "\n\t\t";
|
345 |
-
}
|
346 |
-
}
|
347 |
-
|
348 |
-
// if there is no image or there is the default one then disable delete button
|
349 |
-
if ($old_value == "") {
|
350 |
-
$dis_delete_img = ' disabled="disabled"';
|
351 |
}
|
352 |
-
|
353 |
-
|
354 |
-
// take the "can be modified" rule just set before
|
355 |
-
$dis_delete_img = $obj_disabled;
|
356 |
-
|
357 |
-
echo '<input type="hidden" name="'.$input_name.'_oldfile" value="'.basename($value).'" />';
|
358 |
echo "\n\t\t";
|
359 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
360 |
|
361 |
-
echo '<input type="
|
362 |
-
echo " ".__("Delete the picture", $cimy_uef_domain)."<br /><br />";
|
363 |
-
|
364 |
-
echo "\n\t\t".__("Update the picture", $cimy_uef_domain)."<br />";
|
365 |
echo "\n\t\t";
|
366 |
}
|
367 |
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
}
|
382 |
|
383 |
-
echo "<br />"
|
|
|
384 |
}
|
385 |
-
|
386 |
-
// write to the html the form object built
|
387 |
-
if ($type != "registration-date")
|
388 |
-
echo $form_object;
|
389 |
-
else
|
390 |
-
echo $obj_value;
|
391 |
|
392 |
-
|
393 |
-
|
394 |
-
echo "<br />";
|
395 |
-
else
|
396 |
-
echo " ";
|
397 |
-
|
398 |
-
echo $description;
|
399 |
-
}
|
400 |
|
401 |
-
|
402 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
}
|
|
|
|
|
|
|
404 |
}
|
405 |
|
406 |
echo "</table>";
|
@@ -411,15 +474,15 @@ function cimy_extract_ExtraFields() {
|
|
411 |
require_once($cuef_plugin_dir.'/cimy_uef_init_mce.php');
|
412 |
}
|
413 |
|
414 |
-
if ($
|
415 |
-
wp_print_scripts("
|
416 |
|
417 |
echo $end_cimy_uef_comment;
|
418 |
}
|
419 |
}
|
420 |
|
421 |
function cimy_update_ExtraFields() {
|
422 |
-
global $wpdb, $wpdb_data_table, $user_ID, $max_length_value, $fields_name_prefix;
|
423 |
|
424 |
// if updating meta-data from registration post then exit
|
425 |
if (isset($_POST['cimy_post']))
|
@@ -449,113 +512,123 @@ function cimy_update_ExtraFields() {
|
|
449 |
$label = $thisField["LABEL"];
|
450 |
$rules = $thisField["RULES"];
|
451 |
$input_name = $fields_name_prefix.$wpdb->escape($name);
|
452 |
-
|
453 |
cimy_insert_ExtraFields_if_not_exist($get_user_id, $field_id);
|
454 |
|
455 |
-
// if
|
456 |
-
|
457 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
458 |
$field_value = stripslashes($_POST[$input_name]);
|
459 |
-
|
460 |
-
|
461 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
462 |
|
463 |
-
|
464 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
465 |
else
|
466 |
-
$
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
if ($i > 0)
|
471 |
-
$field_ids.= ", ";
|
472 |
else
|
473 |
-
$
|
474 |
-
|
475 |
-
$
|
476 |
-
|
477 |
-
$query.= " WHEN ".$field_id." THEN ";
|
478 |
-
|
479 |
-
switch ($type) {
|
480 |
-
case 'picture-url':
|
481 |
-
case 'textarea':
|
482 |
-
case 'textarea-rich':
|
483 |
-
case 'dropdown':
|
484 |
-
case 'password':
|
485 |
-
case 'text':
|
486 |
-
$value = "'".$field_value."'";
|
487 |
-
break;
|
488 |
-
|
489 |
-
case 'checkbox':
|
490 |
-
$value = $field_value == '1' ? "'YES'" : "'NO'";
|
491 |
-
break;
|
492 |
-
|
493 |
-
case 'radio':
|
494 |
-
$value = $field_value == $field_id ? "'selected'" : "''";
|
495 |
-
break;
|
496 |
-
}
|
497 |
-
|
498 |
-
$query.= $value;
|
499 |
-
}
|
500 |
-
// when a checkbox is not selected then it isn't present in $_POST at all
|
501 |
-
// file input in html also is not present into $_POST at all so manage here
|
502 |
-
else {
|
503 |
-
$rules = $thisField['RULES'];
|
504 |
-
|
505 |
-
if (($type == 'picture') || ($type == "avatar")) {
|
506 |
-
$profileuser = get_user_to_edit($get_user_id);
|
507 |
-
$user_login = $profileuser->user_login;
|
508 |
-
|
509 |
-
if ($type == "avatar") {
|
510 |
-
$is_avatar = true;
|
511 |
-
// since avatars are drawn max to 512px then we can save bandwith resizing, do it!
|
512 |
-
$rules['equal_to'] = 512;
|
513 |
-
}
|
514 |
-
else
|
515 |
-
$is_avatar = false;
|
516 |
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
$delete_file = false;
|
521 |
-
|
522 |
-
if (isset($_POST[$input_name.'_oldfile']))
|
523 |
-
$old_file = stripslashes($_POST[$input_name.'_oldfile']);
|
524 |
else
|
525 |
-
$
|
|
|
|
|
526 |
|
527 |
-
$
|
528 |
|
529 |
-
|
530 |
-
|
531 |
-
$field_ids.= ", ";
|
532 |
-
else
|
533 |
-
$i = 1;
|
534 |
-
|
535 |
-
$field_ids.= $field_id;
|
536 |
-
|
537 |
-
$value = "'".$field_value."'";
|
538 |
-
|
539 |
-
$query.= " WHEN ".$field_id." THEN ";
|
540 |
-
$query.= $value;
|
541 |
-
}
|
542 |
}
|
543 |
-
|
544 |
-
if ($type == 'checkbox') {
|
545 |
-
// if can be editable then write NO
|
546 |
-
// there is no way to understand if was YES or NO previously
|
547 |
-
// without adding other hidden inputs so write always
|
548 |
-
if (($rules['edit'] == "ok_edit") || (($rules['edit'] == 'edit_only_by_admin') && (current_user_can('edit_users')))) {
|
549 |
-
if ($i > 0)
|
550 |
-
$field_ids.= ", ";
|
551 |
-
else
|
552 |
-
$i = 1;
|
553 |
-
|
554 |
-
$field_ids.= $field_id;
|
555 |
|
556 |
-
|
557 |
-
|
558 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
559 |
}
|
560 |
}
|
561 |
}
|
1 |
<?php
|
2 |
|
3 |
function cimy_extract_ExtraFields() {
|
4 |
+
global $wpdb, $user_ID, $wpdb_data_table, $start_cimy_uef_comment, $end_cimy_uef_comment, $rule_profile_value, $cimy_uef_options, $rule_maxlen_needed, $fields_name_prefix, $cuef_upload_path, $is_mu, $cimy_uef_domain, $cuef_plugin_dir, $cimy_uef_file_types, $cimy_uef_textarea_types, $user_level;
|
5 |
|
6 |
// if editing a different user (only admin)
|
7 |
if (isset($_GET['user_id'])) {
|
17 |
|
18 |
$get_user_id = $user_ID;
|
19 |
}
|
20 |
+
|
21 |
$options = cimy_get_options();
|
22 |
|
23 |
$extra_fields = get_cimyFields(false, true);
|
43 |
|
44 |
$radio_checked = array();
|
45 |
|
46 |
+
$current_fieldset = -1;
|
47 |
$tiny_mce_objects = "";
|
48 |
|
49 |
if ($options['fieldset_title'] != "")
|
51 |
else
|
52 |
$fieldset_titles = array();
|
53 |
|
54 |
+
$close_table = false;
|
|
|
55 |
|
56 |
echo '<table class="form-table">';
|
57 |
echo "\n";
|
67 |
$description = $thisField['DESCRIPTION'];
|
68 |
$fieldset = $thisField['FIELDSET'];
|
69 |
$input_name = $fields_name_prefix.attribute_escape($name);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
+
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
72 |
+
// apply only for EXTRA FIELDS
|
73 |
+
if ($user_level < $rules['show_level'])
|
74 |
+
continue;
|
|
|
|
|
|
|
75 |
|
76 |
+
// if show_level == anonymous then do NOT ovverride other show_xyz rules
|
77 |
+
if ($rules['show_level'] == -1) {
|
78 |
+
// if flag to show the field in the profile is NOT activated, skip it
|
79 |
+
if (!$rules['show_in_profile'])
|
80 |
+
continue;
|
81 |
+
}
|
82 |
|
83 |
+
foreach ($ef_db as $d_field) {
|
84 |
+
if ($d_field['FIELD_ID'] == $field_id)
|
85 |
+
$value = $d_field['VALUE'];
|
86 |
+
}
|
87 |
|
88 |
+
$old_value = $value;
|
89 |
+
|
90 |
+
// if nothing is inserted and field admin default value then assign it
|
91 |
+
if (in_array($type, $rule_profile_value)) {
|
92 |
+
if ($value == "")
|
93 |
+
$value = $thisField['VALUE'];
|
94 |
+
}
|
95 |
|
96 |
+
if (($fieldset > $current_fieldset) && (isset($fieldset_titles[$fieldset]))) {
|
97 |
+
$current_fieldset = $fieldset;
|
98 |
+
|
99 |
+
// do not close the table if it is the first iteration
|
100 |
+
if ($close_table)
|
101 |
+
echo "</table>\n";
|
102 |
+
else
|
103 |
+
$close_table = true;
|
104 |
+
|
105 |
+
if (isset($fieldset_titles[$current_fieldset]))
|
106 |
+
echo "\n\t<h3>".$fieldset_titles[$current_fieldset]."</h3>\n";
|
107 |
|
108 |
+
echo '<table class="form-table">';
|
109 |
+
echo "\n";
|
110 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
|
112 |
+
echo "\t";
|
113 |
+
echo "<tr>";
|
114 |
+
echo "\n\t";
|
115 |
+
|
116 |
+
$value = attribute_escape($value);
|
117 |
+
|
118 |
+
switch($type) {
|
119 |
+
case "picture-url":
|
120 |
+
case "password":
|
121 |
+
case "text":
|
122 |
+
$obj_label = '<label for="'.$fields_name_prefix.$field_id.'">'.$label.'</label>';
|
123 |
+
$obj_name = ' name="'.$input_name.'"';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
|
125 |
+
if ($type == "picture-url")
|
126 |
+
$obj_type = ' type="text"';
|
127 |
+
else
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
$obj_type = ' type="'.$type.'"';
|
129 |
+
|
130 |
+
$obj_value = ' value="'.$value.'"';
|
131 |
+
$obj_value2 = "";
|
132 |
+
$obj_checked = "";
|
133 |
+
$obj_tag = "input";
|
134 |
+
$obj_closing_tag = false;
|
135 |
+
$obj_style = ' class="regular-text"';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
|
137 |
+
if ((($old_value != "") && ($rules['edit'] == 'edit_only_if_empty'))
|
138 |
+
|| (($old_value != "") && (!current_user_can('edit_users')) && ($rules['edit'] == 'edit_only_by_admin_or_if_empty'))
|
139 |
+
|| ($rules['edit'] == 'no_edit')
|
140 |
+
|| (($rules['edit'] == 'edit_only_by_admin') && (!current_user_can('edit_users'))))
|
141 |
+
$obj_disabled = ' disabled="disabled"';
|
142 |
+
else
|
143 |
+
$obj_disabled = "";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
|
145 |
+
break;
|
|
|
|
|
|
|
|
|
146 |
|
147 |
+
case "textarea":
|
148 |
+
$obj_label = '<label for="'.$fields_name_prefix.$field_id.'">'.$label.'</label>';
|
149 |
+
$obj_name = ' name="'.$input_name.'"';
|
150 |
+
$obj_type = "";
|
151 |
+
$obj_value = "";
|
152 |
+
$obj_value2 = $value;
|
153 |
+
$obj_checked = "";
|
154 |
+
$obj_tag = "textarea";
|
155 |
+
$obj_closing_tag = true;
|
156 |
+
$obj_style = "";
|
157 |
+
|
158 |
+
if ((($old_value != "") && ($rules['edit'] == 'edit_only_if_empty'))
|
159 |
+
|| (($old_value != "") && (!current_user_can('edit_users')) && ($rules['edit'] == 'edit_only_by_admin_or_if_empty'))
|
160 |
+
|| ($rules['edit'] == 'no_edit')
|
161 |
+
|| (($rules['edit'] == 'edit_only_by_admin') && (!current_user_can('edit_users'))))
|
162 |
+
$obj_disabled = ' disabled="disabled"';
|
163 |
+
else
|
164 |
+
$obj_disabled = "";
|
165 |
|
166 |
+
break;
|
167 |
+
|
168 |
+
case "textarea-rich":
|
169 |
+
if ($tiny_mce_objects == "")
|
170 |
+
$tiny_mce_objects = $fields_name_prefix.$field_id;
|
171 |
+
else
|
172 |
+
$tiny_mce_objects .= ",".$fields_name_prefix.$field_id;
|
173 |
+
|
174 |
+
$obj_label = '<label for="'.$fields_name_prefix.$field_id.'">'.$label.'</label>';
|
175 |
+
$obj_name = ' name="'.$input_name.'"';
|
176 |
+
$obj_type = "";
|
177 |
+
$obj_value = "";
|
178 |
+
$obj_value2 = $value;
|
179 |
+
$obj_checked = "";
|
180 |
+
$obj_tag = "textarea";
|
181 |
+
$obj_closing_tag = true;
|
182 |
+
$obj_style = "";
|
183 |
+
|
184 |
+
if ((($old_value != "") && ($rules['edit'] == 'edit_only_if_empty'))
|
185 |
+
|| (($old_value != "") && (!current_user_can('edit_users')) && ($rules['edit'] == 'edit_only_by_admin_or_if_empty'))
|
186 |
+
|| ($rules['edit'] == 'no_edit')
|
187 |
+
|| (($rules['edit'] == 'edit_only_by_admin') && (!current_user_can('edit_users'))))
|
188 |
+
$obj_disabled = ' disabled="disabled"';
|
189 |
+
else
|
190 |
+
$obj_disabled = "";
|
191 |
+
break;
|
192 |
+
|
193 |
+
case "dropdown-multi":
|
194 |
+
case "dropdown":
|
195 |
+
$ret = cimy_dropDownOptions($label, $value);
|
196 |
+
$label = $ret['label'];
|
197 |
+
$html = $ret['html'];
|
198 |
+
|
199 |
+
$obj_label = '<label for="'.$fields_name_prefix.$field_id.'">'.$label.'</label>';
|
200 |
+
|
201 |
+
|
202 |
+
if ($type == "dropdown-multi") {
|
203 |
+
$obj_name = ' name="'.$input_name.'[]" multiple="multiple" size="5"';
|
204 |
+
$obj_style = ' style="height: 11em;"';
|
205 |
}
|
206 |
+
else {
|
207 |
+
$obj_name = ' name="'.$input_name.'"';
|
208 |
+
$obj_style = '';
|
209 |
+
}
|
210 |
+
|
211 |
+
$obj_type = '';
|
212 |
+
$obj_value = '';
|
213 |
+
$obj_value2 = $html;
|
214 |
+
$obj_checked = "";
|
215 |
+
$obj_tag = "select";
|
216 |
+
$obj_closing_tag = true;
|
217 |
|
218 |
+
if ((($old_value != "") && ($rules['edit'] == 'edit_only_if_empty'))
|
219 |
+
|| (($old_value != "") && (!current_user_can('edit_users')) && ($rules['edit'] == 'edit_only_by_admin_or_if_empty'))
|
220 |
+
|| ($rules['edit'] == 'no_edit')
|
221 |
+
|| (($rules['edit'] == 'edit_only_by_admin') && (!current_user_can('edit_users'))))
|
222 |
+
$obj_disabled = ' disabled="disabled"';
|
223 |
+
else
|
224 |
+
$obj_disabled = "";
|
225 |
+
|
226 |
+
break;
|
227 |
+
|
228 |
+
case "checkbox":
|
229 |
+
$obj_label = '<label for="'.$fields_name_prefix.$field_id.'">'.$label.'</label>';
|
230 |
+
$obj_name = ' name="'.$input_name.'"';
|
231 |
+
$obj_type = ' type="'.$type.'"';
|
232 |
+
$obj_value = ' value="1"';
|
233 |
+
$obj_value2 = "";
|
234 |
+
$value == "YES" ? $obj_checked = ' checked="checked"' : $obj_checked = '';
|
235 |
+
$obj_tag = "input";
|
236 |
+
$obj_closing_tag = false;
|
237 |
+
$obj_style = ' style="width:auto; border:0; background:white;"';
|
238 |
+
|
239 |
+
if (($rules['edit'] == 'no_edit')
|
240 |
+
|| ((($rules['edit'] == 'edit_only_by_admin') || ($rules['edit'] == 'edit_only_by_admin_or_if_empty')) && (!current_user_can('edit_users'))))
|
241 |
+
$obj_disabled = ' disabled="disabled"';
|
242 |
+
else
|
243 |
+
$obj_disabled = "";
|
244 |
+
|
245 |
+
break;
|
246 |
|
247 |
+
case "radio":
|
248 |
+
$obj_label = '<label for="'.$fields_name_prefix.$field_id.'"> '.$label.'</label>';
|
249 |
+
$obj_name = ' name="'.$input_name.'"';
|
250 |
+
$obj_type = ' type="'.$type.'"';
|
251 |
+
$obj_value = ' value="'.$field_id.'"';
|
252 |
+
$obj_value2 = "";
|
253 |
+
$obj_tag = "input";
|
254 |
+
$obj_closing_tag = false;
|
255 |
+
$obj_style = ' style="width:auto; border:0; background:white;"';
|
256 |
+
|
257 |
+
if (($rules['edit'] == 'no_edit')
|
258 |
+
|| ((($rules['edit'] == 'edit_only_by_admin') || ($rules['edit'] == 'edit_only_by_admin_or_if_empty')) && (!current_user_can('edit_users'))))
|
259 |
+
$obj_disabled = ' disabled="disabled"';
|
260 |
+
else
|
261 |
+
$obj_disabled = "";
|
262 |
+
|
263 |
+
if ($value == "")
|
264 |
+
$obj_checked = '';
|
265 |
+
else
|
266 |
+
$obj_checked.= ' checked="checked"';
|
267 |
+
|
268 |
+
break;
|
269 |
+
|
270 |
+
case "avatar":
|
271 |
+
case "picture":
|
272 |
+
case "file":
|
273 |
+
$allowed_exts = '';
|
274 |
+
if (isset($rules['equal_to']))
|
275 |
+
if ($rules['equal_to'] != "")
|
276 |
+
$allowed_exts = "'".implode("', '", explode(",", $rules['equal_to']))."'";
|
277 |
+
|
278 |
+
// javascript will be added later
|
279 |
+
$upload_file_function = true;
|
280 |
+
$obj_label = '<label for="'.$fields_name_prefix.$field_id.'">'.$label.'</label>';
|
281 |
+
$obj_class = '';
|
282 |
+
$obj_name = ' name="'.$input_name.'"';
|
283 |
+
$obj_type = ' type="file"';
|
284 |
+
$obj_value = ' value=""';
|
285 |
+
$obj_value2 = '';
|
286 |
+
$obj_checked = "";
|
287 |
+
$obj_tag = "input";
|
288 |
+
$obj_closing_tag = false;
|
289 |
+
|
290 |
+
if ($type == "file") {
|
291 |
+
// if we do not escape then some translations can break
|
292 |
+
$warning_msg = $wpdb->escape(__("Please upload a file with one of the following extensions", $cimy_uef_domain));
|
293 |
+
|
294 |
+
$obj_style = ' onchange="uploadFile(\'your-profile\', \''.$fields_name_prefix.$field_id.'\', \''.$warning_msg.'\', Array('.$allowed_exts.'));"';
|
295 |
+
}
|
296 |
+
else {
|
297 |
+
// if we do not escape then some translations can break
|
298 |
+
$warning_msg = $wpdb->escape(__("Please upload an image with one of the following extensions", $cimy_uef_domain));
|
299 |
+
|
300 |
+
$obj_style = ' onchange="uploadFile(\'your-profile\', \''.$fields_name_prefix.$field_id.'\', \''.$warning_msg.'\', Array(\'gif\', \'png\', \'jpg\', \'jpeg\', \'tiff\'));"';
|
301 |
+
}
|
302 |
+
|
303 |
+
if ((($old_value != "") && ($rules['edit'] == 'edit_only_if_empty'))
|
304 |
+
|| (($old_value != "") && (!current_user_can('edit_users')) && ($rules['edit'] == 'edit_only_by_admin_or_if_empty'))
|
305 |
+
|| (($rules['edit'] == 'no_edit'))
|
306 |
+
|| (($rules['edit'] == 'edit_only_by_admin') && (!current_user_can('edit_users'))))
|
307 |
+
$obj_disabled = ' disabled="disabled"';
|
308 |
+
else
|
309 |
+
$obj_disabled = "";
|
310 |
+
|
311 |
+
break;
|
312 |
+
|
313 |
+
case "registration-date":
|
314 |
+
if (isset($rules['equal_to']))
|
315 |
+
$obj_value = cimy_get_formatted_date($value, $rules['equal_to']);
|
316 |
+
else
|
317 |
+
$obj_value = cimy_get_formatted_date($value);
|
318 |
|
319 |
+
$obj_label = '<label>'.$label.'</label>';
|
|
|
320 |
|
321 |
+
break;
|
322 |
+
}
|
|
|
323 |
|
324 |
+
|
325 |
+
$obj_id = ' id="'.$fields_name_prefix.$field_id.'"';
|
326 |
+
$obj_class = '';
|
327 |
+
|
328 |
+
$obj_maxlen = "";
|
329 |
+
|
330 |
+
if ((in_array($type, $rule_maxlen_needed)) && (!in_array($type, $cimy_uef_file_types))) {
|
331 |
+
if (isset($rules['max_length'])) {
|
332 |
+
$obj_maxlen = ' maxlength="'.$rules['max_length'].'"';
|
333 |
+
} else if (isset($rules['exact_length'])) {
|
334 |
+
$obj_maxlen = ' maxlength="'.$rules['exact_length'].'"';
|
335 |
}
|
336 |
+
}
|
337 |
+
|
338 |
+
if (in_array($type, $cimy_uef_textarea_types))
|
339 |
+
$obj_rowscols = ' rows="3" cols="25"';
|
340 |
+
else
|
341 |
+
$obj_rowscols = '';
|
342 |
|
343 |
+
echo "\t";
|
344 |
+
|
345 |
+
$form_object = '<'.$obj_tag.$obj_id.$obj_class.$obj_name.$obj_type.$obj_value.$obj_checked.$obj_maxlen.$obj_rowscols.$obj_style.$obj_disabled;
|
346 |
+
|
347 |
+
if ($obj_closing_tag)
|
348 |
+
$form_object.= ">".$obj_value2."</".$obj_tag.">";
|
349 |
+
else
|
350 |
+
$form_object.= " />";
|
351 |
+
|
352 |
+
echo "<th>";
|
353 |
+
echo $obj_label;
|
354 |
+
echo "</th>\n";
|
355 |
+
|
356 |
+
echo "\t\t<td>";
|
357 |
+
|
358 |
+
if (($description != "") && (($type == "picture") || ($type == "picture-url")))
|
359 |
+
echo $description."<br />";
|
360 |
+
|
361 |
+
if (in_array($type, $cimy_uef_file_types)) {
|
362 |
+
$profileuser = get_user_to_edit($get_user_id);
|
363 |
+
}
|
364 |
+
|
365 |
+
if ($type == "avatar") {
|
366 |
+
$user_email = $profileuser->user_email;
|
367 |
+
echo '<div id="profpic">'.get_avatar($user_email, $size = '128')."</div>\n\t\t";
|
368 |
+
}
|
369 |
+
|
370 |
+
if ((in_array($type, $cimy_uef_file_types)) && ($value != "")) {
|
371 |
+
global $cimy_uef_plugins_dir;
|
372 |
+
|
373 |
+
$blog_path = $cuef_upload_path;
|
374 |
+
|
375 |
+
if (($cimy_uef_plugins_dir == "plugins") && ($is_mu)) {
|
376 |
+
global $blog_id;
|
377 |
+
|
378 |
+
$blog_path .= $blog_id."/";
|
379 |
+
}
|
380 |
+
|
381 |
+
$user_login = $profileuser->user_login;
|
382 |
+
|
383 |
+
if ($type == "picture") {
|
384 |
+
$value_thumb = cimy_get_thumb_path($value);
|
385 |
+
$file_thumb = $blog_path.$user_login."/".cimy_get_thumb_path(basename($value));
|
386 |
+
$file_on_server = $blog_path.$user_login."/".basename($value);
|
387 |
|
388 |
+
echo "\n\t\t";
|
389 |
+
if (is_file($file_thumb)) {
|
390 |
+
echo '<a target="_blank" href="'.$value.'"><img src="'.$value_thumb.'" alt="picture" /></a><br />';
|
|
|
391 |
echo "\n\t\t";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
392 |
}
|
393 |
+
else if (is_file($file_on_server)) {
|
394 |
+
echo '<img src="'.$value.'" alt="picture" /><br />';
|
|
|
|
|
|
|
|
|
395 |
echo "\n\t\t";
|
396 |
}
|
397 |
+
}
|
398 |
+
|
399 |
+
if ($type == "file") {
|
400 |
+
echo '<a target="_blank" href="'.$value.'">';
|
401 |
+
echo basename($value);
|
402 |
+
echo '</a><br />';
|
403 |
+
echo "\n\t\t";
|
404 |
+
}
|
405 |
+
|
406 |
+
// if there is no image or there is the default one then disable delete button
|
407 |
+
if ($old_value == "") {
|
408 |
+
$dis_delete_img = ' disabled="disabled"';
|
409 |
+
}
|
410 |
+
// else if there is an image and it's not the default one
|
411 |
+
else {
|
412 |
+
// take the "can be modified" rule just set before
|
413 |
+
$dis_delete_img = $obj_disabled;
|
414 |
|
415 |
+
echo '<input type="hidden" name="'.$input_name.'_oldfile" value="'.basename($value).'" />';
|
|
|
|
|
|
|
416 |
echo "\n\t\t";
|
417 |
}
|
418 |
|
419 |
+
echo '<input type="checkbox" name="'.$input_name.'_del" value="1" style="width:auto; border:0; background:white;"'.$dis_delete_img.' />';
|
420 |
+
|
421 |
+
if ($type == "file") {
|
422 |
+
echo " ".__("Delete the file", $cimy_uef_domain)."<br /><br />";
|
423 |
+
echo "\n\t\t".__("Update the file", $cimy_uef_domain)."<br />";
|
424 |
+
}
|
425 |
+
else {
|
426 |
+
echo " ".__("Delete the picture", $cimy_uef_domain)."<br /><br />";
|
427 |
+
echo "\n\t\t".__("Update the picture", $cimy_uef_domain)."<br />";
|
428 |
+
}
|
429 |
+
echo "\n\t\t";
|
430 |
+
}
|
431 |
+
|
432 |
+
if ($type == "picture-url") {
|
433 |
+
if ($value != "") {
|
434 |
+
if (intval($rules['equal_to'])) {
|
435 |
+
echo '<a target="_blank" href="'.$value.'">';
|
436 |
+
echo '<img src="'.$value.'" alt="picture"'.$size.' width="'.intval($rules['equal_to']).'" height="*" />';
|
437 |
+
echo "</a>";
|
438 |
+
}
|
439 |
+
else {
|
440 |
+
echo '<img src="'.$value.'" alt="picture" />';
|
441 |
}
|
442 |
|
443 |
+
echo "<br />";
|
444 |
+
echo "\n\t\t";
|
445 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
446 |
|
447 |
+
echo "<br />".__("Picture URL:", $cimy_uef_domain)."<br />\n\t\t";
|
448 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
449 |
|
450 |
+
// write to the html the form object built
|
451 |
+
if ($type != "registration-date")
|
452 |
+
echo $form_object;
|
453 |
+
else
|
454 |
+
echo $obj_value;
|
455 |
+
|
456 |
+
if (($description != "") && ($type != "picture") && ($type != "picture-url")) {
|
457 |
+
if (($type == "textarea") || ($type == "textarea-rich"))
|
458 |
+
echo "<br />";
|
459 |
+
else
|
460 |
+
echo " ";
|
461 |
+
|
462 |
+
echo $description;
|
463 |
}
|
464 |
+
|
465 |
+
echo "</td>";
|
466 |
+
echo "\n\t</tr>\n";
|
467 |
}
|
468 |
|
469 |
echo "</table>";
|
474 |
require_once($cuef_plugin_dir.'/cimy_uef_init_mce.php');
|
475 |
}
|
476 |
|
477 |
+
if ($upload_file_function)
|
478 |
+
wp_print_scripts("cimy_uef_upload_file");
|
479 |
|
480 |
echo $end_cimy_uef_comment;
|
481 |
}
|
482 |
}
|
483 |
|
484 |
function cimy_update_ExtraFields() {
|
485 |
+
global $wpdb, $wpdb_data_table, $user_ID, $max_length_value, $fields_name_prefix, $cimy_uef_file_types, $user_level;
|
486 |
|
487 |
// if updating meta-data from registration post then exit
|
488 |
if (isset($_POST['cimy_post']))
|
512 |
$label = $thisField["LABEL"];
|
513 |
$rules = $thisField["RULES"];
|
514 |
$input_name = $fields_name_prefix.$wpdb->escape($name);
|
515 |
+
|
516 |
cimy_insert_ExtraFields_if_not_exist($get_user_id, $field_id);
|
517 |
|
518 |
+
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
519 |
+
// apply only for EXTRA FIELDS
|
520 |
+
if ($user_level < $rules['show_level'])
|
521 |
+
continue;
|
522 |
+
|
523 |
+
// if show_level == anonymous then do NOT ovverride other show_xyz rules
|
524 |
+
if ($rules['show_level'] == -1) {
|
525 |
+
// if flag to show the field in the profile is NOT activated, skip it
|
526 |
+
if (!$rules['show_in_profile'])
|
527 |
+
continue;
|
528 |
+
}
|
529 |
+
|
530 |
+
if ((isset($_POST[$input_name])) && (!in_array($type, $cimy_uef_file_types))) {
|
531 |
+
if ($type == "dropdown-multi")
|
532 |
+
$field_value = stripslashes(implode(",", $_POST[$input_name]));
|
533 |
+
else
|
534 |
$field_value = stripslashes($_POST[$input_name]);
|
535 |
+
|
536 |
+
if ($type == "picture-url")
|
537 |
+
$field_value = str_replace('../', '', $field_value);
|
538 |
+
|
539 |
+
if (isset($rules['max_length']))
|
540 |
+
$field_value = substr($field_value, 0, $rules['max_length']);
|
541 |
+
else
|
542 |
+
$field_value = substr($field_value, 0, $max_length_value);
|
543 |
+
|
544 |
+
$field_value = $wpdb->escape($field_value);
|
545 |
+
|
546 |
+
if ($i > 0)
|
547 |
+
$field_ids.= ", ";
|
548 |
+
else
|
549 |
+
$i = 1;
|
550 |
+
|
551 |
+
$field_ids.= $field_id;
|
552 |
+
|
553 |
+
$query.= " WHEN ".$field_id." THEN ";
|
554 |
|
555 |
+
switch ($type) {
|
556 |
+
case 'picture-url':
|
557 |
+
case 'textarea':
|
558 |
+
case 'textarea-rich':
|
559 |
+
case 'dropdown':
|
560 |
+
case 'dropdown-multi':
|
561 |
+
case 'password':
|
562 |
+
case 'text':
|
563 |
+
$value = "'".$field_value."'";
|
564 |
+
break;
|
565 |
+
|
566 |
+
case 'checkbox':
|
567 |
+
$value = $field_value == '1' ? "'YES'" : "'NO'";
|
568 |
+
break;
|
569 |
+
|
570 |
+
case 'radio':
|
571 |
+
$value = $field_value == $field_id ? "'selected'" : "''";
|
572 |
+
break;
|
573 |
+
}
|
574 |
+
|
575 |
+
$query.= $value;
|
576 |
+
}
|
577 |
+
// when a checkbox is not selected then it isn't present in $_POST at all
|
578 |
+
// file input in html also is not present into $_POST at all so manage here
|
579 |
+
else {
|
580 |
+
$rules = $thisField['RULES'];
|
581 |
+
|
582 |
+
if (in_array($type, $cimy_uef_file_types)) {
|
583 |
+
$profileuser = get_user_to_edit($get_user_id);
|
584 |
+
$user_login = $profileuser->user_login;
|
585 |
+
|
586 |
+
if ($type == "avatar") {
|
587 |
+
// since avatars are drawn max to 512px then we can save bandwith resizing, do it!
|
588 |
+
$rules['equal_to'] = 512;
|
589 |
+
}
|
590 |
+
|
591 |
+
if (isset($_POST[$input_name.'_del']))
|
592 |
+
$delete_file = true;
|
593 |
else
|
594 |
+
$delete_file = false;
|
595 |
+
|
596 |
+
if (isset($_POST[$input_name.'_oldfile']))
|
597 |
+
$old_file = stripslashes($_POST[$input_name.'_oldfile']);
|
|
|
|
|
598 |
else
|
599 |
+
$old_file = false;
|
600 |
+
|
601 |
+
$field_value = cimy_manage_upload($input_name, $user_login, $rules, $old_file, $delete_file, $type);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
602 |
|
603 |
+
if (($field_value != "") || ($delete_file)) {
|
604 |
+
if ($i > 0)
|
605 |
+
$field_ids.= ", ";
|
|
|
|
|
|
|
|
|
606 |
else
|
607 |
+
$i = 1;
|
608 |
+
|
609 |
+
$field_ids.= $field_id;
|
610 |
|
611 |
+
$value = "'".$field_value."'";
|
612 |
|
613 |
+
$query.= " WHEN ".$field_id." THEN ";
|
614 |
+
$query.= $value;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
}
|
616 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
617 |
|
618 |
+
if ($type == 'checkbox') {
|
619 |
+
// if can be editable then write NO
|
620 |
+
// there is no way to understand if was YES or NO previously
|
621 |
+
// without adding other hidden inputs so write always
|
622 |
+
if (($rules['edit'] == "ok_edit") || (($rules['edit'] == 'edit_only_by_admin') && (current_user_can('edit_users')))) {
|
623 |
+
if ($i > 0)
|
624 |
+
$field_ids.= ", ";
|
625 |
+
else
|
626 |
+
$i = 1;
|
627 |
+
|
628 |
+
$field_ids.= $field_id;
|
629 |
+
|
630 |
+
$query.= " WHEN ".$field_id." THEN ";
|
631 |
+
$query.= "'NO'";
|
632 |
}
|
633 |
}
|
634 |
}
|
cimy_uef_register.php
CHANGED
@@ -8,6 +8,8 @@ function cimy_register_user_extra_hidden_fields_stage2() {
|
|
8 |
foreach ($_POST as $name=>$value) {
|
9 |
if (!(stristr($name, "cimy_uef_")) === FALSE) {
|
10 |
echo "\t\t<input type=\"hidden\" name=\"".$name."\" value=\"".attribute_escape($value)."\" />\n";
|
|
|
|
|
11 |
}
|
12 |
}
|
13 |
|
@@ -15,9 +17,12 @@ function cimy_register_user_extra_hidden_fields_stage2() {
|
|
15 |
}
|
16 |
|
17 |
function cimy_register_user_extra_fields_signup_meta($meta) {
|
|
|
18 |
foreach ($_POST as $name=>$value) {
|
19 |
if (!(stristr($name, "cimy_uef_")) === FALSE) {
|
20 |
$meta[$name] = $value;
|
|
|
|
|
21 |
}
|
22 |
}
|
23 |
|
@@ -59,14 +64,60 @@ function cimy_register_mu_overwrite_password($password) {
|
|
59 |
return $password;
|
60 |
}
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
function cimy_register_user_extra_fields($user_id, $password="", $meta=array()) {
|
63 |
-
global $wpdb_data_table, $wpdb, $max_length_value, $fields_name_prefix, $wp_fields_name_prefix, $wp_hidden_fields;
|
64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
$extra_fields = get_cimyFields(false, true);
|
66 |
$wp_fields = get_cimyFields(true);
|
67 |
-
|
68 |
$i = 1;
|
69 |
-
|
70 |
// do first for the WP fields then for EXTRA fields
|
71 |
while ($i <= 2) {
|
72 |
if ($i == 1) {
|
@@ -90,80 +141,96 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
|
|
90 |
$label = $thisField["LABEL"];
|
91 |
$rules = $thisField["RULES"];
|
92 |
$input_name = $prefix.$wpdb->escape($name);
|
93 |
-
|
94 |
-
// if
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
$data = stripslashes($_POST[$input_name]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
else
|
101 |
-
$data =
|
|
|
102 |
|
103 |
-
|
104 |
-
$data = cimy_manage_upload($input_name, sanitize_user($_POST['user_login']), $rules, false, false, false);
|
105 |
-
}
|
106 |
-
else if ($type == "avatar") {
|
107 |
-
// since avatars are drawn max to 512px then we can save bandwith resizing, do it!
|
108 |
-
$rules['equal_to'] = 512;
|
109 |
|
110 |
-
|
111 |
-
|
112 |
-
else {
|
113 |
-
if ($type == "picture-url")
|
114 |
-
$data = str_replace('../', '', $data);
|
115 |
-
|
116 |
-
if (isset($rules['max_length']))
|
117 |
-
$data = substr($data, 0, $rules['max_length']);
|
118 |
-
else
|
119 |
-
$data = substr($data, 0, $max_length_value);
|
120 |
-
}
|
121 |
-
|
122 |
-
$data = $wpdb->escape($data);
|
123 |
|
124 |
-
|
125 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
case 'checkbox':
|
140 |
-
$field_value = $data == '1' ? "YES" : "NO";
|
141 |
-
break;
|
142 |
-
|
143 |
-
case 'radio':
|
144 |
-
$field_value = $data == $field_id ? "selected" : "";
|
145 |
-
break;
|
146 |
-
|
147 |
-
case 'registration-date':
|
148 |
-
$field_value = mktime();
|
149 |
-
break;
|
150 |
-
}
|
151 |
-
|
152 |
-
$sql.= "VALUE='".$field_value."'";
|
153 |
-
$wpdb->query($sql);
|
154 |
-
}
|
155 |
-
else {
|
156 |
-
$f_name = strtolower($thisField['NAME']);
|
157 |
-
|
158 |
-
$userdata = array();
|
159 |
-
$userdata['ID'] = $user_id;
|
160 |
-
$userdata[$wp_hidden_fields[$f_name]['post_name']] = $data;
|
161 |
-
|
162 |
-
wp_update_user($userdata);
|
163 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
}
|
165 |
}
|
166 |
}
|
|
|
|
|
167 |
}
|
168 |
|
169 |
function cimy_registration_check_mu_wrapper($data) {
|
@@ -176,13 +243,35 @@ function cimy_registration_check_mu_wrapper($data) {
|
|
176 |
return $data;
|
177 |
}
|
178 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
function cimy_registration_check($user_login, $user_email, $errors) {
|
180 |
-
global $wpdb, $rule_canbeempty, $rule_email, $rule_maxlen, $fields_name_prefix, $wp_fields_name_prefix, $rule_equalto_case_sensitive, $apply_equalto_rule, $cimy_uef_domain, $cimy_uef_file_types, $rule_equalto_regex;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
|
182 |
$extra_fields = get_cimyFields(false, true);
|
183 |
$wp_fields = get_cimyFields(true);
|
184 |
-
|
185 |
-
|
|
|
|
|
|
|
|
|
186 |
|
187 |
// do first for the WP fields then for EXTRA fields
|
188 |
while ($i <= 2) {
|
@@ -207,9 +296,32 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
207 |
$description = $thisField['DESCRIPTION'];
|
208 |
$input_name = $prefix.$wpdb->escape($name);
|
209 |
$unique_id = $prefix.$field_id;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
|
211 |
-
if (isset($_POST[$input_name]))
|
212 |
-
$
|
|
|
|
|
|
|
|
|
213 |
else
|
214 |
$value = "";
|
215 |
|
@@ -225,135 +337,139 @@ function cimy_registration_check($user_login, $user_email, $errors) {
|
|
225 |
$file_type = $_FILES[$input_name]['type'];
|
226 |
$value = $_FILES[$input_name]['name'];
|
227 |
}
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
|
|
|
|
|
|
|
|
239 |
}
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
}
|
252 |
-
|
253 |
-
if ((isset($rules['equal_to'])) && (in_array($type, $apply_equalto_rule))) {
|
254 |
-
|
255 |
-
$equalTo = $rules['equal_to'];
|
256 |
-
// if the type is not allowed to be case sensitive
|
257 |
-
// OR if case sensitive is not checked
|
258 |
-
// AND
|
259 |
-
// if the type is not allowed to be a regex
|
260 |
-
// OR if regex rule is not set
|
261 |
-
// THEN switch to uppercase
|
262 |
-
if (((!in_array($type, $rule_equalto_case_sensitive)) || (!$rules['equal_to_case_sensitive'])) && ((!in_array($type, $rule_equalto_regex)) || (!$rules['equal_to_regex']))) {
|
263 |
-
|
264 |
-
$value = strtoupper($value);
|
265 |
-
$equalTo = strtoupper($equalTo);
|
266 |
-
}
|
267 |
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.$equalmsg.'.');
|
272 |
-
}
|
273 |
-
}
|
274 |
-
else if ($value != $equalTo) {
|
275 |
-
if (($type == "radio") || ($type == "checkbox"))
|
276 |
-
$equalTo == "YES" ? $equalTo = __("YES", $cimy_uef_domain) : __("NO", $cimy_uef_domain);
|
277 |
-
|
278 |
-
if ($type == "password")
|
279 |
-
$equalmsg = " ".__("isn’t correct", $cimy_uef_domain);
|
280 |
-
else
|
281 |
-
$equalmsg = ' '.__("should be", $cimy_uef_domain).' '.$equalTo;
|
282 |
-
|
283 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.$equalmsg.'.');
|
284 |
}
|
285 |
}
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
|
|
|
|
|
|
|
|
292 |
}
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
}
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
}
|
310 |
}
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
}
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
}
|
328 |
}
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
}
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
}
|
346 |
}
|
347 |
}
|
348 |
}
|
349 |
}
|
350 |
}
|
351 |
-
|
|
|
|
|
352 |
return $errors;
|
353 |
}
|
354 |
|
355 |
-
function cimy_registration_form($errors=null) {
|
356 |
-
global $wpdb, $start_cimy_uef_comment, $end_cimy_uef_comment, $rule_maxlen_needed, $fields_name_prefix, $wp_fields_name_prefix, $is_mu, $cuef_plugin_dir, $cimy_uef_file_types, $cimy_uef_textarea_types, $wp_27;
|
|
|
|
|
|
|
|
|
|
|
|
|
357 |
|
358 |
// needed by cimy_uef_init_mce.php
|
359 |
$cimy_uef_register_page = true;
|
@@ -387,7 +503,7 @@ function cimy_registration_form($errors=null) {
|
|
387 |
$i = 1;
|
388 |
$upload_image_function = false;
|
389 |
|
390 |
-
// do first
|
391 |
while ($i <= 2) {
|
392 |
if ($i == 1) {
|
393 |
$fields = $wp_fields;
|
@@ -396,19 +512,14 @@ function cimy_registration_form($errors=null) {
|
|
396 |
else {
|
397 |
$fields = $extra_fields;
|
398 |
$prefix = $fields_name_prefix;
|
399 |
-
$current_fieldset =
|
400 |
|
401 |
if ($options['fieldset_title'] != "")
|
402 |
$fieldset_titles = explode(',', $options['fieldset_title']);
|
403 |
else
|
404 |
$fieldset_titles = array();
|
405 |
-
|
406 |
-
if (isset($fieldset_titles[$current_fieldset]))
|
407 |
-
echo "\n\t<h2>".$fieldset_titles[$current_fieldset]."</h2>\n";
|
408 |
}
|
409 |
-
|
410 |
-
$i++;
|
411 |
-
|
412 |
$tiny_mce_objects = "";
|
413 |
|
414 |
foreach ($fields as $thisField) {
|
@@ -425,8 +536,45 @@ function cimy_registration_form($errors=null) {
|
|
425 |
$maxlen = 0;
|
426 |
$unique_id = $prefix.$field_id;
|
427 |
|
428 |
-
|
429 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
430 |
// if there is no value and not $_POST means is first visiting then put all default values
|
431 |
else if (!isset($_POST["cimy_post"])) {
|
432 |
$value = $thisField['VALUE'];
|
@@ -454,206 +602,230 @@ function cimy_registration_form($errors=null) {
|
|
454 |
$value = "";
|
455 |
|
456 |
$value = attribute_escape($value);
|
457 |
-
|
458 |
-
// if flag to view also in the registration is activated
|
459 |
-
if ($rules['show_in_reg']) {
|
460 |
-
if (($fieldset > $current_fieldset) && (isset($fieldset_titles[$fieldset])) && ($i != 1)) {
|
461 |
-
$current_fieldset = $fieldset;
|
462 |
|
463 |
-
|
464 |
-
|
465 |
-
}
|
466 |
|
467 |
-
if (($
|
468 |
-
echo "\t";
|
469 |
-
|
470 |
-
echo "\n";
|
471 |
-
}
|
472 |
|
|
|
473 |
echo "\t";
|
474 |
-
echo '<p id="'.$prefix.'
|
475 |
-
echo "\n
|
|
|
|
|
|
|
|
|
|
|
476 |
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
if ($type == "picture-url")
|
486 |
-
$obj_type = ' type="text"';
|
487 |
-
else
|
488 |
-
$obj_type = ' type="'.$type.'"';
|
489 |
-
|
490 |
-
$obj_value = ' value="'.$value.'"';
|
491 |
-
$obj_value2 = "";
|
492 |
-
$obj_checked = "";
|
493 |
-
$obj_tag = "input";
|
494 |
-
$obj_closing_tag = false;
|
495 |
-
break;
|
496 |
-
|
497 |
-
case "dropdown":
|
498 |
-
$ret = cimy_dropDownOptions($label, $value);
|
499 |
-
$label = $ret['label'];
|
500 |
-
$html = $ret['html'];
|
501 |
-
|
502 |
-
$obj_label = '<label for="'.$unique_id.'">'.$label.'</label>';
|
503 |
-
$obj_class = ' class="'.$input_class.'"';
|
504 |
-
$obj_name = ' name="'.$input_name.'"';
|
505 |
-
$obj_type = '';
|
506 |
-
$obj_value = '';
|
507 |
-
$obj_value2 = $html;
|
508 |
-
$obj_checked = "";
|
509 |
-
$obj_tag = "select";
|
510 |
-
$obj_closing_tag = true;
|
511 |
-
break;
|
512 |
-
|
513 |
-
case "textarea":
|
514 |
-
$obj_label = '<label for="'.$unique_id.'">'.$label.'</label>';
|
515 |
-
$obj_class = ' class="'.$input_class.'"';
|
516 |
-
$obj_name = ' name="'.$input_name.'"';
|
517 |
-
$obj_type = "";
|
518 |
-
$obj_value = "";
|
519 |
-
$obj_value2 = $value;
|
520 |
-
$obj_checked = "";
|
521 |
-
$obj_tag = "textarea";
|
522 |
-
$obj_closing_tag = true;
|
523 |
-
break;
|
524 |
-
|
525 |
-
case "textarea-rich":
|
526 |
-
if ($tiny_mce_objects == "")
|
527 |
-
$tiny_mce_objects = $fields_name_prefix.$field_id;
|
528 |
-
else
|
529 |
-
$tiny_mce_objects .= ",".$fields_name_prefix.$field_id;
|
530 |
|
531 |
-
|
532 |
-
$
|
533 |
-
|
534 |
-
$obj_type = "";
|
535 |
-
$obj_value = "";
|
536 |
-
$obj_value2 = $value;
|
537 |
-
$obj_checked = "";
|
538 |
-
$obj_tag = "textarea";
|
539 |
-
$obj_closing_tag = true;
|
540 |
-
break;
|
541 |
|
542 |
-
|
543 |
-
|
544 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
545 |
$obj_name = ' name="'.$input_name.'"';
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
553 |
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
break;
|
574 |
|
575 |
-
|
576 |
-
case "picture":
|
577 |
-
// javascript will be added later
|
578 |
-
$upload_image_function = true;
|
579 |
-
$obj_label = '<label for="'.$unique_id.'">'.$label.' </label>';
|
580 |
-
$obj_class = ' class="cimy_uef_picture"';
|
581 |
-
$obj_name = ' name="'.$input_name.'"';
|
582 |
-
$obj_type = ' type="file"';
|
583 |
-
$obj_value = ' value="'.$value.'"';
|
584 |
-
$obj_value2 = "";
|
585 |
-
$obj_checked = ' onchange="uploadPic(\'registerform\', \''.$unique_id.'\', \''.__("Please upload an image with one of the following extensions", $cimy_uef_domain).'\');"';
|
586 |
-
$obj_tag = "input";
|
587 |
-
$obj_closing_tag = false;
|
588 |
-
break;
|
589 |
-
|
590 |
-
case "registration-date":
|
591 |
-
$obj_label = '';
|
592 |
-
$obj_class = '';
|
593 |
-
$obj_name = ' name="'.$input_name.'"';
|
594 |
-
$obj_type = ' type="hidden"';
|
595 |
-
$obj_value = ' value="'.$value.'"';
|
596 |
-
$obj_value2 = "";
|
597 |
-
$obj_checked = "";
|
598 |
-
$obj_tag = "input";
|
599 |
-
$obj_closing_tag = false;
|
600 |
-
break;
|
601 |
-
}
|
602 |
-
|
603 |
-
$obj_id = ' id="'.$unique_id.'"';
|
604 |
-
|
605 |
-
// tabindex not used in MU, dropping...
|
606 |
-
if ($is_mu)
|
607 |
-
$obj_tabindex = "";
|
608 |
-
else {
|
609 |
-
$obj_tabindex = ' tabindex="'.strval($tabindex).'"';
|
610 |
-
$tabindex++;
|
611 |
-
}
|
612 |
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
620 |
}
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
$obj_rowscols = ' rows="3" cols="25"';
|
625 |
-
else
|
626 |
-
$obj_rowscols = '';
|
627 |
-
|
628 |
-
echo "\t";
|
629 |
-
$form_object = '<'.$obj_tag.$obj_type.$obj_name.$obj_id.$obj_class.$obj_value.$obj_checked.$obj_maxlen.$obj_rowscols.$obj_tabindex;
|
630 |
-
|
631 |
-
if ($obj_closing_tag)
|
632 |
-
$form_object.= ">".$obj_value2."</".$obj_tag.">";
|
633 |
-
else
|
634 |
-
$form_object.= " />";
|
635 |
-
|
636 |
-
if (($type != "radio") && ($type != "checkbox"))
|
637 |
-
echo $obj_label;
|
638 |
|
639 |
-
|
640 |
-
if ( $errmsg = $errors->get_error_message($unique_id) ) {
|
641 |
-
echo '<p class="error">'.$errmsg.'</p>';
|
642 |
}
|
643 |
-
}
|
644 |
|
645 |
-
|
646 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
647 |
|
648 |
-
|
649 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
650 |
|
651 |
-
|
|
|
652 |
|
653 |
-
|
654 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
656 |
}
|
|
|
|
|
657 |
}
|
658 |
|
659 |
if ($tiny_mce_objects != "") {
|
@@ -662,8 +834,10 @@ function cimy_registration_form($errors=null) {
|
|
662 |
require_once($cuef_plugin_dir.'/cimy_uef_init_mce.php');
|
663 |
}
|
664 |
|
665 |
-
if ($
|
666 |
-
wp_print_scripts("
|
|
|
|
|
667 |
|
668 |
echo $end_cimy_uef_comment;
|
669 |
}
|
8 |
foreach ($_POST as $name=>$value) {
|
9 |
if (!(stristr($name, "cimy_uef_")) === FALSE) {
|
10 |
echo "\t\t<input type=\"hidden\" name=\"".$name."\" value=\"".attribute_escape($value)."\" />\n";
|
11 |
+
} else if ($name == "blog_id") {
|
12 |
+
echo "\t\t<input type=\"hidden\" name=\"".$name."\" value=\"".attribute_escape($value)."\" />\n";
|
13 |
}
|
14 |
}
|
15 |
|
17 |
}
|
18 |
|
19 |
function cimy_register_user_extra_fields_signup_meta($meta) {
|
20 |
+
|
21 |
foreach ($_POST as $name=>$value) {
|
22 |
if (!(stristr($name, "cimy_uef_")) === FALSE) {
|
23 |
$meta[$name] = $value;
|
24 |
+
} else if ($name == "blog_id") {
|
25 |
+
$meta[$name] = $value;
|
26 |
}
|
27 |
}
|
28 |
|
64 |
return $password;
|
65 |
}
|
66 |
|
67 |
+
function cimy_switch_to_blog($meta=array()) {
|
68 |
+
global $is_mu, $cimy_uef_plugins_dir;
|
69 |
+
|
70 |
+
if (($is_mu) && ($cimy_uef_plugins_dir == "plugins")) {
|
71 |
+
if (isset($meta["blog_id"]))
|
72 |
+
$mu_blog_id = intval($meta["blog_id"]);
|
73 |
+
else if (isset($_GET["blog_id"]))
|
74 |
+
$mu_blog_id = intval($_GET["blog_id"]);
|
75 |
+
else if (isset($_POST["blog_id"]))
|
76 |
+
$mu_blog_id = intval($_POST["blog_id"]);
|
77 |
+
else
|
78 |
+
$mu_blog_id = 1;
|
79 |
+
|
80 |
+
if (cimy_uef_mu_blog_exists($mu_blog_id)) {
|
81 |
+
if (switch_to_blog($mu_blog_id))
|
82 |
+
cimy_uef_set_tables();
|
83 |
+
else
|
84 |
+
$mu_blog_id = 1;
|
85 |
+
}
|
86 |
+
else
|
87 |
+
$mu_blog_id = 1;
|
88 |
+
}
|
89 |
+
}
|
90 |
+
|
91 |
+
function cimy_switch_current_blog($hidden_field=false) {
|
92 |
+
global $switched, $blog_id;
|
93 |
+
|
94 |
+
if (isset($switched)) {
|
95 |
+
if ($hidden_field)
|
96 |
+
echo "\t<input type=\"hidden\" name=\"blog_id\" value=\"".$blog_id."\" />\n";
|
97 |
+
|
98 |
+
//restore_current_blog();
|
99 |
+
}
|
100 |
+
}
|
101 |
+
|
102 |
function cimy_register_user_extra_fields($user_id, $password="", $meta=array()) {
|
103 |
+
global $wpdb_data_table, $wpdb, $max_length_value, $fields_name_prefix, $wp_fields_name_prefix, $wp_hidden_fields, $cimy_uef_file_types, $user_level;
|
104 |
+
|
105 |
+
if (isset($meta["blog_id"]))
|
106 |
+
cimy_switch_to_blog($meta);
|
107 |
+
|
108 |
+
// avoid to save stuff if user is being added from: /wp-admin/user-new.php
|
109 |
+
if ($_POST["action"] == "adduser")
|
110 |
+
return;
|
111 |
+
|
112 |
+
// if not set, set to -1 == anonymous
|
113 |
+
if (!isset($user_level))
|
114 |
+
$user_level = -1;
|
115 |
+
|
116 |
$extra_fields = get_cimyFields(false, true);
|
117 |
$wp_fields = get_cimyFields(true);
|
118 |
+
|
119 |
$i = 1;
|
120 |
+
|
121 |
// do first for the WP fields then for EXTRA fields
|
122 |
while ($i <= 2) {
|
123 |
if ($i == 1) {
|
141 |
$label = $thisField["LABEL"];
|
142 |
$rules = $thisField["RULES"];
|
143 |
$input_name = $prefix.$wpdb->escape($name);
|
144 |
+
|
145 |
+
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
146 |
+
// apply only for EXTRA FIELDS
|
147 |
+
if ($user_level < $rules['show_level'])
|
148 |
+
continue;
|
149 |
+
|
150 |
+
// if show_level == anonymous then do NOT ovverride other show_xyz rules
|
151 |
+
if ($rules['show_level'] == -1) {
|
152 |
+
// if flag to show the field in the registration is NOT activated, skip it
|
153 |
+
if (!$rules['show_in_reg'])
|
154 |
+
continue;
|
155 |
+
}
|
156 |
+
|
157 |
+
if (isset($meta[$input_name]))
|
158 |
+
$data = stripslashes($meta[$input_name]);
|
159 |
+
else if (isset($_POST[$input_name])) {
|
160 |
+
if ($type == "dropdown-multi")
|
161 |
+
$data = stripslashes(implode(",", $_POST[$input_name]));
|
162 |
+
else
|
163 |
$data = stripslashes($_POST[$input_name]);
|
164 |
+
}
|
165 |
+
else
|
166 |
+
$data = "";
|
167 |
+
|
168 |
+
if ($type == "avatar") {
|
169 |
+
// since avatars are drawn max to 512px then we can save bandwith resizing, do it!
|
170 |
+
$rules['equal_to'] = 512;
|
171 |
+
}
|
172 |
+
|
173 |
+
if (in_array($type, $cimy_uef_file_types)) {
|
174 |
+
$data = cimy_manage_upload($input_name, sanitize_user($_POST['user_login']), $rules, false, false, $type);
|
175 |
+
}
|
176 |
+
else {
|
177 |
+
if ($type == "picture-url")
|
178 |
+
$data = str_replace('../', '', $data);
|
179 |
+
|
180 |
+
if (isset($rules['max_length']))
|
181 |
+
$data = substr($data, 0, $rules['max_length']);
|
182 |
else
|
183 |
+
$data = substr($data, 0, $max_length_value);
|
184 |
+
}
|
185 |
|
186 |
+
$data = $wpdb->escape($data);
|
|
|
|
|
|
|
|
|
|
|
187 |
|
188 |
+
if (!$are_wp_fields) {
|
189 |
+
$sql = "INSERT INTO ".$wpdb_data_table." SET USER_ID = ".$user_id.", FIELD_ID=".$field_id.", ";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
|
191 |
+
switch ($type) {
|
192 |
+
case 'avatar':
|
193 |
+
case 'picture-url':
|
194 |
+
case 'picture':
|
195 |
+
case 'textarea':
|
196 |
+
case 'textarea-rich':
|
197 |
+
case 'dropdown':
|
198 |
+
case 'dropdown-multi':
|
199 |
+
case 'password':
|
200 |
+
case 'text':
|
201 |
+
case 'file':
|
202 |
+
$field_value = $data;
|
203 |
+
break;
|
204 |
|
205 |
+
case 'checkbox':
|
206 |
+
$field_value = $data == '1' ? "YES" : "NO";
|
207 |
+
break;
|
208 |
+
|
209 |
+
case 'radio':
|
210 |
+
$field_value = $data == $field_id ? "selected" : "";
|
211 |
+
break;
|
212 |
+
|
213 |
+
case 'registration-date':
|
214 |
+
$field_value = mktime();
|
215 |
+
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
}
|
217 |
+
|
218 |
+
$sql.= "VALUE='".$field_value."'";
|
219 |
+
$wpdb->query($sql);
|
220 |
+
}
|
221 |
+
else {
|
222 |
+
$f_name = strtolower($thisField['NAME']);
|
223 |
+
|
224 |
+
$userdata = array();
|
225 |
+
$userdata['ID'] = $user_id;
|
226 |
+
$userdata[$wp_hidden_fields[$f_name]['post_name']] = $data;
|
227 |
+
|
228 |
+
wp_update_user($userdata);
|
229 |
}
|
230 |
}
|
231 |
}
|
232 |
+
|
233 |
+
cimy_switch_current_blog(true);
|
234 |
}
|
235 |
|
236 |
function cimy_registration_check_mu_wrapper($data) {
|
243 |
return $data;
|
244 |
}
|
245 |
|
246 |
+
// added for profile rules check
|
247 |
+
function cimy_profile_check_wrapper($errors, $update, $user) {
|
248 |
+
$errors = cimy_registration_check($user->user_login, $user->user_email, $errors);
|
249 |
+
|
250 |
+
if (!empty($errors))
|
251 |
+
$update = false;
|
252 |
+
}
|
253 |
+
|
254 |
function cimy_registration_check($user_login, $user_email, $errors) {
|
255 |
+
global $wpdb, $rule_canbeempty, $rule_email, $rule_maxlen, $fields_name_prefix, $wp_fields_name_prefix, $rule_equalto_case_sensitive, $apply_equalto_rule, $cimy_uef_domain, $cimy_uef_file_types, $rule_equalto_regex, $user_level;
|
256 |
+
|
257 |
+
// cimy_switch_to_blog();
|
258 |
+
|
259 |
+
// avoid to save stuff if user is being added from: /wp-admin/user-new.php
|
260 |
+
if ($_POST["action"] == "adduser")
|
261 |
+
return $errors;
|
262 |
+
|
263 |
+
// if not set, set to -1 == anonymous
|
264 |
+
if (!isset($user_level))
|
265 |
+
$user_level = -1;
|
266 |
|
267 |
$extra_fields = get_cimyFields(false, true);
|
268 |
$wp_fields = get_cimyFields(true);
|
269 |
+
|
270 |
+
// if we are updating profile don't bother with WordPress fields' rules
|
271 |
+
if ($_POST["from"] == "profile")
|
272 |
+
$i = 2;
|
273 |
+
else
|
274 |
+
$i = 1;
|
275 |
|
276 |
// do first for the WP fields then for EXTRA fields
|
277 |
while ($i <= 2) {
|
296 |
$description = $thisField['DESCRIPTION'];
|
297 |
$input_name = $prefix.$wpdb->escape($name);
|
298 |
$unique_id = $prefix.$field_id;
|
299 |
+
|
300 |
+
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
301 |
+
// apply only for EXTRA FIELDS
|
302 |
+
if ($user_level < $rules['show_level'])
|
303 |
+
continue;
|
304 |
+
|
305 |
+
// if show_level == anonymous then do NOT ovverride other show_xyz rules
|
306 |
+
if ($rules['show_level'] == -1) {
|
307 |
+
// if we are updating the profile check correct rule
|
308 |
+
if ($_POST["from"] == "profile") {
|
309 |
+
// if flag to show the field in the profile is NOT activated, skip it
|
310 |
+
if (!$rules['show_in_profile'])
|
311 |
+
continue;
|
312 |
+
} else { // we are registering new user
|
313 |
+
// if flag to show the field in the registration is NOT activated, skip it
|
314 |
+
if (!$rules['show_in_reg'])
|
315 |
+
continue;
|
316 |
+
}
|
317 |
+
}
|
318 |
|
319 |
+
if (isset($_POST[$input_name])) {
|
320 |
+
if ($type == "dropdown-multi")
|
321 |
+
$value = stripslashes(implode(",", $_POST[$input_name]));
|
322 |
+
else
|
323 |
+
$value = stripslashes($_POST[$input_name]);
|
324 |
+
}
|
325 |
else
|
326 |
$value = "";
|
327 |
|
337 |
$file_type = $_FILES[$input_name]['type'];
|
338 |
$value = $_FILES[$input_name]['name'];
|
339 |
}
|
340 |
+
|
341 |
+
switch ($type) {
|
342 |
+
case 'checkbox':
|
343 |
+
$value == 1 ? $value = "YES" : $value = "NO";
|
344 |
+
break;
|
345 |
+
case 'radio':
|
346 |
+
intval($value) == intval($field_id) ? $value = "YES" : $value = "NO";
|
347 |
+
break;
|
348 |
+
}
|
349 |
+
|
350 |
+
// if the flag can be empty is NOT set OR the field is not empty then other check can be useful, otherwise skip all
|
351 |
+
if ((!$rules['can_be_empty']) || ($value != "")) {
|
352 |
+
if (($rules['email']) && (in_array($type, $rule_email))) {
|
353 |
+
if (!is_email($value))
|
354 |
+
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('hasn’t a correct email syntax.', $cimy_uef_domain));
|
355 |
}
|
356 |
+
|
357 |
+
if ((!$rules['can_be_empty']) && (in_array($type, $rule_canbeempty))) {
|
358 |
+
if ($value == '')
|
359 |
+
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn’t be empty.', $cimy_uef_domain));
|
360 |
+
}
|
361 |
+
|
362 |
+
if ((isset($rules['equal_to'])) && (in_array($type, $apply_equalto_rule))) {
|
363 |
+
|
364 |
+
$equalTo = $rules['equal_to'];
|
365 |
+
// if the type is not allowed to be case sensitive
|
366 |
+
// OR if case sensitive is not checked
|
367 |
+
// AND
|
368 |
+
// if the type is not allowed to be a regex
|
369 |
+
// OR if regex rule is not set
|
370 |
+
// THEN switch to uppercase
|
371 |
+
if (((!in_array($type, $rule_equalto_case_sensitive)) || (!$rules['equal_to_case_sensitive'])) && ((!in_array($type, $rule_equalto_regex)) || (!$rules['equal_to_regex']))) {
|
372 |
+
|
373 |
+
$value = strtoupper($value);
|
374 |
+
$equalTo = strtoupper($equalTo);
|
375 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
|
377 |
+
if ($rules['equal_to_regex']) {
|
378 |
+
if (!preg_match($equalTo, $value)) {
|
379 |
+
$equalmsg = " ".__("isn’t correct", $cimy_uef_domain);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
380 |
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.$equalmsg.'.');
|
381 |
}
|
382 |
}
|
383 |
+
else if ($value != $equalTo) {
|
384 |
+
if (($type == "radio") || ($type == "checkbox"))
|
385 |
+
$equalTo == "YES" ? $equalTo = __("YES", $cimy_uef_domain) : __("NO", $cimy_uef_domain);
|
386 |
+
|
387 |
+
if ($type == "password")
|
388 |
+
$equalmsg = " ".__("isn’t correct", $cimy_uef_domain);
|
389 |
+
else
|
390 |
+
$equalmsg = ' '.__("should be", $cimy_uef_domain).' '.$equalTo;
|
391 |
+
|
392 |
+
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.$equalmsg.'.');
|
393 |
}
|
394 |
+
}
|
395 |
+
|
396 |
+
// CHECK IF IT IS A REAL PICTURE
|
397 |
+
if (($type == "picture") || ($type == "avatar")) {
|
398 |
+
if (stristr($file_type, "image/") === false) {
|
399 |
+
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('should be an image.', $cimy_uef_domain));
|
400 |
+
}
|
401 |
+
}
|
402 |
+
|
403 |
+
// MIN LEN
|
404 |
+
if (isset($rules['min_length'])) {
|
405 |
+
$minlen = intval($rules['min_length']);
|
406 |
+
|
407 |
+
if (in_array($type, $cimy_uef_file_types)) {
|
408 |
+
if ($file_size < $minlen) {
|
409 |
+
|
410 |
+
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn’t have size less than', $cimy_uef_domain).' '.$minlen.' KB.');
|
411 |
}
|
412 |
+
}
|
413 |
+
else {
|
414 |
+
if (strlen($value) < $minlen) {
|
415 |
+
|
416 |
+
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn’t have length less than', $cimy_uef_domain).' '.$minlen.'.');
|
417 |
}
|
418 |
}
|
419 |
+
}
|
420 |
+
|
421 |
+
// EXACT LEN
|
422 |
+
if (isset($rules['exact_length'])) {
|
423 |
+
$exactlen = intval($rules['exact_length']);
|
424 |
+
|
425 |
+
if (in_array($type, $cimy_uef_file_types)) {
|
426 |
+
if ($file_size != $exactlen) {
|
427 |
+
|
428 |
+
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn’t have size different than', $cimy_uef_domain).' '.$exactlen.' KB.');
|
429 |
}
|
430 |
+
}
|
431 |
+
else {
|
432 |
+
if (strlen($value) != $exactlen) {
|
433 |
+
|
434 |
+
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn’t have length different than', $cimy_uef_domain).' '.$exactlen.'.');
|
435 |
}
|
436 |
}
|
437 |
+
}
|
438 |
+
|
439 |
+
// MAX LEN
|
440 |
+
if (isset($rules['max_length'])) {
|
441 |
+
$maxlen = intval($rules['max_length']);
|
442 |
+
|
443 |
+
if (in_array($type, $cimy_uef_file_types)) {
|
444 |
+
if ($file_size > $maxlen) {
|
445 |
+
|
446 |
+
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn’t have size more than', $cimy_uef_domain).' '.$maxlen.' KB.');
|
447 |
}
|
448 |
+
}
|
449 |
+
else {
|
450 |
+
if (strlen($value) > $maxlen) {
|
451 |
+
|
452 |
+
$errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn’t have length more than', $cimy_uef_domain).' '.$maxlen.'.');
|
453 |
}
|
454 |
}
|
455 |
}
|
456 |
}
|
457 |
}
|
458 |
}
|
459 |
+
|
460 |
+
cimy_switch_current_blog();
|
461 |
+
|
462 |
return $errors;
|
463 |
}
|
464 |
|
465 |
+
function cimy_registration_form($errors=null, $show_type=0) {
|
466 |
+
global $wpdb, $start_cimy_uef_comment, $end_cimy_uef_comment, $rule_maxlen_needed, $fields_name_prefix, $wp_fields_name_prefix, $is_mu, $cuef_plugin_dir, $cimy_uef_file_types, $cimy_uef_textarea_types, $wp_27, $user_level;
|
467 |
+
|
468 |
+
// cimy_switch_to_blog();
|
469 |
+
|
470 |
+
// if not set, set to -1 == anonymous
|
471 |
+
if (!isset($user_level))
|
472 |
+
$user_level = -1;
|
473 |
|
474 |
// needed by cimy_uef_init_mce.php
|
475 |
$cimy_uef_register_page = true;
|
503 |
$i = 1;
|
504 |
$upload_image_function = false;
|
505 |
|
506 |
+
// do first the WP fields then the EXTRA fields
|
507 |
while ($i <= 2) {
|
508 |
if ($i == 1) {
|
509 |
$fields = $wp_fields;
|
512 |
else {
|
513 |
$fields = $extra_fields;
|
514 |
$prefix = $fields_name_prefix;
|
515 |
+
$current_fieldset = -1;
|
516 |
|
517 |
if ($options['fieldset_title'] != "")
|
518 |
$fieldset_titles = explode(',', $options['fieldset_title']);
|
519 |
else
|
520 |
$fieldset_titles = array();
|
|
|
|
|
|
|
521 |
}
|
522 |
+
|
|
|
|
|
523 |
$tiny_mce_objects = "";
|
524 |
|
525 |
foreach ($fields as $thisField) {
|
536 |
$maxlen = 0;
|
537 |
$unique_id = $prefix.$field_id;
|
538 |
|
539 |
+
// showing the search then there is no need to upload buttons
|
540 |
+
if ($show_type == 1) {
|
541 |
+
if ($type == "password")
|
542 |
+
continue;
|
543 |
+
|
544 |
+
if (($type == "avatar") || ($type == "picture") || ($type == "file"))
|
545 |
+
$type = "text";
|
546 |
+
}
|
547 |
+
|
548 |
+
// if the current user LOGGED IN has not enough permissions to see the field, skip it
|
549 |
+
// apply only for EXTRA FIELDS
|
550 |
+
if (($user_level < $rules['show_level']) && ($i == 2))
|
551 |
+
continue;
|
552 |
+
|
553 |
+
// if show_level == anonymous then do NOT ovverride other show_xyz rules
|
554 |
+
if ($rules['show_level'] == -1) {
|
555 |
+
if ($show_type == 0) {
|
556 |
+
// if flag to show the field in the registration is NOT activated, skip it
|
557 |
+
if (!$rules['show_in_reg'])
|
558 |
+
continue;
|
559 |
+
} else if ($show_type == 1) {
|
560 |
+
// if flag to show the field in the blog is NOT activated, skip it
|
561 |
+
if (!$rules['show_in_search'])
|
562 |
+
continue;
|
563 |
+
}
|
564 |
+
}
|
565 |
+
|
566 |
+
if (isset($_POST[$post_input_name])) {
|
567 |
+
if ($type == "dropdown-multi")
|
568 |
+
$value = stripslashes(implode(",", $_POST[$post_input_name]));
|
569 |
+
else
|
570 |
+
$value = stripslashes($_POST[$post_input_name]);
|
571 |
+
}
|
572 |
+
else if (isset($_GET[$name])) {
|
573 |
+
if ($type == "dropdown-multi")
|
574 |
+
$value = stripslashes(implode(",", $_GET[$name]));
|
575 |
+
else
|
576 |
+
$value = stripslashes($_GET[$name]);
|
577 |
+
}
|
578 |
// if there is no value and not $_POST means is first visiting then put all default values
|
579 |
else if (!isset($_POST["cimy_post"])) {
|
580 |
$value = $thisField['VALUE'];
|
602 |
$value = "";
|
603 |
|
604 |
$value = attribute_escape($value);
|
|
|
|
|
|
|
|
|
|
|
605 |
|
606 |
+
if (($fieldset > $current_fieldset) && (isset($fieldset_titles[$fieldset])) && ($i != 1)) {
|
607 |
+
$current_fieldset = $fieldset;
|
|
|
608 |
|
609 |
+
if (isset($fieldset_titles[$current_fieldset]))
|
610 |
+
echo "\n\t<h2>".$fieldset_titles[$current_fieldset]."</h2>\n";
|
611 |
+
}
|
|
|
|
|
612 |
|
613 |
+
if (($description != "") && ($type != "registration-date")) {
|
614 |
echo "\t";
|
615 |
+
echo '<p id="'.$prefix.'p_desc_'.$field_id.'" class="desc"><br />'.$description.'</p>';
|
616 |
+
echo "\n";
|
617 |
+
}
|
618 |
+
|
619 |
+
echo "\t";
|
620 |
+
echo '<p id="'.$prefix.'p_field_'.$field_id.'">';
|
621 |
+
echo "\n\t";
|
622 |
|
623 |
+
switch($type) {
|
624 |
+
case "picture-url":
|
625 |
+
case "password":
|
626 |
+
case "text":
|
627 |
+
$obj_label = '<label for="'.$unique_id.'">'.$label.'</label>';
|
628 |
+
$obj_class = ' class="'.$input_class.'"';
|
629 |
+
$obj_name = ' name="'.$input_name.'"';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
|
631 |
+
if ($type == "picture-url")
|
632 |
+
$obj_type = ' type="text"';
|
633 |
+
else
|
634 |
+
$obj_type = ' type="'.$type.'"';
|
|
|
|
|
|
|
|
|
|
|
|
|
635 |
|
636 |
+
$obj_value = ' value="'.$value.'"';
|
637 |
+
$obj_value2 = "";
|
638 |
+
$obj_checked = "";
|
639 |
+
$obj_tag = "input";
|
640 |
+
$obj_closing_tag = false;
|
641 |
+
break;
|
642 |
+
|
643 |
+
case "dropdown":
|
644 |
+
case "dropdown-multi":
|
645 |
+
$ret = cimy_dropDownOptions($label, $value);
|
646 |
+
$label = $ret['label'];
|
647 |
+
$html = $ret['html'];
|
648 |
+
|
649 |
+
if ($type == "dropdown-multi") {
|
650 |
+
$obj_name = ' name="'.$input_name.'[]" multiple="multiple" size="6"';
|
651 |
+
}
|
652 |
+
else {
|
653 |
$obj_name = ' name="'.$input_name.'"';
|
654 |
+
}
|
655 |
+
|
656 |
+
$obj_label = '<label for="'.$unique_id.'">'.$label.'</label>';
|
657 |
+
$obj_class = ' class="'.$input_class.'"';
|
658 |
+
$obj_type = '';
|
659 |
+
$obj_value = '';
|
660 |
+
$obj_value2 = $html;
|
661 |
+
$obj_checked = "";
|
662 |
+
$obj_tag = "select";
|
663 |
+
$obj_closing_tag = true;
|
664 |
+
break;
|
665 |
+
|
666 |
+
case "textarea":
|
667 |
+
$obj_label = '<label for="'.$unique_id.'">'.$label.'</label>';
|
668 |
+
$obj_class = ' class="'.$input_class.'"';
|
669 |
+
$obj_name = ' name="'.$input_name.'"';
|
670 |
+
$obj_type = "";
|
671 |
+
$obj_value = "";
|
672 |
+
$obj_value2 = $value;
|
673 |
+
$obj_checked = "";
|
674 |
+
$obj_tag = "textarea";
|
675 |
+
$obj_closing_tag = true;
|
676 |
+
break;
|
677 |
+
|
678 |
+
case "textarea-rich":
|
679 |
+
if ($tiny_mce_objects == "")
|
680 |
+
$tiny_mce_objects = $fields_name_prefix.$field_id;
|
681 |
+
else
|
682 |
+
$tiny_mce_objects .= ",".$fields_name_prefix.$field_id;
|
683 |
+
|
684 |
+
$obj_label = '<label for="'.$unique_id.'">'.$label.'</label>';
|
685 |
+
$obj_class = ' class="'.$input_class.'"';
|
686 |
+
$obj_name = ' name="'.$input_name.'"';
|
687 |
+
$obj_type = "";
|
688 |
+
$obj_value = "";
|
689 |
+
$obj_value2 = $value;
|
690 |
+
$obj_checked = "";
|
691 |
+
$obj_tag = "textarea";
|
692 |
+
$obj_closing_tag = true;
|
693 |
+
break;
|
694 |
+
|
695 |
+
case "checkbox":
|
696 |
+
$obj_label = '<label class="cimy_uef_label_checkbox" for="'.$unique_id.'"> '.$label.'</label><br />';
|
697 |
+
$obj_class = ' class="cimy_uef_checkbox"';
|
698 |
+
$obj_name = ' name="'.$input_name.'"';
|
699 |
+
$obj_type = ' type="'.$type.'"';
|
700 |
+
$obj_value = ' value="1"';
|
701 |
+
$obj_value2 = "";
|
702 |
+
$value == "1" ? $obj_checked = ' checked="checked"' : $obj_checked = '';
|
703 |
+
$obj_tag = "input";
|
704 |
+
$obj_closing_tag = false;
|
705 |
+
break;
|
706 |
|
707 |
+
case "radio":
|
708 |
+
$obj_label = '<label class="cimy_uef_label_radio" for="'.$unique_id.'"> '.$label.'</label>';
|
709 |
+
$obj_class = ' class="cimy_uef_radio"';
|
710 |
+
$obj_name = ' name="'.$input_name.'"';
|
711 |
+
$obj_type = ' type="'.$type.'"';
|
712 |
+
$obj_value = ' value="'.$field_id.'"';
|
713 |
+
$obj_value2 = "";
|
714 |
+
$obj_tag = "input";
|
715 |
+
$obj_closing_tag = false;
|
716 |
|
717 |
+
// do not check if another check was done
|
718 |
+
if ((intval($value) == intval($field_id)) && (!in_array($name, $radio_checked))) {
|
719 |
+
$obj_checked = ' checked="checked"';
|
720 |
+
$radio_checked += array($name => true);
|
721 |
+
}
|
722 |
+
else {
|
723 |
+
$obj_checked = '';
|
724 |
+
}
|
|
|
|
|
725 |
|
726 |
+
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
727 |
|
728 |
+
case "avatar":
|
729 |
+
case "picture":
|
730 |
+
case "file":
|
731 |
+
$allowed_exts = '';
|
732 |
+
if (isset($rules['equal_to']))
|
733 |
+
if ($rules['equal_to'] != "")
|
734 |
+
$allowed_exts = "'".implode("', '", explode(",", $rules['equal_to']))."'";
|
735 |
+
|
736 |
+
if ($type == "file") {
|
737 |
+
// if we do not escape then some translations can break
|
738 |
+
$warning_msg = $wpdb->escape(__("Please upload a file with one of the following extensions", $cimy_uef_domain));
|
739 |
+
|
740 |
+
$obj_checked = ' onchange="uploadFile(\'registerform\', \''.$unique_id.'\', \''.$warning_msg.'\', Array('.$allowed_exts.'));"';
|
741 |
}
|
742 |
+
else {
|
743 |
+
// if we do not escape then some translations can break
|
744 |
+
$warning_msg = $wpdb->escape(__("Please upload an image with one of the following extensions", $cimy_uef_domain));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
745 |
|
746 |
+
$obj_checked = ' onchange="uploadFile(\'registerform\', \''.$unique_id.'\', \''.$warning_msg.'\', Array(\'gif\', \'png\', \'jpg\', \'jpeg\', \'tiff\'));"';
|
|
|
|
|
747 |
}
|
|
|
748 |
|
749 |
+
// javascript will be added later
|
750 |
+
$upload_file_function = true;
|
751 |
+
$obj_label = '<label for="'.$unique_id.'">'.$label.' </label>';
|
752 |
+
$obj_class = ' class="cimy_uef_picture"';
|
753 |
+
$obj_name = ' name="'.$input_name.'"';
|
754 |
+
$obj_type = ' type="file"';
|
755 |
+
$obj_value = ' value="'.$value.'"';
|
756 |
+
$obj_value2 = "";
|
757 |
+
$obj_tag = "input";
|
758 |
+
$obj_closing_tag = false;
|
759 |
+
break;
|
760 |
+
|
761 |
+
case "registration-date":
|
762 |
+
$obj_label = '';
|
763 |
+
$obj_class = '';
|
764 |
+
$obj_name = ' name="'.$input_name.'"';
|
765 |
+
$obj_type = ' type="hidden"';
|
766 |
+
$obj_value = ' value="'.$value.'"';
|
767 |
+
$obj_value2 = "";
|
768 |
+
$obj_checked = "";
|
769 |
+
$obj_tag = "input";
|
770 |
+
$obj_closing_tag = false;
|
771 |
+
break;
|
772 |
+
}
|
773 |
+
|
774 |
+
$obj_id = ' id="'.$unique_id.'"';
|
775 |
+
|
776 |
+
// tabindex not used in MU, dropping...
|
777 |
+
if ($is_mu)
|
778 |
+
$obj_tabindex = "";
|
779 |
+
else {
|
780 |
+
$obj_tabindex = ' tabindex="'.strval($tabindex).'"';
|
781 |
+
$tabindex++;
|
782 |
+
}
|
783 |
+
|
784 |
+
$obj_maxlen = "";
|
785 |
|
786 |
+
if ((in_array($type, $rule_maxlen_needed)) && (!in_array($type, $cimy_uef_file_types))) {
|
787 |
+
if (isset($rules['max_length'])) {
|
788 |
+
$obj_maxlen = ' maxlength="'.$rules['max_length'].'"';
|
789 |
+
} else if (isset($rules['exact_length'])) {
|
790 |
+
$obj_maxlen = ' maxlength="'.$rules['exact_length'].'"';
|
791 |
+
}
|
792 |
+
}
|
793 |
+
|
794 |
+
if (in_array($type, $cimy_uef_textarea_types))
|
795 |
+
$obj_rowscols = ' rows="3" cols="25"';
|
796 |
+
else
|
797 |
+
$obj_rowscols = '';
|
798 |
|
799 |
+
echo "\t";
|
800 |
+
$form_object = '<'.$obj_tag.$obj_type.$obj_name.$obj_id.$obj_class.$obj_value.$obj_checked.$obj_maxlen.$obj_rowscols.$obj_tabindex;
|
801 |
|
802 |
+
if ($obj_closing_tag)
|
803 |
+
$form_object.= ">".$obj_value2."</".$obj_tag.">";
|
804 |
+
else
|
805 |
+
$form_object.= " />";
|
806 |
+
|
807 |
+
if (($type != "radio") && ($type != "checkbox"))
|
808 |
+
echo $obj_label;
|
809 |
+
|
810 |
+
if ($is_mu) {
|
811 |
+
if ( $errmsg = $errors->get_error_message($unique_id) ) {
|
812 |
+
echo '<p class="error">'.$errmsg.'</p>';
|
813 |
+
}
|
814 |
}
|
815 |
+
|
816 |
+
// write to the html the form object built
|
817 |
+
echo $form_object;
|
818 |
+
|
819 |
+
if (!(($type != "radio") && ($type != "checkbox")))
|
820 |
+
echo $obj_label;
|
821 |
+
|
822 |
+
echo "\n\t</p>\n";
|
823 |
+
|
824 |
+
if ((($type == "textarea-rich") || (in_array($type, $cimy_uef_file_types))) && ($wp_27))
|
825 |
+
echo "\t<br />\n";
|
826 |
}
|
827 |
+
|
828 |
+
$i++;
|
829 |
}
|
830 |
|
831 |
if ($tiny_mce_objects != "") {
|
834 |
require_once($cuef_plugin_dir.'/cimy_uef_init_mce.php');
|
835 |
}
|
836 |
|
837 |
+
if ($upload_file_function)
|
838 |
+
wp_print_scripts("cimy_uef_upload_file");
|
839 |
+
|
840 |
+
cimy_switch_current_blog(true);
|
841 |
|
842 |
echo $end_cimy_uef_comment;
|
843 |
}
|
cimy_user_extra_fields.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Cimy User Extra Fields
|
4 |
Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Plugin Description: Add some useful fields to registration and user's info
|
6 |
-
Version: 1.
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
*/
|
@@ -11,7 +11,7 @@ Author URI: mailto:cimmino.marco@gmail.com
|
|
11 |
/*
|
12 |
|
13 |
Cimy User Extra Fields - Allows adding mySQL Data fields to store/add more user info
|
14 |
-
Copyright (c) 2006-
|
15 |
|
16 |
Code for drop-down support is in part from Raymond Elferink raymond@raycom.com
|
17 |
Code for regular expression under equalTo rule is in part from Shane Hartman shane@shanehartman.com
|
@@ -36,29 +36,46 @@ The full copy of the GNU General Public License is available here: http://www.gn
|
|
36 |
*/
|
37 |
|
38 |
// added for WordPress >=2.5 compatibility
|
39 |
-
global $wpdb, $old_wpdb_data_table, $wpdb_data_table, $old_wpdb_fields_table, $wpdb_fields_table, $wpdb_wp_fields_table, $cimy_uef_options, $cimy_uef_version, $is_mu, $cuef_upload_path, $cimy_uef_domain, $wp_27;
|
40 |
|
41 |
-
|
42 |
-
$is_mu
|
43 |
|
44 |
-
$
|
45 |
-
|
46 |
-
|
47 |
-
$wpdb_data_table = $wpmuBaseTablePrefix."cimy_uef_data";
|
48 |
-
$wpdb_fields_table = $wpmuBaseTablePrefix."cimy_uef_fields";
|
49 |
-
$wpdb_wp_fields_table = $wpmuBaseTablePrefix."cimy_uef_wp_fields";
|
50 |
-
}
|
51 |
-
else {
|
52 |
-
$is_mu = false;
|
53 |
|
54 |
-
|
55 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
|
57 |
-
|
58 |
-
|
59 |
-
|
|
|
|
|
|
|
|
|
60 |
}
|
61 |
|
|
|
|
|
62 |
if (version_compare($wp_version, "2.6.9999", ">") === true) {
|
63 |
$wp_27 = true;
|
64 |
}
|
@@ -74,19 +91,19 @@ $cimy_uef_options_descr = "Cimy User Extra Fields options are stored here and mo
|
|
74 |
RULES (stored into an associative array and serialized):
|
75 |
|
76 |
- 'min_length': [int] => specify min length
|
77 |
-
[only for text, textarea, textarea-rich, password, picture, picture-url, avatar]
|
78 |
|
79 |
- 'exact_length': [int] => specify exact length
|
80 |
-
[only for text, textarea, textarea-rich, password, picture, picture-url, avatar]
|
81 |
|
82 |
- 'max_length': [int] => specify max length
|
83 |
-
[only for text, textarea, textarea-rich, password, picture, picture-url, avatar]
|
84 |
|
85 |
- 'email': [true | false] => check or not for email syntax
|
86 |
[only for text, textarea, textarea-rich, password]
|
87 |
|
88 |
- 'can_be_empty': [true | false] => field can or cannot be empty
|
89 |
-
[only for text, textarea, textarea-rich, password, picture, picture-url, dropdown, avatar]
|
90 |
|
91 |
- 'edit':
|
92 |
'ok_edit' => field can be modified
|
@@ -94,17 +111,17 @@ RULES (stored into an associative array and serialized):
|
|
94 |
'edit_only_by_admin' => field can be modified only by administrator
|
95 |
'edit_only_by_admin_or_if_empty' => field can be modified only by administrator or if it's still empty
|
96 |
'no_edit' => field cannot be modified
|
97 |
-
[only for text, textarea, textarea-rich, password, picture, picture-url, checkbox, radio, dropdown, avatar]
|
98 |
[for radio and checkbox 'edit_only_if_empty' has no effects and 'edit_only_by_admin_or_if_empty' has the same effect as edit_only_by_admin]
|
99 |
|
100 |
- 'equal_to': [string] => field should be equal to a specify string
|
101 |
[all except avatar]
|
102 |
|
103 |
- 'equal_to_case_sensitive': [true | false] => equal_to if selected can be case sensitive or not
|
104 |
-
[only for text, textarea, textarea-rich, password, dropdown]
|
105 |
|
106 |
- 'equal_to_regex': [true | false] => equal_to if selected must match regular expression specified in value
|
107 |
-
[only for text, textarea, textarea-rich, password, dropdown]
|
108 |
|
109 |
- 'show_in_reg': [true | false] => field is visible or not in the registration
|
110 |
[all]
|
@@ -123,10 +140,12 @@ TYPE can be:
|
|
123 |
- 'checkbox'
|
124 |
- 'radio'
|
125 |
- 'dropdown'
|
|
|
126 |
- 'picture'
|
127 |
- 'picture-url'
|
128 |
- 'registration-date'
|
129 |
- 'avatar'
|
|
|
130 |
|
131 |
*/
|
132 |
|
@@ -144,15 +163,15 @@ $cuef_upload_webpath = WP_CONTENT_URL."/Cimy_User_Extra_Fields/";
|
|
144 |
|
145 |
if ($is_mu) {
|
146 |
$cuef_plugin_path = "Cimy_User_Extra_Fields/";
|
147 |
-
$cuef_plugin_dir = WP_CONTENT_DIR."/
|
148 |
|
149 |
if (!is_dir($cuef_plugin_dir.$cuef_plugin_path))
|
150 |
$cuef_plugin_path = "cimy-user-extra-fields/";
|
151 |
|
152 |
$cuef_plugin_dir.= $cuef_plugin_path;
|
153 |
$cuef_langs_setup_dir = MUPLUGINDIR.'/'.$cuef_plugin_path.'langs';
|
154 |
-
$cuef_css_webpath = WP_CONTENT_URL."/
|
155 |
-
$cuef_js_webpath = WP_CONTENT_URL."/
|
156 |
}
|
157 |
else {
|
158 |
$cuef_plugin_dir = WP_CONTENT_DIR."/plugins/".$cuef_plugin_path;
|
@@ -161,7 +180,7 @@ else {
|
|
161 |
$cuef_js_webpath = WP_CONTENT_URL."/plugins/".$cuef_plugin_path."js/";
|
162 |
}
|
163 |
|
164 |
-
wp_register_script("
|
165 |
wp_register_script("cimy_uef_invert_sel", $cuef_js_webpath."invert_sel.js", false, false);
|
166 |
wp_register_style("cimy_uef_register", $cuef_css_webpath."cimy_uef_register.css", false, false);
|
167 |
|
@@ -173,12 +192,12 @@ require_once($cuef_plugin_dir.'/cimy_uef_options.php');
|
|
173 |
require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
|
174 |
|
175 |
$cimy_uef_name = "Cimy User Extra Fields";
|
176 |
-
$cimy_uef_version = "1.
|
177 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
178 |
|
179 |
$start_cimy_uef_comment = "<!--\n";
|
180 |
$start_cimy_uef_comment .= "\tStart code from ".$cimy_uef_name." ".$cimy_uef_version."\n";
|
181 |
-
$start_cimy_uef_comment .= "\tCopyright (c) 2006-
|
182 |
$start_cimy_uef_comment .= "\t".$cimy_uef_url."\n";
|
183 |
$start_cimy_uef_comment .= "-->\n";
|
184 |
|
@@ -209,8 +228,11 @@ $wp_hidden_fields = array(
|
|
209 |
'edit' => 'ok_edit',
|
210 |
'email' => false,
|
211 |
'show_in_reg' => true,
|
212 |
-
'show_in_profile' =>
|
213 |
'show_in_aeu' => false,
|
|
|
|
|
|
|
214 |
),
|
215 |
),
|
216 |
'firstname' => array(
|
@@ -228,6 +250,9 @@ $wp_hidden_fields = array(
|
|
228 |
'show_in_reg' => true,
|
229 |
'show_in_profile' => true,
|
230 |
'show_in_aeu' => true,
|
|
|
|
|
|
|
231 |
),
|
232 |
),
|
233 |
'lastname' => array(
|
@@ -245,6 +270,9 @@ $wp_hidden_fields = array(
|
|
245 |
'show_in_reg' => true,
|
246 |
'show_in_profile' => true,
|
247 |
'show_in_aeu' => true,
|
|
|
|
|
|
|
248 |
),
|
249 |
),
|
250 |
'nickname' => array(
|
@@ -262,6 +290,9 @@ $wp_hidden_fields = array(
|
|
262 |
'show_in_reg' => true,
|
263 |
'show_in_profile' => true,
|
264 |
'show_in_aeu' => true,
|
|
|
|
|
|
|
265 |
),
|
266 |
),
|
267 |
'website' => array(
|
@@ -279,6 +310,9 @@ $wp_hidden_fields = array(
|
|
279 |
'show_in_reg' => true,
|
280 |
'show_in_profile' => true,
|
281 |
'show_in_aeu' => true,
|
|
|
|
|
|
|
282 |
),
|
283 |
),
|
284 |
'aim' => array(
|
@@ -296,6 +330,9 @@ $wp_hidden_fields = array(
|
|
296 |
'show_in_reg' => true,
|
297 |
'show_in_profile' => true,
|
298 |
'show_in_aeu' => true,
|
|
|
|
|
|
|
299 |
),
|
300 |
),
|
301 |
'yahoo' => array(
|
@@ -313,6 +350,9 @@ $wp_hidden_fields = array(
|
|
313 |
'show_in_reg' => true,
|
314 |
'show_in_profile' => true,
|
315 |
'show_in_aeu' => true,
|
|
|
|
|
|
|
316 |
),
|
317 |
),
|
318 |
'jgt' => array(
|
@@ -330,6 +370,9 @@ $wp_hidden_fields = array(
|
|
330 |
'show_in_reg' => true,
|
331 |
'show_in_profile' => true,
|
332 |
'show_in_aeu' => true,
|
|
|
|
|
|
|
333 |
),
|
334 |
),
|
335 |
'bio-info' => array(
|
@@ -347,6 +390,9 @@ $wp_hidden_fields = array(
|
|
347 |
'show_in_reg' => true,
|
348 |
'show_in_profile' => true,
|
349 |
'show_in_aeu' => true,
|
|
|
|
|
|
|
350 |
),
|
351 |
),
|
352 |
);
|
@@ -358,45 +404,45 @@ $wp_hidden_fields = array(
|
|
358 |
//$light_illegal_chars = "/(\%27)|(\/)|(\\\)|(\[)|(\])|(\-\-)|(\%23)|(\#)/ix";
|
359 |
|
360 |
// all available types
|
361 |
-
$available_types = array("text", "textarea", "textarea-rich", "password", "checkbox", "radio", "dropdown", "picture", "picture-url", "registration-date", "avatar");
|
362 |
|
363 |
// types that should be pass registration check for equal to rule
|
364 |
-
$apply_equalto_rule = array("text", "textarea", "textarea-rich", "password", "checkbox", "radio", "dropdown");
|
365 |
|
366 |
// types that can have 'can be empty' rule
|
367 |
-
$rule_canbeempty = array("text", "textarea", "textarea-rich", "password", "picture", "picture-url", "dropdown", "avatar");
|
368 |
|
369 |
// common for min, exact and max length
|
370 |
-
$rule_maxlen = array("text", "password", "textarea", "textarea-rich", "picture", "picture-url", "avatar");
|
371 |
|
372 |
// common for min, exact and max length
|
373 |
-
$rule_maxlen_needed = array("text", "password", "picture", "picture-url", "avatar");
|
374 |
|
375 |
// types that can have 'check for email syntax' rule
|
376 |
$rule_email = array("text", "textarea", "textarea-rich", "password");
|
377 |
|
378 |
// types that can admit a default value if empty
|
379 |
-
$rule_profile_value = array("text", "textarea", "textarea-rich", "password", "picture", "picture-url", "avatar");
|
380 |
|
381 |
// types that can have 'equal to' rule
|
382 |
-
$rule_equalto = array("text", "textarea", "textarea-rich", "password", "checkbox", "radio", "dropdown", "picture", "picture-url", "registration-date");
|
383 |
|
384 |
// types that can have 'case (in)sensitive equal to' rule
|
385 |
-
$rule_equalto_case_sensitive = array("text", "textarea", "textarea-rich", "password", "dropdown");
|
386 |
|
387 |
// types that can have regex equal to rule
|
388 |
-
$rule_equalto_regex = array("text", "textarea", "textarea-rich", "password", "dropdown");
|
389 |
|
390 |
// types that are file to be uploaded
|
391 |
-
$cimy_uef_file_types = array("picture", "avatar");
|
392 |
|
393 |
// type that are textarea and needs rows and cols attributes
|
394 |
$cimy_uef_textarea_types = array("textarea", "textarea-rich");
|
395 |
|
396 |
$max_length_name = 20;
|
397 |
-
$max_length_label =
|
398 |
-
$max_length_desc =
|
399 |
-
$max_length_value =
|
400 |
$max_length_fieldset_value = 1024;
|
401 |
$max_length_extra_fields_title = 100;
|
402 |
|
@@ -408,10 +454,16 @@ $wp_fields_name_prefix = "cimy_uef_wp_";
|
|
408 |
|
409 |
// added for WordPress MU support
|
410 |
if ($is_mu) {
|
411 |
-
// add
|
412 |
-
add_action('
|
|
|
|
|
|
|
413 |
|
414 |
// add extra fields to registration form
|
|
|
|
|
|
|
415 |
add_filter('wpmu_validate_user_signup', 'cimy_registration_check_mu_wrapper');
|
416 |
|
417 |
// add custom login/registration css
|
@@ -452,7 +504,7 @@ else {
|
|
452 |
add_action('register_post', 'cimy_registration_check', 10, 3);
|
453 |
|
454 |
// add extra fields to registration form
|
455 |
-
add_action('register_form', 'cimy_registration_form');
|
456 |
|
457 |
// add custom login/registration css
|
458 |
add_action('login_head', 'cimy_uef_register_css');
|
@@ -461,9 +513,19 @@ else {
|
|
461 |
add_action('user_register', 'cimy_register_user_extra_fields');
|
462 |
}
|
463 |
|
464 |
-
|
465 |
-
|
466 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
467 |
|
468 |
// add extra fields to user's profile
|
469 |
add_action('show_user_profile', 'cimy_extract_ExtraFields');
|
@@ -602,7 +664,7 @@ function cimy_uef_i18n_setup() {
|
|
602 |
}
|
603 |
|
604 |
function cimy_admin_menu_custom() {
|
605 |
-
global $cimy_uef_name, $cimy_uef_domain, $is_mu, $cimy_top_menu;
|
606 |
|
607 |
if (!cimy_check_admin('manage_options'))
|
608 |
return;
|
@@ -613,7 +675,7 @@ function cimy_admin_menu_custom() {
|
|
613 |
add_submenu_page('profile.php', __('Authors & Users Extended', $cimy_uef_domain), __('A&U Extended', $cimy_uef_domain), 10, "au_extended", 'cimy_admin_users_list_page');
|
614 |
}
|
615 |
else {
|
616 |
-
if ($is_mu) {
|
617 |
add_submenu_page('wpmu-admin.php', __("Users Extended", $cimy_uef_domain), __("Users Extended", $cimy_uef_domain), 10, "users_extended", 'cimy_admin_users_list_page');
|
618 |
add_submenu_page('wpmu-admin.php', $cimy_uef_name, $cimy_uef_name, 10, "user_extra_fields", 'cimy_admin_define_extra_fields');
|
619 |
}
|
@@ -624,16 +686,34 @@ function cimy_admin_menu_custom() {
|
|
624 |
}
|
625 |
}
|
626 |
|
627 |
-
function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $delete_file=false, $
|
628 |
-
global $cuef_upload_path, $cuef_upload_webpath, $cuef_plugin_dir;
|
629 |
|
630 |
-
if ($is_avatar)
|
631 |
$avatar_path = "/avatar";
|
632 |
else
|
633 |
-
$avatar_path = ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
634 |
|
635 |
-
|
636 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
637 |
$file_name = $_FILES[$input_name]['name'];
|
638 |
|
639 |
// protect from site traversing
|
@@ -665,7 +745,7 @@ function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $
|
|
665 |
}
|
666 |
|
667 |
// create avatar subdir if needed
|
668 |
-
if (($
|
669 |
mkdir($file_path, 0777);
|
670 |
chmod($file_path, 0777);
|
671 |
}
|
@@ -674,7 +754,12 @@ function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $
|
|
674 |
$file_full_path = $file_path.$file_name;
|
675 |
|
676 |
// picture url to write in the DB
|
677 |
-
$data = $cuef_upload_webpath
|
|
|
|
|
|
|
|
|
|
|
678 |
|
679 |
// filesize in Byte transformed in KiloByte
|
680 |
$file_size = $_FILES[$input_name]['size'] / 1024;
|
@@ -683,7 +768,7 @@ function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $
|
|
683 |
$file_error = $_FILES[$input_name]['error'];
|
684 |
|
685 |
// CHECK IF IT IS A REAL PICTURE
|
686 |
-
if (stristr($file_type, "image/") === false)
|
687 |
$file_error = 1;
|
688 |
|
689 |
// MIN LENGTH
|
@@ -700,7 +785,7 @@ function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $
|
|
700 |
if (isset($rules['max_length']))
|
701 |
if ($file_size > (intval($rules['max_length'])))
|
702 |
$file_error = 1;
|
703 |
-
|
704 |
// if there are no errors and filename is empty
|
705 |
if (($file_error == 0) && ($file_name != "")) {
|
706 |
if (move_uploaded_file($file_tmp_name, $file_full_path)) {
|
@@ -721,7 +806,7 @@ function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $
|
|
721 |
}
|
722 |
|
723 |
// should be stay AFTER DELETIONS
|
724 |
-
if (isset($rules['equal_to'])) {
|
725 |
if ($maxside = intval($rules['equal_to'])) {
|
726 |
if (!function_exists(image_resize))
|
727 |
require_once(ABSPATH . 'wp-includes/media.php');
|
3 |
Plugin Name: Cimy User Extra Fields
|
4 |
Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Plugin Description: Add some useful fields to registration and user's info
|
6 |
+
Version: 1.5.0
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
*/
|
11 |
/*
|
12 |
|
13 |
Cimy User Extra Fields - Allows adding mySQL Data fields to store/add more user info
|
14 |
+
Copyright (c) 2006-2010 Marco Cimmino
|
15 |
|
16 |
Code for drop-down support is in part from Raymond Elferink raymond@raycom.com
|
17 |
Code for regular expression under equalTo rule is in part from Shane Hartman shane@shanehartman.com
|
36 |
*/
|
37 |
|
38 |
// added for WordPress >=2.5 compatibility
|
39 |
+
global $wpdb, $old_wpdb_data_table, $wpdb_data_table, $old_wpdb_fields_table, $wpdb_fields_table, $wpdb_wp_fields_table, $cimy_uef_options, $cimy_uef_version, $is_mu, $cuef_upload_path, $cimy_uef_domain, $wp_27, $cimy_uef_plugins_dir;
|
40 |
|
41 |
+
function cimy_uef_set_tables() {
|
42 |
+
global $wpdb, $old_wpdb_data_table, $wpdb_data_table, $old_wpdb_fields_table, $wpdb_fields_table, $wpdb_wp_fields_table, $cimy_uef_options, $cimy_uef_version, $is_mu, $cuef_upload_path, $cimy_uef_domain, $cimy_uef_plugins_dir, $wpmu_version, $wpmuBaseTablePrefix;
|
43 |
|
44 |
+
if (isset($wpmu_version)) {
|
45 |
+
$is_mu = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
+
$cimy_uef_plugins_dir = __FILE__;
|
48 |
+
if (!stristr($cimy_uef_plugins_dir, "mu-plugins") === false) {
|
49 |
+
$cimy_uef_plugins_dir = "mu-plugins";
|
50 |
+
$wpdb_data_table = $wpmuBaseTablePrefix."cimy_uef_data";
|
51 |
+
$wpdb_fields_table = $wpmuBaseTablePrefix."cimy_uef_fields";
|
52 |
+
$wpdb_wp_fields_table = $wpmuBaseTablePrefix."cimy_uef_wp_fields";
|
53 |
+
}
|
54 |
+
else {
|
55 |
+
$cimy_uef_plugins_dir = "plugins";
|
56 |
+
$wpdb_data_table = $wpdb->prefix."cimy_uef_data";
|
57 |
+
$wpdb_fields_table = $wpdb->prefix."cimy_uef_fields";
|
58 |
+
$wpdb_wp_fields_table = $wpdb->prefix."cimy_uef_wp_fields";
|
59 |
+
}
|
60 |
+
|
61 |
+
$old_wpdb_data_table = $wpmuBaseTablePrefix."cimy_data";
|
62 |
+
$old_wpdb_fields_table = $wpmuBaseTablePrefix."cimy_fields";
|
63 |
+
}
|
64 |
+
else {
|
65 |
+
$is_mu = false;
|
66 |
+
$cimy_uef_plugins_dir = "plugins";
|
67 |
|
68 |
+
$old_wpdb_data_table = $wpdb->prefix."cimy_data";
|
69 |
+
$old_wpdb_fields_table = $wpdb->prefix."cimy_fields";
|
70 |
+
|
71 |
+
$wpdb_data_table = $wpdb->prefix."cimy_uef_data";
|
72 |
+
$wpdb_fields_table = $wpdb->prefix."cimy_uef_fields";
|
73 |
+
$wpdb_wp_fields_table = $wpdb->prefix."cimy_uef_wp_fields";
|
74 |
+
}
|
75 |
}
|
76 |
|
77 |
+
cimy_uef_set_tables();
|
78 |
+
|
79 |
if (version_compare($wp_version, "2.6.9999", ">") === true) {
|
80 |
$wp_27 = true;
|
81 |
}
|
91 |
RULES (stored into an associative array and serialized):
|
92 |
|
93 |
- 'min_length': [int] => specify min length
|
94 |
+
[only for text, textarea, textarea-rich, password, picture, picture-url, avatar, file]
|
95 |
|
96 |
- 'exact_length': [int] => specify exact length
|
97 |
+
[only for text, textarea, textarea-rich, password, picture, picture-url, avatar, file]
|
98 |
|
99 |
- 'max_length': [int] => specify max length
|
100 |
+
[only for text, textarea, textarea-rich, password, picture, picture-url, avatar, file]
|
101 |
|
102 |
- 'email': [true | false] => check or not for email syntax
|
103 |
[only for text, textarea, textarea-rich, password]
|
104 |
|
105 |
- 'can_be_empty': [true | false] => field can or cannot be empty
|
106 |
+
[only for text, textarea, textarea-rich, password, picture, picture-url, dropdown, dropdown-multi, avatar, file]
|
107 |
|
108 |
- 'edit':
|
109 |
'ok_edit' => field can be modified
|
111 |
'edit_only_by_admin' => field can be modified only by administrator
|
112 |
'edit_only_by_admin_or_if_empty' => field can be modified only by administrator or if it's still empty
|
113 |
'no_edit' => field cannot be modified
|
114 |
+
[only for text, textarea, textarea-rich, password, picture, picture-url, checkbox, radio, dropdown, dropdown-multi, avatar, file]
|
115 |
[for radio and checkbox 'edit_only_if_empty' has no effects and 'edit_only_by_admin_or_if_empty' has the same effect as edit_only_by_admin]
|
116 |
|
117 |
- 'equal_to': [string] => field should be equal to a specify string
|
118 |
[all except avatar]
|
119 |
|
120 |
- 'equal_to_case_sensitive': [true | false] => equal_to if selected can be case sensitive or not
|
121 |
+
[only for text, textarea, textarea-rich, password, dropdown, dropdown-multi]
|
122 |
|
123 |
- 'equal_to_regex': [true | false] => equal_to if selected must match regular expression specified in value
|
124 |
+
[only for text, textarea, textarea-rich, password, dropdown, dropdown-multi]
|
125 |
|
126 |
- 'show_in_reg': [true | false] => field is visible or not in the registration
|
127 |
[all]
|
140 |
- 'checkbox'
|
141 |
- 'radio'
|
142 |
- 'dropdown'
|
143 |
+
- 'dropdown-multi'
|
144 |
- 'picture'
|
145 |
- 'picture-url'
|
146 |
- 'registration-date'
|
147 |
- 'avatar'
|
148 |
+
- 'file'
|
149 |
|
150 |
*/
|
151 |
|
163 |
|
164 |
if ($is_mu) {
|
165 |
$cuef_plugin_path = "Cimy_User_Extra_Fields/";
|
166 |
+
$cuef_plugin_dir = WP_CONTENT_DIR."/".$cimy_uef_plugins_dir."/";
|
167 |
|
168 |
if (!is_dir($cuef_plugin_dir.$cuef_plugin_path))
|
169 |
$cuef_plugin_path = "cimy-user-extra-fields/";
|
170 |
|
171 |
$cuef_plugin_dir.= $cuef_plugin_path;
|
172 |
$cuef_langs_setup_dir = MUPLUGINDIR.'/'.$cuef_plugin_path.'langs';
|
173 |
+
$cuef_css_webpath = WP_CONTENT_URL."/".$cimy_uef_plugins_dir."/".$cuef_plugin_path."css/";
|
174 |
+
$cuef_js_webpath = WP_CONTENT_URL."/".$cimy_uef_plugins_dir."/".$cuef_plugin_path."js/";
|
175 |
}
|
176 |
else {
|
177 |
$cuef_plugin_dir = WP_CONTENT_DIR."/plugins/".$cuef_plugin_path;
|
180 |
$cuef_js_webpath = WP_CONTENT_URL."/plugins/".$cuef_plugin_path."js/";
|
181 |
}
|
182 |
|
183 |
+
wp_register_script("cimy_uef_upload_file", $cuef_js_webpath."upload_file.js", false, false);
|
184 |
wp_register_script("cimy_uef_invert_sel", $cuef_js_webpath."invert_sel.js", false, false);
|
185 |
wp_register_style("cimy_uef_register", $cuef_css_webpath."cimy_uef_register.css", false, false);
|
186 |
|
192 |
require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
|
193 |
|
194 |
$cimy_uef_name = "Cimy User Extra Fields";
|
195 |
+
$cimy_uef_version = "1.5.0";
|
196 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
197 |
|
198 |
$start_cimy_uef_comment = "<!--\n";
|
199 |
$start_cimy_uef_comment .= "\tStart code from ".$cimy_uef_name." ".$cimy_uef_version."\n";
|
200 |
+
$start_cimy_uef_comment .= "\tCopyright (c) 2006-2010 Marco Cimmino\n";
|
201 |
$start_cimy_uef_comment .= "\t".$cimy_uef_url."\n";
|
202 |
$start_cimy_uef_comment .= "-->\n";
|
203 |
|
228 |
'edit' => 'ok_edit',
|
229 |
'email' => false,
|
230 |
'show_in_reg' => true,
|
231 |
+
'show_in_profile' => true,
|
232 |
'show_in_aeu' => false,
|
233 |
+
'show_in_search' => false,
|
234 |
+
'show_in_blog' => false,
|
235 |
+
'show_level' => -1,
|
236 |
),
|
237 |
),
|
238 |
'firstname' => array(
|
250 |
'show_in_reg' => true,
|
251 |
'show_in_profile' => true,
|
252 |
'show_in_aeu' => true,
|
253 |
+
'show_in_search' => true,
|
254 |
+
'show_in_blog' => true,
|
255 |
+
'show_level' => -1,
|
256 |
),
|
257 |
),
|
258 |
'lastname' => array(
|
270 |
'show_in_reg' => true,
|
271 |
'show_in_profile' => true,
|
272 |
'show_in_aeu' => true,
|
273 |
+
'show_in_search' => true,
|
274 |
+
'show_in_blog' => true,
|
275 |
+
'show_level' => -1,
|
276 |
),
|
277 |
),
|
278 |
'nickname' => array(
|
290 |
'show_in_reg' => true,
|
291 |
'show_in_profile' => true,
|
292 |
'show_in_aeu' => true,
|
293 |
+
'show_in_search' => true,
|
294 |
+
'show_in_blog' => true,
|
295 |
+
'show_level' => -1,
|
296 |
),
|
297 |
),
|
298 |
'website' => array(
|
310 |
'show_in_reg' => true,
|
311 |
'show_in_profile' => true,
|
312 |
'show_in_aeu' => true,
|
313 |
+
'show_in_search' => true,
|
314 |
+
'show_in_blog' => true,
|
315 |
+
'show_level' => -1,
|
316 |
),
|
317 |
),
|
318 |
'aim' => array(
|
330 |
'show_in_reg' => true,
|
331 |
'show_in_profile' => true,
|
332 |
'show_in_aeu' => true,
|
333 |
+
'show_in_search' => true,
|
334 |
+
'show_in_blog' => true,
|
335 |
+
'show_level' => -1,
|
336 |
),
|
337 |
),
|
338 |
'yahoo' => array(
|
350 |
'show_in_reg' => true,
|
351 |
'show_in_profile' => true,
|
352 |
'show_in_aeu' => true,
|
353 |
+
'show_in_search' => true,
|
354 |
+
'show_in_blog' => true,
|
355 |
+
'show_level' => -1,
|
356 |
),
|
357 |
),
|
358 |
'jgt' => array(
|
370 |
'show_in_reg' => true,
|
371 |
'show_in_profile' => true,
|
372 |
'show_in_aeu' => true,
|
373 |
+
'show_in_search' => true,
|
374 |
+
'show_in_blog' => true,
|
375 |
+
'show_level' => -1,
|
376 |
),
|
377 |
),
|
378 |
'bio-info' => array(
|
390 |
'show_in_reg' => true,
|
391 |
'show_in_profile' => true,
|
392 |
'show_in_aeu' => true,
|
393 |
+
'show_in_search' => true,
|
394 |
+
'show_in_blog' => true,
|
395 |
+
'show_level' => -1,
|
396 |
),
|
397 |
),
|
398 |
);
|
404 |
//$light_illegal_chars = "/(\%27)|(\/)|(\\\)|(\[)|(\])|(\-\-)|(\%23)|(\#)/ix";
|
405 |
|
406 |
// all available types
|
407 |
+
$available_types = array("text", "textarea", "textarea-rich", "password", "checkbox", "radio", "dropdown", "dropdown-multi", "picture", "picture-url", "registration-date", "avatar", "file");
|
408 |
|
409 |
// types that should be pass registration check for equal to rule
|
410 |
+
$apply_equalto_rule = array("text", "textarea", "textarea-rich", "password", "checkbox", "radio", "dropdown", "dropdown-multi");
|
411 |
|
412 |
// types that can have 'can be empty' rule
|
413 |
+
$rule_canbeempty = array("text", "textarea", "textarea-rich", "password", "picture", "picture-url", "dropdown", "dropdown-multi", "avatar", "file");
|
414 |
|
415 |
// common for min, exact and max length
|
416 |
+
$rule_maxlen = array("text", "password", "textarea", "textarea-rich", "picture", "picture-url", "avatar", "file");
|
417 |
|
418 |
// common for min, exact and max length
|
419 |
+
$rule_maxlen_needed = array("text", "password", "picture", "picture-url", "avatar", "file");
|
420 |
|
421 |
// types that can have 'check for email syntax' rule
|
422 |
$rule_email = array("text", "textarea", "textarea-rich", "password");
|
423 |
|
424 |
// types that can admit a default value if empty
|
425 |
+
$rule_profile_value = array("text", "textarea", "textarea-rich", "password", "picture", "picture-url", "avatar", "file");
|
426 |
|
427 |
// types that can have 'equal to' rule
|
428 |
+
$rule_equalto = array("text", "textarea", "textarea-rich", "password", "checkbox", "radio", "dropdown", "dropdown-multi", "picture", "picture-url", "registration-date", "file");
|
429 |
|
430 |
// types that can have 'case (in)sensitive equal to' rule
|
431 |
+
$rule_equalto_case_sensitive = array("text", "textarea", "textarea-rich", "password", "dropdown", "dropdown-multi");
|
432 |
|
433 |
// types that can have regex equal to rule
|
434 |
+
$rule_equalto_regex = array("text", "textarea", "textarea-rich", "password", "dropdown", "dropdown-multi");
|
435 |
|
436 |
// types that are file to be uploaded
|
437 |
+
$cimy_uef_file_types = array("picture", "avatar", "file");
|
438 |
|
439 |
// type that are textarea and needs rows and cols attributes
|
440 |
$cimy_uef_textarea_types = array("textarea", "textarea-rich");
|
441 |
|
442 |
$max_length_name = 20;
|
443 |
+
$max_length_label = 50000;
|
444 |
+
$max_length_desc = 50000;
|
445 |
+
$max_length_value = 50000;
|
446 |
$max_length_fieldset_value = 1024;
|
447 |
$max_length_extra_fields_title = 100;
|
448 |
|
454 |
|
455 |
// added for WordPress MU support
|
456 |
if ($is_mu) {
|
457 |
+
// add action to delete all files/images when deleting a blog
|
458 |
+
add_action('delete_blog', 'cimy_delete_blog_info', 10, 2);
|
459 |
+
|
460 |
+
// add filter to modify signup URL for WordPress MU where plug-in is installed per blog
|
461 |
+
add_filter('wp_signup_location', 'cimy_change_signup_location');
|
462 |
|
463 |
// add extra fields to registration form
|
464 |
+
add_action('signup_extra_fields', 'cimy_registration_form', 1);
|
465 |
+
|
466 |
+
// add checks for extra fields in the registration form
|
467 |
add_filter('wpmu_validate_user_signup', 'cimy_registration_check_mu_wrapper');
|
468 |
|
469 |
// add custom login/registration css
|
504 |
add_action('register_post', 'cimy_registration_check', 10, 3);
|
505 |
|
506 |
// add extra fields to registration form
|
507 |
+
add_action('register_form', 'cimy_registration_form', 1);
|
508 |
|
509 |
// add custom login/registration css
|
510 |
add_action('login_head', 'cimy_uef_register_css');
|
513 |
add_action('user_register', 'cimy_register_user_extra_fields');
|
514 |
}
|
515 |
|
516 |
+
function cimy_change_signup_location($url) {
|
517 |
+
global $blog_id, $current_site, $cimy_uef_plugins_dir;
|
518 |
+
|
519 |
+
if ($cimy_uef_plugins_dir == "plugins")
|
520 |
+
$attribute = "?blog_id=".$blog_id;
|
521 |
+
else
|
522 |
+
$attribute = "";
|
523 |
+
|
524 |
+
return "http://" . $current_site->domain . $current_site->path . "wp-signup.php".$attribute;
|
525 |
+
}
|
526 |
+
|
527 |
+
// add checks for extra fields in the profile form
|
528 |
+
add_action('user_profile_update_errors', 'cimy_profile_check_wrapper', 10, 3);
|
529 |
|
530 |
// add extra fields to user's profile
|
531 |
add_action('show_user_profile', 'cimy_extract_ExtraFields');
|
664 |
}
|
665 |
|
666 |
function cimy_admin_menu_custom() {
|
667 |
+
global $cimy_uef_name, $cimy_uef_domain, $is_mu, $cimy_top_menu, $cimy_uef_plugins_dir;
|
668 |
|
669 |
if (!cimy_check_admin('manage_options'))
|
670 |
return;
|
675 |
add_submenu_page('profile.php', __('Authors & Users Extended', $cimy_uef_domain), __('A&U Extended', $cimy_uef_domain), 10, "au_extended", 'cimy_admin_users_list_page');
|
676 |
}
|
677 |
else {
|
678 |
+
if (($is_mu) && ($cimy_uef_plugins_dir == "mu-plugins")) {
|
679 |
add_submenu_page('wpmu-admin.php', __("Users Extended", $cimy_uef_domain), __("Users Extended", $cimy_uef_domain), 10, "users_extended", 'cimy_admin_users_list_page');
|
680 |
add_submenu_page('wpmu-admin.php', $cimy_uef_name, $cimy_uef_name, 10, "user_extra_fields", 'cimy_admin_define_extra_fields');
|
681 |
}
|
686 |
}
|
687 |
}
|
688 |
|
689 |
+
function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $delete_file=false, $type="") {
|
690 |
+
global $cuef_upload_path, $cuef_upload_webpath, $cuef_plugin_dir, $cimy_uef_plugins_dir, $is_mu;
|
691 |
|
692 |
+
/*if ($is_avatar)
|
693 |
$avatar_path = "/avatar";
|
694 |
else
|
695 |
+
$avatar_path = "";*/
|
696 |
+
|
697 |
+
if ($type == "picture")
|
698 |
+
$type = "";
|
699 |
+
|
700 |
+
$type_path = "/".$type;
|
701 |
+
$blog_path = $cuef_upload_path;
|
702 |
+
|
703 |
+
if (($cimy_uef_plugins_dir == "plugins") && ($is_mu)) {
|
704 |
+
global $blog_id;
|
705 |
|
706 |
+
$blog_path .= $blog_id."/";
|
707 |
+
|
708 |
+
// create blog subdir
|
709 |
+
if (!is_dir($blog_path)) {
|
710 |
+
mkdir($blog_path, 0777);
|
711 |
+
chmod($blog_path, 0777);
|
712 |
+
}
|
713 |
+
}
|
714 |
+
|
715 |
+
$user_path = $blog_path.$user_login."/";
|
716 |
+
$file_path = $blog_path.$user_login.$type_path."/";
|
717 |
$file_name = $_FILES[$input_name]['name'];
|
718 |
|
719 |
// protect from site traversing
|
745 |
}
|
746 |
|
747 |
// create avatar subdir if needed
|
748 |
+
if (($type != "") && (!is_dir($file_path))) {
|
749 |
mkdir($file_path, 0777);
|
750 |
chmod($file_path, 0777);
|
751 |
}
|
754 |
$file_full_path = $file_path.$file_name;
|
755 |
|
756 |
// picture url to write in the DB
|
757 |
+
$data = $cuef_upload_webpath;
|
758 |
+
|
759 |
+
if (($cimy_uef_plugins_dir == "plugins") && ($is_mu))
|
760 |
+
$data.= $blog_id."/";
|
761 |
+
|
762 |
+
$data .= $user_login.$type_path."/".$file_name;
|
763 |
|
764 |
// filesize in Byte transformed in KiloByte
|
765 |
$file_size = $_FILES[$input_name]['size'] / 1024;
|
768 |
$file_error = $_FILES[$input_name]['error'];
|
769 |
|
770 |
// CHECK IF IT IS A REAL PICTURE
|
771 |
+
if (($type != "file") && (stristr($file_type, "image/") === false))
|
772 |
$file_error = 1;
|
773 |
|
774 |
// MIN LENGTH
|
785 |
if (isset($rules['max_length']))
|
786 |
if ($file_size > (intval($rules['max_length'])))
|
787 |
$file_error = 1;
|
788 |
+
|
789 |
// if there are no errors and filename is empty
|
790 |
if (($file_error == 0) && ($file_name != "")) {
|
791 |
if (move_uploaded_file($file_tmp_name, $file_full_path)) {
|
806 |
}
|
807 |
|
808 |
// should be stay AFTER DELETIONS
|
809 |
+
if ((isset($rules['equal_to'])) && ($type != "file")) {
|
810 |
if ($maxside = intval($rules['equal_to'])) {
|
811 |
if (!function_exists(image_resize))
|
812 |
require_once(ABSPATH . 'wp-includes/media.php');
|
js/upload_file.js
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
function by Marco Cimmino - e-mail: cimmino.marco@gmail.com
|
3 |
+
licensed under GPLv3
|
4 |
+
v1.0.0
|
5 |
+
|
6 |
+
This function allows uploading files over forms that do not allow it and checks
|
7 |
+
for allowed extensions displaying a popup in case of error and clearing
|
8 |
+
input field to avoid upload
|
9 |
+
|
10 |
+
form_name: name of the form
|
11 |
+
field_name: name of the input file field presents in the form
|
12 |
+
msg: message to display in case extension check fails
|
13 |
+
extensions: array containing extensions allowed, empty means everything is allowed
|
14 |
+
*/
|
15 |
+
function uploadFile(form_name, field_name, msg, extensions) {
|
16 |
+
var browser = navigator.appName;
|
17 |
+
var formblock = document.getElementById(form_name);
|
18 |
+
var field = document.getElementById(field_name);
|
19 |
+
|
20 |
+
// as usual not respecting standards, bugger!
|
21 |
+
if (browser == "Microsoft Internet Explorer")
|
22 |
+
formblock.encoding = "multipart/form-data";
|
23 |
+
else
|
24 |
+
formblock.enctype = "multipart/form-data";
|
25 |
+
|
26 |
+
var upload = field.value;
|
27 |
+
upload = upload.toLowerCase();
|
28 |
+
|
29 |
+
if (upload != '') {
|
30 |
+
var ext1 = upload.substring((upload.length-3),(upload.length));
|
31 |
+
var ext2 = upload.substring((upload.length-4),(upload.length));
|
32 |
+
}
|
33 |
+
|
34 |
+
// if array is empty then means all extensions are allowed
|
35 |
+
if (extensions.length > 0) {
|
36 |
+
var found = false;
|
37 |
+
for (var i=0; i<extensions.length; i++) {
|
38 |
+
var ext = extensions[i].toLowerCase();
|
39 |
+
|
40 |
+
if ((ext1 == ext) || (ext2 == ext)) {
|
41 |
+
found = true;
|
42 |
+
break;
|
43 |
+
}
|
44 |
+
}
|
45 |
+
|
46 |
+
if (!found) {
|
47 |
+
field.value = '';
|
48 |
+
alert(msg+": "+extensions.join(' '));
|
49 |
+
}
|
50 |
+
}
|
51 |
+
}
|
js/upload_pic.js
DELETED
@@ -1,23 +0,0 @@
|
|
1 |
-
function uploadPic(form_name, field_name, msg) {
|
2 |
-
var browser = navigator.appName;
|
3 |
-
var formblock = document.getElementById(form_name);
|
4 |
-
var field = document.getElementById(field_name);
|
5 |
-
|
6 |
-
if (browser == "Microsoft Internet Explorer")
|
7 |
-
formblock.encoding = "multipart/form-data";
|
8 |
-
else
|
9 |
-
formblock.enctype = "multipart/form-data";
|
10 |
-
|
11 |
-
var upload = field.value;
|
12 |
-
upload = upload.toLowerCase();
|
13 |
-
|
14 |
-
if (upload != '') {
|
15 |
-
var ext1 = upload.substring((upload.length-4),(upload.length));
|
16 |
-
var ext2 = upload.substring((upload.length-5),(upload.length));
|
17 |
-
|
18 |
-
if ((ext1 != '.gif') && (ext1 != '.png') && (ext1 != '.jpg') && (ext2 != '.jpeg') && (ext2 != '.tiff')) {
|
19 |
-
field.value = '';
|
20 |
-
alert(msg+": gif png jpg jpeg tiff");
|
21 |
-
}
|
22 |
-
}
|
23 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: 2009-
|
6 |
-
"PO-Revision-Date: 2009-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,182 +16,350 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
34 |
-
|
35 |
-
|
36 |
-
msgstr "Моля качете снимка с някое от тези разширения"
|
37 |
|
38 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
39 |
-
|
40 |
-
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
44 |
#, fuzzy
|
45 |
-
msgid "
|
46 |
-
msgstr "
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
49 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
55 |
-
|
56 |
-
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:301
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:307
|
59 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:319
|
60 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:325
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:337
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:343
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:419
|
64 |
-
msgid "ERROR"
|
65 |
-
msgstr "ГРЕШКА"
|
66 |
|
67 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
|
71 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
72 |
-
msgid "
|
73 |
-
msgstr "
|
74 |
|
75 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
76 |
-
|
77 |
-
|
78 |
-
msgstr "не е правилно"
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
81 |
-
msgid "
|
82 |
-
msgstr "
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
89 |
-
msgid "
|
90 |
-
msgstr "
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
93 |
-
msgid "
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
107 |
|
108 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
109 |
-
msgid "
|
110 |
-
msgstr "
|
111 |
|
112 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
113 |
-
msgid "
|
114 |
-
msgstr "
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
117 |
-
msgid "
|
118 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
121 |
#, fuzzy
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
130 |
msgid "Password"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
134 |
#, fuzzy
|
135 |
msgid "First name"
|
136 |
msgstr "Покажи първото име"
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
139 |
#, fuzzy
|
140 |
msgid "Last name"
|
141 |
msgstr "Покажи второто име"
|
142 |
|
143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
144 |
#, fuzzy
|
145 |
msgid "Nickname"
|
146 |
msgstr "Име"
|
147 |
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
151 |
msgid "Website"
|
152 |
msgstr "Интернет сайт"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
155 |
msgid "AIM"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
159 |
#, fuzzy
|
160 |
msgid "Yahoo IM"
|
161 |
msgstr "Покажи Yahoo IM"
|
162 |
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
164 |
#, fuzzy
|
165 |
msgid "Jabber / Google Talk"
|
166 |
msgstr "Покажи Jabber / Google Talk"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
169 |
msgid "Biographical Info"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
175 |
-
msgid "Options"
|
176 |
-
msgstr "Настройки"
|
177 |
-
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:612
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:111
|
180 |
msgid "Fields"
|
181 |
msgstr "Полета"
|
182 |
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
185 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
186 |
-
msgid "Authors & Users Extended"
|
187 |
-
msgstr "Автори & Потребители с разширения"
|
188 |
-
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:613
|
190 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:622
|
191 |
msgid "A&U Extended"
|
192 |
msgstr "А&П с разширения"
|
193 |
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
195 |
#, fuzzy
|
196 |
msgid "Users Extended"
|
197 |
msgstr "Разширен списък с Автори & Потребители"
|
@@ -217,17 +385,17 @@ msgid "Change order"
|
|
217 |
msgstr "Смени реда"
|
218 |
|
219 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Min length"
|
222 |
msgstr "Минимална дължина"
|
223 |
|
224 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
225 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
226 |
msgid "Exact length"
|
227 |
msgstr "Точна дължина"
|
228 |
|
229 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
231 |
msgid "Max length"
|
232 |
msgstr "Максимална дължина"
|
233 |
|
@@ -235,591 +403,468 @@ msgstr "Максимална дължина"
|
|
235 |
msgid "Exact or Max length"
|
236 |
msgstr "Точна или максимална дължина"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
msgid "changed to"
|
240 |
msgstr "променен на"
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
243 |
msgid "You cannot give an order that misses some numbers"
|
244 |
msgstr "Не може да даваш ред, в който липсват числа"
|
245 |
|
246 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Nothing selected"
|
249 |
msgstr "Нищо не е избрано"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Field(s)"
|
253 |
msgstr "Поле(та)"
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "deleted correctly"
|
257 |
msgstr "изтрит успешно"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
261 |
msgid "Min size"
|
262 |
msgstr "Минимален размер"
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
266 |
msgid "Exact size"
|
267 |
msgstr "Точен размер"
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
271 |
msgid "Max size"
|
272 |
msgstr "Максимален размер"
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
275 |
msgid "Exact or Max size"
|
276 |
msgstr "Точен или максимален размер"
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
279 |
msgid "Name not specified"
|
280 |
msgstr "Не е определено име"
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
283 |
msgid "Name cannot contains spaces"
|
284 |
msgstr "Името не може да съдържа шпации"
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
287 |
msgid "Label not specified"
|
288 |
msgstr "Не е определен етикет"
|
289 |
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
291 |
msgid "not selected (with this type is necessary)"
|
292 |
msgstr "не е избрано (задължително за този тип)"
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
295 |
msgid "If you select"
|
296 |
msgstr "Ако избра"
|
297 |
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
299 |
msgid "you cannot select Min or Max"
|
300 |
msgstr "не можеш да избереш минимума или максимума"
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
303 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
305 |
msgid "should be in the range of"
|
306 |
msgstr "трябва да е в рамките на"
|
307 |
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Equal TO not specified"
|
311 |
msgstr "Равно НА не е определено"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
msgid "With checkbox type Equal TO can only be"
|
315 |
msgstr "С отметка от тип Равно НА може да е само"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
318 |
msgid "With radio type Equal TO can only be"
|
319 |
msgstr "С радио бутон от тип Равно НА може да е само"
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
322 |
msgid "With checkbox type Value can only be"
|
323 |
msgstr "С отметка от тип Стойност може да е само"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
326 |
msgid "With radio type Value can only be"
|
327 |
msgstr "С радио бутон от тип Стойност може да е само"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
330 |
msgid "Field inserted correctly"
|
331 |
msgstr "Полето е добавено успешно"
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
334 |
msgid "Field #"
|
335 |
msgstr "Поле #"
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
338 |
msgid "updated correctly"
|
339 |
msgstr "подновено успешно"
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
342 |
msgid "Name inserted is just in the database, change to another one"
|
343 |
msgstr "Въведеното име е в базата данни, променето го"
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:411
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:411
|
347 |
-
msgid "Add a new Field"
|
348 |
-
msgstr "Добави друго поле"
|
349 |
-
|
350 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
352 |
-
|
353 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
357 |
msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
360 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
361 |
msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
365 |
msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
369 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
373 |
msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
376 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
377 |
msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
#, fuzzy
|
381 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
382 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
390 |
msgid "Name"
|
391 |
msgstr "Име"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
msgid "Value"
|
398 |
msgstr "Стойност"
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
msgid "Type"
|
405 |
msgstr "Тип"
|
406 |
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
msgid "Label"
|
412 |
msgstr "Етикет"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
418 |
msgid "Description"
|
419 |
msgstr "Описание"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
423 |
msgid "Rules"
|
424 |
msgstr "Правила"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
428 |
msgid "Actions"
|
429 |
msgstr "Действия"
|
430 |
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
432 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
433 |
#, fuzzy
|
434 |
msgid "Fieldset"
|
435 |
msgstr "Полета"
|
436 |
|
437 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
439 |
msgid "Can be empty"
|
440 |
msgstr "Може да е празно"
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
444 |
msgid "Check for E-mail syntax"
|
445 |
msgstr "Провери за Email синтаксис"
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
449 |
msgid "Can be modified"
|
450 |
msgstr "Може да бъде променяно"
|
451 |
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
454 |
msgid "Can be modified only if empty"
|
455 |
msgstr "Може да бъде променяно само ако е празно"
|
456 |
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
459 |
msgid "Can be modified only by admin"
|
460 |
msgstr "Може да бъде променяно само от администратора"
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
464 |
msgid "Can be modified only by admin or if empty"
|
465 |
msgstr "Може да бъде променяно само от администратора или ако е празно"
|
466 |
|
467 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
469 |
msgid "Cannot be modified"
|
470 |
msgstr "Не може да бъде променяно"
|
471 |
|
472 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
474 |
msgid "Should be equal TO"
|
475 |
msgstr "Би трябвало да е равно НА"
|
476 |
|
477 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
479 |
msgid "Case sensitive"
|
480 |
msgstr "Различават се големи и малко букви"
|
481 |
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
484 |
msgid "Regular Expression"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
msgid "Show the field in the registration"
|
490 |
msgstr "Покажи полето при регистрация"
|
491 |
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
494 |
msgid "Show the field in User's profile"
|
495 |
msgstr "Покажи полето в профила на потребителя"
|
496 |
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
499 |
msgid "Show the field in A&U Extended menu"
|
500 |
msgstr "Покажи полето в A&П разширеното меню"
|
501 |
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
503 |
-
|
504 |
-
|
|
|
|
|
505 |
|
506 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
507 |
-
|
508 |
-
|
|
|
|
|
509 |
|
510 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
511 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
msgstr "Допълнителни полета"
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
518 |
-
|
519 |
-
|
|
|
520 |
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
522 |
-
|
|
|
|
|
|
|
523 |
msgid "Invert selection"
|
524 |
msgstr "Обърни избора"
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1048
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
529 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
530 |
msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
534 |
msgid "Order"
|
535 |
msgstr "Подреди"
|
536 |
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
538 |
msgid "Reset"
|
539 |
msgstr "Отмени"
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
542 |
#, php-format
|
543 |
msgid "Users Matching \"%s\""
|
544 |
msgstr "Потребители отговарящи на \"%s\""
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
547 |
#, fuzzy
|
548 |
msgid "Users Extended List"
|
549 |
msgstr "Разширен списък с Автори & Потребители"
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
552 |
msgid "Authors & Users Extended List"
|
553 |
msgstr "Разширен списък с Автори & Потребители"
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
556 |
msgid "Search Users"
|
557 |
msgstr "Търсене на потребители"
|
558 |
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
msgid "« Back to All Users"
|
561 |
msgstr "« Назад към Всички потребители"
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
#, fuzzy
|
565 |
msgid "Users per page"
|
566 |
msgstr "Таблица с потребителски данни"
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
569 |
msgid "Apply"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
574 |
msgid "Username"
|
575 |
msgstr "Потребителско име"
|
576 |
|
577 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
579 |
msgid "E-mail"
|
580 |
msgstr "E-mail"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
msgid "Role"
|
585 |
msgstr "Роля"
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
msgid "Posts"
|
590 |
msgstr "Постове"
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
593 |
msgid "View posts by this author"
|
594 |
msgstr "Виж постовете на този автор"
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
597 |
#, php-format
|
598 |
msgid "e-mail: %s"
|
599 |
msgstr "e-mail: %s"
|
600 |
|
601 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
606 |
-
msgid "WordPress Fields table deleted"
|
607 |
-
msgstr "Таблицата с WordPress полета е изтрита"
|
608 |
-
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
610 |
-
msgid "Extra Fields table emptied"
|
611 |
-
msgstr "Таблицата с допълнителни полета е изпразнена"
|
612 |
-
|
613 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
614 |
-
msgid "Extra Fields table deleted"
|
615 |
-
msgstr "Таблицата с допълнителни полета е изтрита"
|
616 |
-
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
618 |
-
msgid "Users Data table emptied"
|
619 |
-
msgstr "Таблицата с потребителски данни е изпразнена"
|
620 |
-
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
622 |
-
msgid "Users Data table deleted"
|
623 |
-
msgstr "Таблицата с потребителски данни е изтрита"
|
624 |
-
|
625 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
626 |
-
msgid "Options set to default values"
|
627 |
-
msgstr "Вариантите са сменени по подразбиране"
|
628 |
-
|
629 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
630 |
-
msgid "Options deleted"
|
631 |
-
msgstr "Вариантите са изтрити"
|
632 |
-
|
633 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
634 |
-
msgid "Options changed"
|
635 |
-
msgstr "Вариантите са променени"
|
636 |
-
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
638 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
|
639 |
-
msgid "Save Changes"
|
640 |
-
msgstr "Запази промените"
|
641 |
-
|
642 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:433
|
643 |
-
msgid "General"
|
644 |
-
msgstr "Общи"
|
645 |
-
|
646 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:441
|
647 |
-
msgid "installed is"
|
648 |
-
msgstr "инсталирано е"
|
649 |
-
|
650 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
651 |
-
msgid "OPTIONS DELETED!"
|
652 |
-
msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
|
653 |
-
|
654 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
656 |
-
msgid "Fix the problem"
|
657 |
-
msgstr ""
|
658 |
-
|
659 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
660 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
661 |
-
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
662 |
-
msgstr ""
|
663 |
-
|
664 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:451
|
665 |
-
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
666 |
-
msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
|
667 |
-
|
668 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:459
|
669 |
-
msgid "Picture/Avatar upload"
|
670 |
-
msgstr ""
|
671 |
-
|
672 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
673 |
-
msgid "is created and writable"
|
674 |
-
msgstr ""
|
675 |
|
676 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
677 |
-
|
|
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
681 |
-
msgid "
|
682 |
-
msgstr "База данни"
|
683 |
-
|
684 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:517
|
687 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
688 |
-
msgid "select action"
|
689 |
-
msgstr "избери действие"
|
690 |
-
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
692 |
-
msgid "Default values"
|
693 |
-
msgstr "Стойност по подразбиране"
|
694 |
-
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
698 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
699 |
-
msgid "Delete"
|
700 |
-
msgstr "Изтрий"
|
701 |
-
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:505
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:523
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:541
|
706 |
-
msgid "NOT PRESENT"
|
707 |
-
msgstr "НЕ СЪЩЕСТВУВА"
|
708 |
-
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:491
|
710 |
-
msgid "WordPress Fields table"
|
711 |
-
msgstr "Таблица с WordPress полета"
|
712 |
-
|
713 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:499
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:535
|
716 |
-
msgid "Empty"
|
717 |
-
msgstr "Празно"
|
718 |
-
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:511
|
720 |
-
msgid "Extra Fields table"
|
721 |
-
msgstr "Таблица с допълнителни полета"
|
722 |
-
|
723 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:528
|
724 |
-
msgid "Users Data table"
|
725 |
-
msgstr "Таблица с потребителски данни"
|
726 |
-
|
727 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
728 |
-
msgid "all data inserted by users in all and only extra fields"
|
729 |
-
msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
|
730 |
-
|
731 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
732 |
-
msgid "Force tables creation"
|
733 |
-
msgstr "Задължително създаване на таблица"
|
734 |
-
|
735 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
736 |
-
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:558
|
744 |
-
#, fuzzy
|
745 |
-
msgid "Extra Fields section title"
|
746 |
-
msgstr "Таблица с допълнителни полета"
|
747 |
-
|
748 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
749 |
-
msgid "Fieldset's titles, separates with comma"
|
750 |
-
msgstr "Заглавията на колекция разделени със запетайка"
|
751 |
-
|
752 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
753 |
-
msgid "example: title1,title2,title3"
|
754 |
-
msgstr "пример: заглавие1,заглавие2,заглавие3"
|
755 |
-
|
756 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
757 |
-
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
761 |
-
msgid "
|
762 |
-
msgstr "
|
763 |
-
|
764 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:578
|
765 |
-
msgid "Hide name field"
|
766 |
-
msgstr "Скрий полето за име"
|
767 |
-
|
768 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:583
|
769 |
-
msgid "Hide email field"
|
770 |
-
msgstr "Скрий полето за email"
|
771 |
-
|
772 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:587
|
773 |
-
msgid "Hide role field"
|
774 |
-
msgstr "Скрий полето за роля"
|
775 |
|
776 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
777 |
-
msgid "
|
778 |
-
msgstr "
|
779 |
|
780 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
781 |
-
|
782 |
-
|
|
|
783 |
|
784 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
785 |
-
msgid "
|
786 |
-
msgstr "
|
787 |
|
788 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
789 |
-
msgid "
|
790 |
-
msgstr ""
|
791 |
|
792 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
793 |
-
msgid "
|
794 |
-
msgstr "
|
795 |
|
796 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
797 |
-
msgid "
|
798 |
-
msgstr "
|
799 |
|
800 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
801 |
-
msgid "
|
802 |
-
msgstr "
|
803 |
|
804 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
805 |
-
msgid "
|
806 |
-
msgstr "
|
807 |
|
808 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
809 |
-
msgid "
|
810 |
-
msgstr "
|
811 |
|
812 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
813 |
-
msgid "
|
814 |
-
msgstr "
|
815 |
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
817 |
-
msgid "
|
818 |
-
msgstr "
|
819 |
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
821 |
-
msgid "
|
822 |
-
msgstr ""
|
823 |
|
824 |
#~ msgid "Disable get_cimyFieldValue function"
|
825 |
#~ msgstr "Изключи функцията get_cimyFieldValue"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-11-22 23:51+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-11-22 23:51+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:34
|
20 |
+
msgid "WordPress Fields table emptied"
|
21 |
+
msgstr "Таблицата с WordPress полета е изпразнена"
|
22 |
+
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
24 |
+
msgid "WordPress Fields table deleted"
|
25 |
+
msgstr "Таблицата с WordPress полета е изтрита"
|
26 |
+
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
28 |
+
msgid "Extra Fields table emptied"
|
29 |
+
msgstr "Таблицата с допълнителни полета е изпразнена"
|
30 |
+
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
32 |
+
msgid "Extra Fields table deleted"
|
33 |
+
msgstr "Таблицата с допълнителни полета е изтрита"
|
34 |
+
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
36 |
+
msgid "Users Data table emptied"
|
37 |
+
msgstr "Таблицата с потребителски данни е изпразнена"
|
38 |
+
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
40 |
+
msgid "Users Data table deleted"
|
41 |
+
msgstr "Таблицата с потребителски данни е изтрита"
|
42 |
+
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
44 |
+
msgid "Options set to default values"
|
45 |
+
msgstr "Вариантите са сменени по подразбиране"
|
46 |
+
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
48 |
+
msgid "Options deleted"
|
49 |
+
msgstr "Вариантите са изтрити"
|
50 |
+
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
52 |
+
msgid "Options changed"
|
53 |
+
msgstr "Вариантите са променени"
|
54 |
+
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:401
|
56 |
+
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:410
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:476
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:673
|
62 |
+
msgid "Options"
|
63 |
+
msgstr "Настройки"
|
64 |
+
|
65 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:430
|
67 |
+
msgid "Add a new Field"
|
68 |
+
msgstr "Добави друго поле"
|
69 |
+
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
71 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
73 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
|
74 |
+
msgid "Extra Fields"
|
75 |
+
msgstr "Допълнителни полета"
|
76 |
+
|
77 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:457
|
79 |
+
msgid "SUCCESSFUL"
|
80 |
+
msgstr "УСПЕХ"
|
81 |
+
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:434
|
83 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
84 |
+
msgid "Save Changes"
|
85 |
+
msgstr "Запази промените"
|
86 |
+
|
87 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:435
|
88 |
+
msgid "General"
|
89 |
+
msgstr "Общи"
|
90 |
+
|
91 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:443
|
92 |
+
msgid "installed is"
|
93 |
+
msgstr "инсталирано е"
|
94 |
+
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:447
|
96 |
+
msgid "OPTIONS DELETED!"
|
97 |
+
msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
|
98 |
+
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:450
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:455
|
101 |
+
msgid "Fix the problem"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
105 |
+
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
106 |
+
msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
|
107 |
+
|
108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
109 |
+
msgid "Picture/Avatar upload"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:465
|
113 |
+
msgid "is created and writable"
|
114 |
+
msgstr ""
|
|
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:467
|
117 |
+
msgid "is NOT created or webserver does NOT have permission to write on it"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:473
|
121 |
+
msgid "Database"
|
122 |
+
msgstr "База данни"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
125 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
128 |
+
msgid "select action"
|
129 |
+
msgstr "избери действие"
|
130 |
+
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
132 |
+
msgid "Default values"
|
133 |
+
msgstr "Стойност по подразбиране"
|
134 |
+
|
135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
139 |
+
msgid "Delete"
|
140 |
+
msgstr "Изтрий"
|
141 |
+
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:488
|
143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:507
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
146 |
+
msgid "NOT PRESENT"
|
147 |
+
msgstr "НЕ СЪЩЕСТВУВА"
|
148 |
+
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:493
|
150 |
+
msgid "WordPress Fields table"
|
151 |
+
msgstr "Таблица с WordPress полета"
|
152 |
+
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:501
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:520
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
156 |
+
msgid "Empty"
|
157 |
+
msgstr "Празно"
|
158 |
+
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:513
|
160 |
+
msgid "Extra Fields table"
|
161 |
+
msgstr "Таблица с допълнителни полета"
|
162 |
+
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
164 |
+
msgid "Users Data table"
|
165 |
+
msgstr "Таблица с потребителски данни"
|
166 |
+
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
168 |
+
msgid "all data inserted by users in all and only extra fields"
|
169 |
+
msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
|
170 |
+
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
172 |
+
msgid "Force tables creation"
|
173 |
+
msgstr "Задължително създаване на таблица"
|
174 |
+
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
176 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
180 |
+
msgid "User Profile"
|
181 |
+
msgstr "Потребителски профил"
|
182 |
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:560
|
184 |
#, fuzzy
|
185 |
+
msgid "Extra Fields section title"
|
186 |
+
msgstr "Таблица с допълнителни полета"
|
187 |
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
189 |
+
msgid "Fieldset's titles, separates with comma"
|
190 |
+
msgstr "Заглавията на колекция разделени със запетайка"
|
191 |
+
|
192 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
193 |
+
msgid "example: title1,title2,title3"
|
194 |
+
msgstr "пример: заглавие1,заглавие2,заглавие3"
|
195 |
+
|
196 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
197 |
+
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
202 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
203 |
+
msgid "Authors & Users Extended"
|
204 |
+
msgstr "Автори & Потребители с разширения"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
207 |
+
msgid "Hide username field"
|
208 |
+
msgstr "Скрий полето за потребителско име"
|
209 |
|
210 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
211 |
+
msgid "Hide name field"
|
212 |
+
msgstr "Скрий полето за име"
|
213 |
|
214 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:585
|
215 |
+
msgid "Hide email field"
|
216 |
+
msgstr "Скрий полето за email"
|
|
|
217 |
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
219 |
+
msgid "Hide role field"
|
220 |
+
msgstr "Скрий полето за роля"
|
221 |
|
222 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
223 |
+
msgid "Hide website field"
|
224 |
+
msgstr "Скрий полето за интернет сайт"
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
227 |
+
msgid "Hide n. posts field"
|
228 |
+
msgstr "Скрий полето за брой постове"
|
229 |
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:602
|
231 |
+
msgid "WordPress hidden fields"
|
232 |
+
msgstr "Скрити полета на WordPress"
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
235 |
+
msgid "Show password"
|
236 |
+
msgstr ""
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
239 |
+
msgid "Show first name"
|
240 |
+
msgstr "Покажи първото име"
|
241 |
|
242 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
243 |
+
msgid "Show last name"
|
244 |
+
msgstr "Покажи второто име"
|
245 |
|
246 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
247 |
+
msgid "Show nickname"
|
248 |
+
msgstr "Покажи потребителското име"
|
249 |
|
250 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
251 |
+
msgid "Show website"
|
252 |
+
msgstr "Покажи интернет сайта"
|
253 |
|
254 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
255 |
+
msgid "Show AIM"
|
256 |
+
msgstr "Покажи AIM"
|
257 |
+
|
258 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
259 |
+
msgid "Show Yahoo IM"
|
260 |
+
msgstr "Покажи Yahoo IM"
|
261 |
+
|
262 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:633
|
263 |
+
msgid "Show Jabber / Google Talk"
|
264 |
+
msgstr "Покажи Jabber / Google Talk"
|
265 |
|
266 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:637
|
267 |
+
msgid "Show Biographical Info"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:292
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:729
|
272 |
#, fuzzy
|
273 |
+
msgid "Please upload a file with one of the following extensions"
|
274 |
+
msgstr "Моля качете снимка с някое от тези разширения"
|
275 |
+
|
276 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:298
|
277 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:735
|
278 |
+
msgid "Please upload an image with one of the following extensions"
|
279 |
+
msgstr "Моля качете снимка с някое от тези разширения"
|
280 |
+
|
281 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:422
|
282 |
+
#, fuzzy
|
283 |
+
msgid "Delete the file"
|
284 |
+
msgstr "Изтрий поле"
|
285 |
+
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:423
|
287 |
+
#, fuzzy
|
288 |
+
msgid "Update the file"
|
289 |
+
msgstr "Поднови поле"
|
290 |
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:426
|
292 |
+
#, fuzzy
|
293 |
+
msgid "Delete the picture"
|
294 |
+
msgstr "Изтрий поле"
|
295 |
+
|
296 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:427
|
297 |
+
#, fuzzy
|
298 |
+
msgid "Update the picture"
|
299 |
+
msgstr "Поднови поле"
|
300 |
+
|
301 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
302 |
+
msgid "Picture URL:"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:215
|
306 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:222
|
310 |
msgid "Password"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:242
|
314 |
#, fuzzy
|
315 |
msgid "First name"
|
316 |
msgstr "Покажи първото име"
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
|
319 |
#, fuzzy
|
320 |
msgid "Last name"
|
321 |
msgstr "Покажи второто име"
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:282
|
324 |
#, fuzzy
|
325 |
msgid "Nickname"
|
326 |
msgstr "Име"
|
327 |
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
331 |
msgid "Website"
|
332 |
msgstr "Интернет сайт"
|
333 |
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:322
|
335 |
msgid "AIM"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:342
|
339 |
#, fuzzy
|
340 |
msgid "Yahoo IM"
|
341 |
msgstr "Покажи Yahoo IM"
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:362
|
344 |
#, fuzzy
|
345 |
msgid "Jabber / Google Talk"
|
346 |
msgstr "Покажи Jabber / Google Talk"
|
347 |
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:382
|
349 |
msgid "Biographical Info"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:674
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
msgid "Fields"
|
355 |
msgstr "Полета"
|
356 |
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
msgid "A&U Extended"
|
360 |
msgstr "А&П с разширения"
|
361 |
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:679
|
363 |
#, fuzzy
|
364 |
msgid "Users Extended"
|
365 |
msgstr "Разширен списък с Автори & Потребители"
|
385 |
msgstr "Смени реда"
|
386 |
|
387 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
389 |
msgid "Min length"
|
390 |
msgstr "Минимална дължина"
|
391 |
|
392 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1067
|
394 |
msgid "Exact length"
|
395 |
msgstr "Точна дължина"
|
396 |
|
397 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
399 |
msgid "Max length"
|
400 |
msgstr "Максимална дължина"
|
401 |
|
403 |
msgid "Exact or Max length"
|
404 |
msgstr "Точна или максимална дължина"
|
405 |
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
407 |
msgid "changed to"
|
408 |
msgstr "променен на"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:124
|
411 |
msgid "You cannot give an order that misses some numbers"
|
412 |
msgstr "Не може да даваш ред, в който липсват числа"
|
413 |
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:127
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:200
|
416 |
msgid "Nothing selected"
|
417 |
msgstr "Нищо не е избрано"
|
418 |
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
420 |
msgid "Field(s)"
|
421 |
msgstr "Поле(та)"
|
422 |
|
423 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
424 |
msgid "deleted correctly"
|
425 |
msgstr "изтрит успешно"
|
426 |
|
427 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:229
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
429 |
msgid "Min size"
|
430 |
msgstr "Минимален размер"
|
431 |
|
432 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:230
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1059
|
434 |
msgid "Exact size"
|
435 |
msgstr "Точен размер"
|
436 |
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:231
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
|
439 |
msgid "Max size"
|
440 |
msgstr "Максимален размер"
|
441 |
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:233
|
443 |
msgid "Exact or Max size"
|
444 |
msgstr "Точен или максимален размер"
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
447 |
msgid "Name not specified"
|
448 |
msgstr "Не е определено име"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
451 |
msgid "Name cannot contains spaces"
|
452 |
msgstr "Името не може да съдържа шпации"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
455 |
msgid "Label not specified"
|
456 |
msgstr "Не е определен етикет"
|
457 |
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
459 |
msgid "not selected (with this type is necessary)"
|
460 |
msgstr "не е избрано (задължително за този тип)"
|
461 |
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
463 |
msgid "If you select"
|
464 |
msgstr "Ако избра"
|
465 |
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
467 |
msgid "you cannot select Min or Max"
|
468 |
msgstr "не можеш да избереш минимума или максимума"
|
469 |
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
472 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
473 |
msgid "should be in the range of"
|
474 |
msgstr "трябва да е в рамките на"
|
475 |
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:328
|
478 |
msgid "Equal TO not specified"
|
479 |
msgstr "Равно НА не е определено"
|
480 |
|
481 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
|
482 |
msgid "With checkbox type Equal TO can only be"
|
483 |
msgstr "С отметка от тип Равно НА може да е само"
|
484 |
|
485 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:334
|
486 |
msgid "With radio type Equal TO can only be"
|
487 |
msgstr "С радио бутон от тип Равно НА може да е само"
|
488 |
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:350
|
490 |
msgid "With checkbox type Value can only be"
|
491 |
msgstr "С отметка от тип Стойност може да е само"
|
492 |
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:353
|
494 |
msgid "With radio type Value can only be"
|
495 |
msgstr "С радио бутон от тип Стойност може да е само"
|
496 |
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
|
498 |
msgid "Field inserted correctly"
|
499 |
msgstr "Полето е добавено успешно"
|
500 |
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
502 |
msgid "Field #"
|
503 |
msgstr "Поле #"
|
504 |
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
506 |
msgid "updated correctly"
|
507 |
msgstr "подновено успешно"
|
508 |
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:415
|
510 |
msgid "Name inserted is just in the database, change to another one"
|
511 |
msgstr "Въведеното име е в базата данни, променето го"
|
512 |
|
|
|
|
|
|
|
|
|
|
|
513 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
514 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:378
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:390
|
518 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
525 |
+
msgid "ERROR"
|
526 |
+
msgstr "ГРЕШКА"
|
527 |
|
528 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
529 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
530 |
msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
|
531 |
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
|
533 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
534 |
msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
|
535 |
|
536 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
537 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
538 |
msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
|
539 |
|
540 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
|
541 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
542 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
543 |
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
545 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
546 |
msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
|
547 |
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
|
549 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
550 |
msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
|
551 |
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
553 |
#, fuzzy
|
554 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
555 |
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
556 |
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
558 |
+
#, fuzzy
|
559 |
+
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
560 |
+
msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
|
561 |
+
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1477
|
568 |
msgid "Name"
|
569 |
msgstr "Име"
|
570 |
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1094
|
575 |
msgid "Value"
|
576 |
msgstr "Стойност"
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
582 |
msgid "Type"
|
583 |
msgstr "Тип"
|
584 |
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
589 |
msgid "Label"
|
590 |
msgstr "Етикет"
|
591 |
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
596 |
msgid "Description"
|
597 |
msgstr "Описание"
|
598 |
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:851
|
601 |
msgid "Rules"
|
602 |
msgstr "Правила"
|
603 |
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:852
|
606 |
msgid "Actions"
|
607 |
msgstr "Действия"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1113
|
611 |
#, fuzzy
|
612 |
msgid "Fieldset"
|
613 |
msgstr "Полета"
|
614 |
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:713
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1136
|
617 |
msgid "Can be empty"
|
618 |
msgstr "Може да е празно"
|
619 |
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1137
|
622 |
msgid "Check for E-mail syntax"
|
623 |
msgstr "Провери за Email синтаксис"
|
624 |
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
627 |
msgid "Can be modified"
|
628 |
msgstr "Може да бъде променяно"
|
629 |
|
630 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:718
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
632 |
msgid "Can be modified only if empty"
|
633 |
msgstr "Може да бъде променяно само ако е празно"
|
634 |
|
635 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
637 |
msgid "Can be modified only by admin"
|
638 |
msgstr "Може да бъде променяно само от администратора"
|
639 |
|
640 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
642 |
msgid "Can be modified only by admin or if empty"
|
643 |
msgstr "Може да бъде променяно само от администратора или ако е празно"
|
644 |
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:721
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1144
|
647 |
msgid "Cannot be modified"
|
648 |
msgstr "Не може да бъде променяно"
|
649 |
|
650 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
652 |
msgid "Should be equal TO"
|
653 |
msgstr "Би трябвало да е равно НА"
|
654 |
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
657 |
msgid "Case sensitive"
|
658 |
msgstr "Различават се големи и малко букви"
|
659 |
|
660 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:734
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
662 |
msgid "Regular Expression"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:737
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1157
|
667 |
msgid "Show the field in the registration"
|
668 |
msgstr "Покажи полето при регистрация"
|
669 |
|
670 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:740
|
671 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1160
|
672 |
msgid "Show the field in User's profile"
|
673 |
msgstr "Покажи полето в профила на потребителя"
|
674 |
|
675 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
676 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1169
|
677 |
msgid "Show the field in A&U Extended menu"
|
678 |
msgstr "Покажи полето в A&П разширеното меню"
|
679 |
|
680 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:746
|
681 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1172
|
682 |
+
#, fuzzy
|
683 |
+
msgid "Show the field in the search engine"
|
684 |
+
msgstr "Покажи полето при регистрация"
|
685 |
|
686 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
|
687 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1175
|
688 |
+
#, fuzzy
|
689 |
+
msgid "Show the field in the blog"
|
690 |
+
msgstr "Покажи полето при регистрация"
|
691 |
|
692 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:752
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
694 |
+
#, fuzzy
|
695 |
+
msgid "Show the field if the role is at least:"
|
696 |
+
msgstr "Покажи полето при регистрация"
|
|
|
697 |
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:754
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1180
|
700 |
+
msgid "Anonymous"
|
701 |
+
msgstr ""
|
702 |
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
|
704 |
+
msgid "Clear"
|
705 |
+
msgstr "Изчисти"
|
706 |
+
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:813
|
708 |
msgid "Invert selection"
|
709 |
msgstr "Обърни избора"
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:814
|
|
|
|
|
712 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
713 |
msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
|
714 |
|
715 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
716 |
+
msgid "WordPress Fields"
|
717 |
+
msgstr "WordPress полета"
|
718 |
+
|
719 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
|
720 |
+
msgid "None!"
|
721 |
+
msgstr "Няма!"
|
722 |
+
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
724 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1079
|
725 |
msgid "Order"
|
726 |
msgstr "Подреди"
|
727 |
|
728 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1191
|
729 |
msgid "Reset"
|
730 |
msgstr "Отмени"
|
731 |
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1248
|
733 |
+
#, fuzzy
|
734 |
+
msgid "select"
|
735 |
+
msgstr "Изтрий"
|
736 |
+
|
737 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1351
|
738 |
#, php-format
|
739 |
msgid "Users Matching \"%s\""
|
740 |
msgstr "Потребители отговарящи на \"%s\""
|
741 |
|
742 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
743 |
#, fuzzy
|
744 |
msgid "Users Extended List"
|
745 |
msgstr "Разширен списък с Автори & Потребители"
|
746 |
|
747 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
748 |
msgid "Authors & Users Extended List"
|
749 |
msgstr "Разширен списък с Автори & Потребители"
|
750 |
|
751 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
|
752 |
msgid "Search Users"
|
753 |
msgstr "Търсене на потребители"
|
754 |
|
755 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1435
|
756 |
msgid "« Back to All Users"
|
757 |
msgstr "« Назад към Всички потребители"
|
758 |
|
759 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
760 |
#, fuzzy
|
761 |
msgid "Users per page"
|
762 |
msgstr "Таблица с потребителски данни"
|
763 |
|
764 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
765 |
msgid "Apply"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1472
|
770 |
msgid "Username"
|
771 |
msgstr "Потребителско име"
|
772 |
|
773 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
774 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
775 |
msgid "E-mail"
|
776 |
msgstr "E-mail"
|
777 |
|
778 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
|
780 |
msgid "Role"
|
781 |
msgstr "Роля"
|
782 |
|
783 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
785 |
msgid "Posts"
|
786 |
msgstr "Постове"
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1604
|
789 |
msgid "View posts by this author"
|
790 |
msgstr "Виж постовете на този автор"
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1635
|
793 |
#, php-format
|
794 |
msgid "e-mail: %s"
|
795 |
msgstr "e-mail: %s"
|
796 |
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:327
|
798 |
+
#, fuzzy
|
799 |
+
msgid "no fieldset"
|
800 |
+
msgstr "Опции по колекция"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
801 |
|
802 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
803 |
+
#, php-format
|
804 |
+
msgid "File '%s' doesn't exist?"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
808 |
+
msgid "The GD image library is not installed."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
812 |
+
#, php-format
|
813 |
+
msgid "File '%s' is not an image."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
817 |
+
msgid "hasn’t a correct email syntax."
|
818 |
+
msgstr "няма правилен email синтаксис."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
819 |
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
821 |
+
msgid "couldn’t be empty."
|
822 |
+
msgstr "не може да е празно."
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:377
|
825 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:386
|
826 |
+
msgid "isn’t correct"
|
827 |
+
msgstr "не е правилно"
|
828 |
|
829 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
830 |
+
msgid "YES"
|
831 |
+
msgstr "ДА"
|
832 |
|
833 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
834 |
+
msgid "NO"
|
835 |
+
msgstr "НЕ"
|
836 |
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:388
|
838 |
+
msgid "should be"
|
839 |
+
msgstr "трябва да е"
|
840 |
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
842 |
+
msgid "should be an image."
|
843 |
+
msgstr "трябва да е снимка."
|
844 |
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
846 |
+
msgid "couldn’t have size less than"
|
847 |
+
msgstr "не може да е с по-малък размер от"
|
848 |
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
850 |
+
msgid "couldn’t have length less than"
|
851 |
+
msgstr "не може да има по-малка дължина от"
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
854 |
+
msgid "couldn’t have size different than"
|
855 |
+
msgstr "не може да има размер различен от"
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
858 |
+
msgid "couldn’t have length different than"
|
859 |
+
msgstr "не може да има дължина различна от"
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
862 |
+
msgid "couldn’t have size more than"
|
863 |
+
msgstr "не може да има размер по-голям от"
|
864 |
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
866 |
+
msgid "couldn’t have length more than"
|
867 |
+
msgstr "не може да има дължина по-голяма от"
|
868 |
|
869 |
#~ msgid "Disable get_cimyFieldValue function"
|
870 |
#~ msgstr "Изключи функцията get_cimyFieldValue"
|
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: 2009-
|
6 |
-
"PO-Revision-Date: 2009-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,182 +16,351 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
34 |
-
|
35 |
-
|
36 |
-
msgstr "Upload venligst et billede af en af følgende filtyper"
|
37 |
|
38 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
39 |
-
|
40 |
-
|
41 |
-
msgstr "Slet felt"
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
#, fuzzy
|
45 |
-
msgid "
|
46 |
-
msgstr "
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
49 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
55 |
-
|
56 |
-
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:301
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:307
|
59 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:319
|
60 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:325
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:337
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:343
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:419
|
64 |
-
msgid "ERROR"
|
65 |
-
msgstr "FEJL"
|
66 |
|
67 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
|
71 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
72 |
-
msgid "
|
73 |
-
msgstr "
|
74 |
|
75 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
76 |
-
|
77 |
-
|
78 |
-
msgstr "er forkert"
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
81 |
-
|
82 |
-
|
|
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
89 |
-
msgid "
|
90 |
-
msgstr "
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
93 |
-
msgid "
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
107 |
|
108 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
109 |
-
msgid "
|
110 |
-
msgstr "
|
111 |
|
112 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
113 |
-
msgid "
|
114 |
-
msgstr "
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
117 |
-
msgid "
|
118 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
121 |
#, fuzzy
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
130 |
msgid "Password"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
134 |
#, fuzzy
|
135 |
msgid "First name"
|
136 |
msgstr "Vis fornavn"
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
139 |
#, fuzzy
|
140 |
msgid "Last name"
|
141 |
msgstr "Vis Efternavn"
|
142 |
|
143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
144 |
#, fuzzy
|
145 |
msgid "Nickname"
|
146 |
msgstr "Navn"
|
147 |
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
151 |
msgid "Website"
|
152 |
msgstr "Website"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
155 |
msgid "AIM"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
159 |
#, fuzzy
|
160 |
msgid "Yahoo IM"
|
161 |
msgstr "Vis Yahoo IM"
|
162 |
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
164 |
#, fuzzy
|
165 |
msgid "Jabber / Google Talk"
|
166 |
msgstr "Vis Jabber / Google Talk"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
169 |
msgid "Biographical Info"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
175 |
-
msgid "Options"
|
176 |
-
msgstr "Indstillinger"
|
177 |
-
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:612
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:111
|
180 |
msgid "Fields"
|
181 |
msgstr "Felter"
|
182 |
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
185 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
186 |
-
msgid "Authors & Users Extended"
|
187 |
-
msgstr "Bruger liste"
|
188 |
-
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:613
|
190 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:622
|
191 |
msgid "A&U Extended"
|
192 |
msgstr "Bruger liste"
|
193 |
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
195 |
#, fuzzy
|
196 |
msgid "Users Extended"
|
197 |
msgstr "Vis alle brugere"
|
@@ -217,17 +386,17 @@ msgid "Change order"
|
|
217 |
msgstr "Ændre rækkefølge"
|
218 |
|
219 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Min length"
|
222 |
msgstr "Min. længde"
|
223 |
|
224 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
225 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
226 |
msgid "Exact length"
|
227 |
msgstr "Eksakt længde"
|
228 |
|
229 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
231 |
msgid "Max length"
|
232 |
msgstr "Max. længde"
|
233 |
|
@@ -235,593 +404,469 @@ msgstr "Max. længde"
|
|
235 |
msgid "Exact or Max length"
|
236 |
msgstr "Eksakt eller max. længde"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
msgid "changed to"
|
240 |
msgstr "ændret til"
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
243 |
msgid "You cannot give an order that misses some numbers"
|
244 |
msgstr "Ved angivelse af rækkefølge skal hele talrækken med."
|
245 |
|
246 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Nothing selected"
|
249 |
msgstr "Ingenting valgt "
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Field(s)"
|
253 |
msgstr "Felt(er)"
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "deleted correctly"
|
257 |
msgstr "Sletning gennemført"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
261 |
msgid "Min size"
|
262 |
msgstr "Min. størrelse"
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
266 |
msgid "Exact size"
|
267 |
msgstr "Eksakt størrelse"
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
271 |
msgid "Max size"
|
272 |
msgstr "Max. størrelse"
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
275 |
msgid "Exact or Max size"
|
276 |
msgstr "Eksakt eller Max. størrelse"
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
279 |
msgid "Name not specified"
|
280 |
msgstr "Navn ikke angivet"
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
283 |
msgid "Name cannot contains spaces"
|
284 |
msgstr "Navnet må ikke indeholde mellemrum"
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
287 |
msgid "Label not specified"
|
288 |
msgstr "Betegnelse ikke angivet"
|
289 |
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
291 |
msgid "not selected (with this type is necessary)"
|
292 |
msgstr "ikke valgt (kræves ved denne Type)"
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
295 |
msgid "If you select"
|
296 |
msgstr "Ved valg"
|
297 |
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
299 |
msgid "you cannot select Min or Max"
|
300 |
msgstr "Min eller Max kan ikke vælges"
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
303 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
305 |
msgid "should be in the range of"
|
306 |
msgstr "skal angives indenfor følgende talrække"
|
307 |
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Equal TO not specified"
|
311 |
msgstr "LIG MED ikke angivet"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
msgid "With checkbox type Equal TO can only be"
|
315 |
msgstr "Ved 'Type' - 'checkbox' kan LIG MED kun være"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
318 |
msgid "With radio type Equal TO can only be"
|
319 |
msgstr "Ved 'Type' - 'radio' kan LIG MED kun være"
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
322 |
msgid "With checkbox type Value can only be"
|
323 |
msgstr "Ved 'Type' - 'checkbox' kan 'Værdi' kun være"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
326 |
msgid "With radio type Value can only be"
|
327 |
msgstr "Ved 'Type' - 'radio' kan 'Værdi' kun være"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
330 |
msgid "Field inserted correctly"
|
331 |
msgstr "Felt indsat"
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
334 |
msgid "Field #"
|
335 |
msgstr "Felt #"
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
338 |
msgid "updated correctly"
|
339 |
msgstr "Opdatering gennemført"
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
342 |
msgid "Name inserted is just in the database, change to another one"
|
343 |
msgstr "Det valgte navn findes allerede, vælg venligst et andet"
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:411
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:411
|
347 |
-
msgid "Add a new Field"
|
348 |
-
msgstr "Tilføj et nyt felt"
|
349 |
-
|
350 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
352 |
-
|
353 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
357 |
msgstr "For at tilføje et nyt felt kræves angivelse af navn, type og betegnelse; værdi og beskrivelse kan fravælges. Reglerne anvendes under brugerregistrering."
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
360 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
361 |
msgstr "<strong>radio</strong> og <strong>checkbox</strong>: <em>Værdi</em> og <em>LIG MED</em> kan kun have værdierne 'Yes' eller 'No', dvs. valgt eller ikke valgt."
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
365 |
msgstr "<strong>drop-down</strong>: Du skal angive de mulige valgmuligheder under 'betegnelse' i følgende format: Betegnelse/værdi1,værdi2. F. eks.: Køn/mand,kvinde"
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
369 |
msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
373 |
msgstr "<strong>picture-url</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; <em>er LIG MED</em> betegner billedets maksimale pixelbredde (højden reguleres proportionelt)."
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
376 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
377 |
msgstr "<strong>registration-date</strong>: <em>LIG MED</em> henviser til dato- og tidsformat."
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
#, fuzzy
|
381 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
382 |
msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
390 |
msgid "Name"
|
391 |
msgstr "Navn"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
msgid "Value"
|
398 |
msgstr "Værdi"
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
msgid "Type"
|
405 |
msgstr "Type"
|
406 |
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
msgid "Label"
|
412 |
msgstr "Betegnelse"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
418 |
msgid "Description"
|
419 |
msgstr "Beskrivelse"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
423 |
msgid "Rules"
|
424 |
msgstr "Regler"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
428 |
msgid "Actions"
|
429 |
msgstr "Handlinger"
|
430 |
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
432 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
433 |
#, fuzzy
|
434 |
msgid "Fieldset"
|
435 |
msgstr "Felter"
|
436 |
|
437 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
439 |
msgid "Can be empty"
|
440 |
msgstr "Kan være tomt"
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
444 |
msgid "Check for E-mail syntax"
|
445 |
msgstr "Kontroller venligst e-mailadressen"
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
449 |
msgid "Can be modified"
|
450 |
msgstr "Kan ændres"
|
451 |
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
454 |
msgid "Can be modified only if empty"
|
455 |
msgstr "Kan kun ændres hvis feltet er tomt"
|
456 |
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
459 |
msgid "Can be modified only by admin"
|
460 |
msgstr "Kan kun ændres af Administrator"
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
464 |
msgid "Can be modified only by admin or if empty"
|
465 |
msgstr "Kan kun ændres hvis det er tomt"
|
466 |
|
467 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
469 |
msgid "Cannot be modified"
|
470 |
msgstr "Kan ikke ændres"
|
471 |
|
472 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
474 |
msgid "Should be equal TO"
|
475 |
msgstr "Skal være LIG MED"
|
476 |
|
477 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
479 |
msgid "Case sensitive"
|
480 |
msgstr "Forskel på store og små bogstaver"
|
481 |
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
484 |
msgid "Regular Expression"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
msgid "Show the field in the registration"
|
490 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
491 |
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
494 |
msgid "Show the field in User's profile"
|
495 |
msgstr "Vis felt i 'Brugerprofil'"
|
496 |
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
499 |
msgid "Show the field in A&U Extended menu"
|
500 |
msgstr "Vis felt under 'Vis alle brugere'"
|
501 |
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
503 |
-
|
504 |
-
|
|
|
|
|
505 |
|
506 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
507 |
-
|
508 |
-
|
|
|
|
|
509 |
|
510 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
511 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
msgstr "Ekstra felter"
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
518 |
-
|
519 |
-
|
|
|
520 |
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
522 |
-
|
|
|
|
|
|
|
523 |
msgid "Invert selection"
|
524 |
msgstr "Omvend markering"
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1048
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
529 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
530 |
msgstr "Er du sikker på at du vil slette dette/disse felt(er) og al tilknyttet brugerdata?"
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
534 |
msgid "Order"
|
535 |
msgstr "Rækkefølge"
|
536 |
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
538 |
msgid "Reset"
|
539 |
msgstr "Nulstil"
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
542 |
#, php-format
|
543 |
msgid "Users Matching \"%s\""
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
547 |
#, fuzzy
|
548 |
msgid "Users Extended List"
|
549 |
msgstr "Vis alle brugere"
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
552 |
msgid "Authors & Users Extended List"
|
553 |
msgstr "Vis alle brugere"
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
556 |
msgid "Search Users"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
msgid "« Back to All Users"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
#, fuzzy
|
565 |
msgid "Users per page"
|
566 |
msgstr "Tabel for brugerdata"
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
569 |
msgid "Apply"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
574 |
msgid "Username"
|
575 |
msgstr "Brugernavn"
|
576 |
|
577 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
579 |
msgid "E-mail"
|
580 |
msgstr "E-mail"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
#, fuzzy
|
585 |
msgid "Role"
|
586 |
msgstr "Regler"
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
590 |
msgid "Posts"
|
591 |
msgstr "Indlæg"
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
msgid "View posts by this author"
|
595 |
msgstr "Vis denne brugers indlæg"
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
#, php-format
|
599 |
msgid "e-mail: %s"
|
600 |
msgstr "e-mail: %s"
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
607 |
-
msgid "WordPress Fields table deleted"
|
608 |
-
msgstr "WordPress tabel slettet"
|
609 |
-
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
611 |
-
msgid "Extra Fields table emptied"
|
612 |
-
msgstr "Tabel med ekstra felter tømt"
|
613 |
-
|
614 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
615 |
-
msgid "Extra Fields table deleted"
|
616 |
-
msgstr "Tabel med ekstra felter slettet"
|
617 |
-
|
618 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
619 |
-
msgid "Users Data table emptied"
|
620 |
-
msgstr "Tabellen med brugerdata er blevet tømt"
|
621 |
-
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
623 |
-
msgid "Users Data table deleted"
|
624 |
-
msgstr "Tabellen med brugerdata er blevet slettet"
|
625 |
-
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
627 |
-
msgid "Options set to default values"
|
628 |
-
msgstr "Indstillinger nulstillet"
|
629 |
-
|
630 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
631 |
-
msgid "Options deleted"
|
632 |
-
msgstr "Indstillinger slettet"
|
633 |
-
|
634 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
635 |
-
msgid "Options changed"
|
636 |
-
msgstr "Indstillinger ændret"
|
637 |
-
|
638 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
639 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
|
640 |
-
msgid "Save Changes"
|
641 |
-
msgstr ""
|
642 |
-
|
643 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:433
|
644 |
-
msgid "General"
|
645 |
-
msgstr "Generelle indstillinger"
|
646 |
-
|
647 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:441
|
648 |
-
msgid "installed is"
|
649 |
-
msgstr "installeret er"
|
650 |
-
|
651 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
652 |
-
msgid "OPTIONS DELETED!"
|
653 |
-
msgstr "INDSTILLINGER SLETTET!"
|
654 |
-
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
657 |
-
msgid "Fix the problem"
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
661 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
662 |
-
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
663 |
-
msgstr ""
|
664 |
-
|
665 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:451
|
666 |
-
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
667 |
-
msgstr "VERSIONSKONFLIKT! Husk at deaktivere og genaktivere plugin'et efter opdatering!"
|
668 |
-
|
669 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:459
|
670 |
-
msgid "Picture/Avatar upload"
|
671 |
-
msgstr ""
|
672 |
-
|
673 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
674 |
-
msgid "is created and writable"
|
675 |
-
msgstr ""
|
676 |
|
677 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
678 |
-
|
|
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
682 |
-
msgid "
|
683 |
-
msgstr "Database administration"
|
684 |
-
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
687 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:517
|
688 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
689 |
-
msgid "select action"
|
690 |
-
msgstr "Vælg handling"
|
691 |
-
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
693 |
-
msgid "Default values"
|
694 |
-
msgstr "Standard værdier"
|
695 |
-
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
698 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
699 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
700 |
-
msgid "Delete"
|
701 |
-
msgstr "Slet"
|
702 |
-
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:505
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:523
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:541
|
707 |
-
msgid "NOT PRESENT"
|
708 |
-
msgstr "FINDES IKKE"
|
709 |
-
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:491
|
711 |
-
msgid "WordPress Fields table"
|
712 |
-
msgstr "WordPress tabel"
|
713 |
-
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:499
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
716 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:535
|
717 |
-
msgid "Empty"
|
718 |
-
msgstr "Tøm"
|
719 |
-
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:511
|
721 |
-
msgid "Extra Fields table"
|
722 |
-
msgstr "Tabel med ekstra felter"
|
723 |
-
|
724 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:528
|
725 |
-
msgid "Users Data table"
|
726 |
-
msgstr "Tabel for brugerdata"
|
727 |
-
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
729 |
-
msgid "all data inserted by users in all and only extra fields"
|
730 |
-
msgstr "al brugerdata i alle ekstra felter"
|
731 |
-
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
733 |
-
msgid "Force tables creation"
|
734 |
-
msgstr "Gennemtving oprettelse af tabeller"
|
735 |
-
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
737 |
-
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:558
|
745 |
-
#, fuzzy
|
746 |
-
msgid "Extra Fields section title"
|
747 |
-
msgstr "Tabel med ekstra felter"
|
748 |
-
|
749 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
750 |
-
msgid "Fieldset's titles, separates with comma"
|
751 |
-
msgstr "Feltrækkernes titel, adkilt med komma"
|
752 |
-
|
753 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
754 |
-
msgid "example: title1,title2,title3"
|
755 |
-
msgstr "F. eks.: Titel1,Titel2,Titel3"
|
756 |
-
|
757 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
758 |
-
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
762 |
-
msgid "
|
763 |
-
msgstr "
|
764 |
-
|
765 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:578
|
766 |
-
msgid "Hide name field"
|
767 |
-
msgstr "Skjul fornavn"
|
768 |
-
|
769 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:583
|
770 |
-
msgid "Hide email field"
|
771 |
-
msgstr "Skjul e-mailadresse"
|
772 |
-
|
773 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:587
|
774 |
-
#, fuzzy
|
775 |
-
msgid "Hide role field"
|
776 |
-
msgstr "Skjul fornavn"
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
779 |
-
msgid "
|
780 |
-
msgstr "
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
783 |
-
|
784 |
-
|
|
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
787 |
-
msgid "
|
788 |
-
msgstr "
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
791 |
-
msgid "
|
792 |
-
msgstr ""
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
795 |
-
msgid "
|
796 |
-
msgstr "
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
799 |
-
msgid "
|
800 |
-
msgstr "
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
803 |
-
msgid "
|
804 |
-
msgstr "
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
807 |
-
msgid "
|
808 |
-
msgstr "
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
811 |
-
msgid "
|
812 |
-
msgstr "
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
815 |
-
msgid "
|
816 |
-
msgstr "
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
819 |
-
msgid "
|
820 |
-
msgstr "
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
823 |
-
msgid "
|
824 |
-
msgstr ""
|
825 |
|
826 |
#~ msgid "Disable get_cimyFieldValue function"
|
827 |
#~ msgstr "Slå funktionen get_cimyFieldValue fra"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-11-22 23:52+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-11-22 23:52+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:34
|
20 |
+
msgid "WordPress Fields table emptied"
|
21 |
+
msgstr "WordPress tabel tømt"
|
22 |
+
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
24 |
+
msgid "WordPress Fields table deleted"
|
25 |
+
msgstr "WordPress tabel slettet"
|
26 |
+
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
28 |
+
msgid "Extra Fields table emptied"
|
29 |
+
msgstr "Tabel med ekstra felter tømt"
|
30 |
+
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
32 |
+
msgid "Extra Fields table deleted"
|
33 |
+
msgstr "Tabel med ekstra felter slettet"
|
34 |
+
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
36 |
+
msgid "Users Data table emptied"
|
37 |
+
msgstr "Tabellen med brugerdata er blevet tømt"
|
38 |
+
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
40 |
+
msgid "Users Data table deleted"
|
41 |
+
msgstr "Tabellen med brugerdata er blevet slettet"
|
42 |
+
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
44 |
+
msgid "Options set to default values"
|
45 |
+
msgstr "Indstillinger nulstillet"
|
46 |
+
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
48 |
+
msgid "Options deleted"
|
49 |
+
msgstr "Indstillinger slettet"
|
50 |
+
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
52 |
+
msgid "Options changed"
|
53 |
+
msgstr "Indstillinger ændret"
|
54 |
+
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:401
|
56 |
+
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:410
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:476
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:673
|
62 |
+
msgid "Options"
|
63 |
+
msgstr "Indstillinger"
|
64 |
+
|
65 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:430
|
67 |
+
msgid "Add a new Field"
|
68 |
+
msgstr "Tilføj et nyt felt"
|
69 |
+
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
71 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
73 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
|
74 |
+
msgid "Extra Fields"
|
75 |
+
msgstr "Ekstra felter"
|
76 |
+
|
77 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:457
|
79 |
+
msgid "SUCCESSFUL"
|
80 |
+
msgstr "GENNEMFØRT"
|
81 |
+
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:434
|
83 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
84 |
+
msgid "Save Changes"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:435
|
88 |
+
msgid "General"
|
89 |
+
msgstr "Generelle indstillinger"
|
90 |
+
|
91 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:443
|
92 |
+
msgid "installed is"
|
93 |
+
msgstr "installeret er"
|
94 |
+
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:447
|
96 |
+
msgid "OPTIONS DELETED!"
|
97 |
+
msgstr "INDSTILLINGER SLETTET!"
|
98 |
+
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:450
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:455
|
101 |
+
msgid "Fix the problem"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
105 |
+
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
106 |
+
msgstr "VERSIONSKONFLIKT! Husk at deaktivere og genaktivere plugin'et efter opdatering!"
|
|
|
107 |
|
108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
109 |
+
msgid "Picture/Avatar upload"
|
110 |
+
msgstr ""
|
|
|
111 |
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:465
|
113 |
+
msgid "is created and writable"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:467
|
117 |
+
msgid "is NOT created or webserver does NOT have permission to write on it"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:473
|
121 |
+
msgid "Database"
|
122 |
+
msgstr "Database administration"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
125 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
128 |
+
msgid "select action"
|
129 |
+
msgstr "Vælg handling"
|
130 |
+
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
132 |
+
msgid "Default values"
|
133 |
+
msgstr "Standard værdier"
|
134 |
+
|
135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
139 |
+
msgid "Delete"
|
140 |
+
msgstr "Slet"
|
141 |
+
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:488
|
143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:507
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
146 |
+
msgid "NOT PRESENT"
|
147 |
+
msgstr "FINDES IKKE"
|
148 |
+
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:493
|
150 |
+
msgid "WordPress Fields table"
|
151 |
+
msgstr "WordPress tabel"
|
152 |
+
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:501
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:520
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
156 |
+
msgid "Empty"
|
157 |
+
msgstr "Tøm"
|
158 |
+
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:513
|
160 |
+
msgid "Extra Fields table"
|
161 |
+
msgstr "Tabel med ekstra felter"
|
162 |
+
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
164 |
+
msgid "Users Data table"
|
165 |
+
msgstr "Tabel for brugerdata"
|
166 |
+
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
168 |
+
msgid "all data inserted by users in all and only extra fields"
|
169 |
+
msgstr "al brugerdata i alle ekstra felter"
|
170 |
+
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
172 |
+
msgid "Force tables creation"
|
173 |
+
msgstr "Gennemtving oprettelse af tabeller"
|
174 |
+
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
176 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
180 |
+
msgid "User Profile"
|
181 |
+
msgstr "Brugerprofil"
|
182 |
+
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:560
|
184 |
#, fuzzy
|
185 |
+
msgid "Extra Fields section title"
|
186 |
+
msgstr "Tabel med ekstra felter"
|
187 |
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
189 |
+
msgid "Fieldset's titles, separates with comma"
|
190 |
+
msgstr "Feltrækkernes titel, adkilt med komma"
|
191 |
+
|
192 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
193 |
+
msgid "example: title1,title2,title3"
|
194 |
+
msgstr "F. eks.: Titel1,Titel2,Titel3"
|
195 |
+
|
196 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
197 |
+
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
202 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
203 |
+
msgid "Authors & Users Extended"
|
204 |
+
msgstr "Bruger liste"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
207 |
+
msgid "Hide username field"
|
208 |
+
msgstr "Skjul brugernavn"
|
209 |
|
210 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
211 |
+
msgid "Hide name field"
|
212 |
+
msgstr "Skjul fornavn"
|
213 |
|
214 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:585
|
215 |
+
msgid "Hide email field"
|
216 |
+
msgstr "Skjul e-mailadresse"
|
|
|
217 |
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
219 |
+
#, fuzzy
|
220 |
+
msgid "Hide role field"
|
221 |
+
msgstr "Skjul fornavn"
|
222 |
|
223 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
224 |
+
msgid "Hide website field"
|
225 |
+
msgstr "Skjul website"
|
226 |
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
228 |
+
msgid "Hide n. posts field"
|
229 |
+
msgstr "Skjul angivelse af antal af brugerindlæg"
|
230 |
|
231 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:602
|
232 |
+
msgid "WordPress hidden fields"
|
233 |
+
msgstr "Wordpress skjulte felter"
|
234 |
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
236 |
+
msgid "Show password"
|
237 |
+
msgstr ""
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
240 |
+
msgid "Show first name"
|
241 |
+
msgstr "Vis fornavn"
|
242 |
|
243 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
244 |
+
msgid "Show last name"
|
245 |
+
msgstr "Vis Efternavn"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
248 |
+
msgid "Show nickname"
|
249 |
+
msgstr "Vis Kaldenavn"
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
252 |
+
msgid "Show website"
|
253 |
+
msgstr "Website"
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
256 |
+
msgid "Show AIM"
|
257 |
+
msgstr "Vis AIM"
|
258 |
+
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
260 |
+
msgid "Show Yahoo IM"
|
261 |
+
msgstr "Vis Yahoo IM"
|
262 |
+
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:633
|
264 |
+
msgid "Show Jabber / Google Talk"
|
265 |
+
msgstr "Vis Jabber / Google Talk"
|
266 |
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:637
|
268 |
+
msgid "Show Biographical Info"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:292
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:729
|
273 |
#, fuzzy
|
274 |
+
msgid "Please upload a file with one of the following extensions"
|
275 |
+
msgstr "Upload venligst et billede af en af følgende filtyper"
|
276 |
+
|
277 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:298
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:735
|
279 |
+
msgid "Please upload an image with one of the following extensions"
|
280 |
+
msgstr "Upload venligst et billede af en af følgende filtyper"
|
281 |
+
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:422
|
283 |
+
#, fuzzy
|
284 |
+
msgid "Delete the file"
|
285 |
+
msgstr "Slet felt"
|
286 |
+
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:423
|
288 |
+
#, fuzzy
|
289 |
+
msgid "Update the file"
|
290 |
+
msgstr "Opdater felt"
|
291 |
|
292 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:426
|
293 |
+
#, fuzzy
|
294 |
+
msgid "Delete the picture"
|
295 |
+
msgstr "Slet felt"
|
296 |
+
|
297 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:427
|
298 |
+
#, fuzzy
|
299 |
+
msgid "Update the picture"
|
300 |
+
msgstr "Opdater felt"
|
301 |
+
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
303 |
+
msgid "Picture URL:"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:215
|
307 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:222
|
311 |
msgid "Password"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:242
|
315 |
#, fuzzy
|
316 |
msgid "First name"
|
317 |
msgstr "Vis fornavn"
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
|
320 |
#, fuzzy
|
321 |
msgid "Last name"
|
322 |
msgstr "Vis Efternavn"
|
323 |
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:282
|
325 |
#, fuzzy
|
326 |
msgid "Nickname"
|
327 |
msgstr "Navn"
|
328 |
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
332 |
msgid "Website"
|
333 |
msgstr "Website"
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:322
|
336 |
msgid "AIM"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:342
|
340 |
#, fuzzy
|
341 |
msgid "Yahoo IM"
|
342 |
msgstr "Vis Yahoo IM"
|
343 |
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:362
|
345 |
#, fuzzy
|
346 |
msgid "Jabber / Google Talk"
|
347 |
msgstr "Vis Jabber / Google Talk"
|
348 |
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:382
|
350 |
msgid "Biographical Info"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:674
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
|
|
|
|
|
|
|
|
|
|
|
|
355 |
msgid "Fields"
|
356 |
msgstr "Felter"
|
357 |
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
|
|
|
|
|
|
|
|
|
|
|
|
360 |
msgid "A&U Extended"
|
361 |
msgstr "Bruger liste"
|
362 |
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:679
|
364 |
#, fuzzy
|
365 |
msgid "Users Extended"
|
366 |
msgstr "Vis alle brugere"
|
386 |
msgstr "Ændre rækkefølge"
|
387 |
|
388 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
390 |
msgid "Min length"
|
391 |
msgstr "Min. længde"
|
392 |
|
393 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1067
|
395 |
msgid "Exact length"
|
396 |
msgstr "Eksakt længde"
|
397 |
|
398 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
400 |
msgid "Max length"
|
401 |
msgstr "Max. længde"
|
402 |
|
404 |
msgid "Exact or Max length"
|
405 |
msgstr "Eksakt eller max. længde"
|
406 |
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
408 |
msgid "changed to"
|
409 |
msgstr "ændret til"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:124
|
412 |
msgid "You cannot give an order that misses some numbers"
|
413 |
msgstr "Ved angivelse af rækkefølge skal hele talrækken med."
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:127
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:200
|
417 |
msgid "Nothing selected"
|
418 |
msgstr "Ingenting valgt "
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
421 |
msgid "Field(s)"
|
422 |
msgstr "Felt(er)"
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
425 |
msgid "deleted correctly"
|
426 |
msgstr "Sletning gennemført"
|
427 |
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:229
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
430 |
msgid "Min size"
|
431 |
msgstr "Min. størrelse"
|
432 |
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:230
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1059
|
435 |
msgid "Exact size"
|
436 |
msgstr "Eksakt størrelse"
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:231
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
|
440 |
msgid "Max size"
|
441 |
msgstr "Max. størrelse"
|
442 |
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:233
|
444 |
msgid "Exact or Max size"
|
445 |
msgstr "Eksakt eller Max. størrelse"
|
446 |
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
448 |
msgid "Name not specified"
|
449 |
msgstr "Navn ikke angivet"
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
452 |
msgid "Name cannot contains spaces"
|
453 |
msgstr "Navnet må ikke indeholde mellemrum"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
456 |
msgid "Label not specified"
|
457 |
msgstr "Betegnelse ikke angivet"
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
460 |
msgid "not selected (with this type is necessary)"
|
461 |
msgstr "ikke valgt (kræves ved denne Type)"
|
462 |
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
464 |
msgid "If you select"
|
465 |
msgstr "Ved valg"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
468 |
msgid "you cannot select Min or Max"
|
469 |
msgstr "Min eller Max kan ikke vælges"
|
470 |
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
472 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
474 |
msgid "should be in the range of"
|
475 |
msgstr "skal angives indenfor følgende talrække"
|
476 |
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
478 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:328
|
479 |
msgid "Equal TO not specified"
|
480 |
msgstr "LIG MED ikke angivet"
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
|
483 |
msgid "With checkbox type Equal TO can only be"
|
484 |
msgstr "Ved 'Type' - 'checkbox' kan LIG MED kun være"
|
485 |
|
486 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:334
|
487 |
msgid "With radio type Equal TO can only be"
|
488 |
msgstr "Ved 'Type' - 'radio' kan LIG MED kun være"
|
489 |
|
490 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:350
|
491 |
msgid "With checkbox type Value can only be"
|
492 |
msgstr "Ved 'Type' - 'checkbox' kan 'Værdi' kun være"
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:353
|
495 |
msgid "With radio type Value can only be"
|
496 |
msgstr "Ved 'Type' - 'radio' kan 'Værdi' kun være"
|
497 |
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
|
499 |
msgid "Field inserted correctly"
|
500 |
msgstr "Felt indsat"
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
503 |
msgid "Field #"
|
504 |
msgstr "Felt #"
|
505 |
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
507 |
msgid "updated correctly"
|
508 |
msgstr "Opdatering gennemført"
|
509 |
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:415
|
511 |
msgid "Name inserted is just in the database, change to another one"
|
512 |
msgstr "Det valgte navn findes allerede, vælg venligst et andet"
|
513 |
|
|
|
|
|
|
|
|
|
|
|
514 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:378
|
518 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:390
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
526 |
+
msgid "ERROR"
|
527 |
+
msgstr "FEJL"
|
528 |
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
530 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
531 |
msgstr "For at tilføje et nyt felt kræves angivelse af navn, type og betegnelse; værdi og beskrivelse kan fravælges. Reglerne anvendes under brugerregistrering."
|
532 |
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
|
534 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
535 |
msgstr "<strong>radio</strong> og <strong>checkbox</strong>: <em>Værdi</em> og <em>LIG MED</em> kan kun have værdierne 'Yes' eller 'No', dvs. valgt eller ikke valgt."
|
536 |
|
537 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
538 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
539 |
msgstr "<strong>drop-down</strong>: Du skal angive de mulige valgmuligheder under 'betegnelse' i følgende format: Betegnelse/værdi1,værdi2. F. eks.: Køn/mand,kvinde"
|
540 |
|
541 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
|
542 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
543 |
msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
|
544 |
|
545 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
546 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
547 |
msgstr "<strong>picture-url</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; <em>er LIG MED</em> betegner billedets maksimale pixelbredde (højden reguleres proportionelt)."
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
|
550 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
551 |
msgstr "<strong>registration-date</strong>: <em>LIG MED</em> henviser til dato- og tidsformat."
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
554 |
#, fuzzy
|
555 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
556 |
msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
559 |
+
#, fuzzy
|
560 |
+
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
561 |
+
msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
|
562 |
+
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1477
|
569 |
msgid "Name"
|
570 |
msgstr "Navn"
|
571 |
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1094
|
576 |
msgid "Value"
|
577 |
msgstr "Værdi"
|
578 |
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
583 |
msgid "Type"
|
584 |
msgstr "Type"
|
585 |
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
590 |
msgid "Label"
|
591 |
msgstr "Betegnelse"
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
597 |
msgid "Description"
|
598 |
msgstr "Beskrivelse"
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:851
|
602 |
msgid "Rules"
|
603 |
msgstr "Regler"
|
604 |
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:852
|
607 |
msgid "Actions"
|
608 |
msgstr "Handlinger"
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1113
|
612 |
#, fuzzy
|
613 |
msgid "Fieldset"
|
614 |
msgstr "Felter"
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:713
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1136
|
618 |
msgid "Can be empty"
|
619 |
msgstr "Kan være tomt"
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1137
|
623 |
msgid "Check for E-mail syntax"
|
624 |
msgstr "Kontroller venligst e-mailadressen"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
628 |
msgid "Can be modified"
|
629 |
msgstr "Kan ændres"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:718
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
633 |
msgid "Can be modified only if empty"
|
634 |
msgstr "Kan kun ændres hvis feltet er tomt"
|
635 |
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
638 |
msgid "Can be modified only by admin"
|
639 |
msgstr "Kan kun ændres af Administrator"
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
643 |
msgid "Can be modified only by admin or if empty"
|
644 |
msgstr "Kan kun ændres hvis det er tomt"
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:721
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1144
|
648 |
msgid "Cannot be modified"
|
649 |
msgstr "Kan ikke ændres"
|
650 |
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
652 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
653 |
msgid "Should be equal TO"
|
654 |
msgstr "Skal være LIG MED"
|
655 |
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
657 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
658 |
msgid "Case sensitive"
|
659 |
msgstr "Forskel på store og små bogstaver"
|
660 |
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:734
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
663 |
msgid "Regular Expression"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:737
|
667 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1157
|
668 |
msgid "Show the field in the registration"
|
669 |
msgstr "Vis felt i forbindelse med brugerregistrering"
|
670 |
|
671 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:740
|
672 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1160
|
673 |
msgid "Show the field in User's profile"
|
674 |
msgstr "Vis felt i 'Brugerprofil'"
|
675 |
|
676 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
677 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1169
|
678 |
msgid "Show the field in A&U Extended menu"
|
679 |
msgstr "Vis felt under 'Vis alle brugere'"
|
680 |
|
681 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:746
|
682 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1172
|
683 |
+
#, fuzzy
|
684 |
+
msgid "Show the field in the search engine"
|
685 |
+
msgstr "Vis felt i forbindelse med brugerregistrering"
|
686 |
|
687 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
|
688 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1175
|
689 |
+
#, fuzzy
|
690 |
+
msgid "Show the field in the blog"
|
691 |
+
msgstr "Vis felt i forbindelse med brugerregistrering"
|
692 |
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:752
|
694 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
695 |
+
#, fuzzy
|
696 |
+
msgid "Show the field if the role is at least:"
|
697 |
+
msgstr "Vis felt i forbindelse med brugerregistrering"
|
|
|
698 |
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:754
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1180
|
701 |
+
msgid "Anonymous"
|
702 |
+
msgstr ""
|
703 |
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
|
705 |
+
msgid "Clear"
|
706 |
+
msgstr "Slet"
|
707 |
+
|
708 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:813
|
709 |
msgid "Invert selection"
|
710 |
msgstr "Omvend markering"
|
711 |
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:814
|
|
|
|
|
713 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
714 |
msgstr "Er du sikker på at du vil slette dette/disse felt(er) og al tilknyttet brugerdata?"
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
717 |
+
msgid "WordPress Fields"
|
718 |
+
msgstr "WordPress felter"
|
719 |
+
|
720 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
|
721 |
+
msgid "None!"
|
722 |
+
msgstr "Ingen!"
|
723 |
+
|
724 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
725 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1079
|
726 |
msgid "Order"
|
727 |
msgstr "Rækkefølge"
|
728 |
|
729 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1191
|
730 |
msgid "Reset"
|
731 |
msgstr "Nulstil"
|
732 |
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1248
|
734 |
+
#, fuzzy
|
735 |
+
msgid "select"
|
736 |
+
msgstr "Slet"
|
737 |
+
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1351
|
739 |
#, php-format
|
740 |
msgid "Users Matching \"%s\""
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
744 |
#, fuzzy
|
745 |
msgid "Users Extended List"
|
746 |
msgstr "Vis alle brugere"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
749 |
msgid "Authors & Users Extended List"
|
750 |
msgstr "Vis alle brugere"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
|
753 |
msgid "Search Users"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1435
|
757 |
msgid "« Back to All Users"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
761 |
#, fuzzy
|
762 |
msgid "Users per page"
|
763 |
msgstr "Tabel for brugerdata"
|
764 |
|
765 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
766 |
msgid "Apply"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
770 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1472
|
771 |
msgid "Username"
|
772 |
msgstr "Brugernavn"
|
773 |
|
774 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
776 |
msgid "E-mail"
|
777 |
msgstr "E-mail"
|
778 |
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
|
781 |
#, fuzzy
|
782 |
msgid "Role"
|
783 |
msgstr "Regler"
|
784 |
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
786 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
787 |
msgid "Posts"
|
788 |
msgstr "Indlæg"
|
789 |
|
790 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1604
|
791 |
msgid "View posts by this author"
|
792 |
msgstr "Vis denne brugers indlæg"
|
793 |
|
794 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1635
|
795 |
#, php-format
|
796 |
msgid "e-mail: %s"
|
797 |
msgstr "e-mail: %s"
|
798 |
|
799 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:327
|
800 |
+
#, fuzzy
|
801 |
+
msgid "no fieldset"
|
802 |
+
msgstr "Objekter pr. feltrække"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
805 |
+
#, php-format
|
806 |
+
msgid "File '%s' doesn't exist?"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
810 |
+
msgid "The GD image library is not installed."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
814 |
+
#, php-format
|
815 |
+
msgid "File '%s' is not an image."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
819 |
+
msgid "hasn’t a correct email syntax."
|
820 |
+
msgstr "E-mail adresse angivet forkert. "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
821 |
|
822 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
823 |
+
msgid "couldn’t be empty."
|
824 |
+
msgstr "Må ikke være tomt."
|
825 |
|
826 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:377
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:386
|
828 |
+
msgid "isn’t correct"
|
829 |
+
msgstr "er forkert"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
832 |
+
msgid "YES"
|
833 |
+
msgstr "JA"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
836 |
+
msgid "NO"
|
837 |
+
msgstr "NEJ"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:388
|
840 |
+
msgid "should be"
|
841 |
+
msgstr "skulle være"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
844 |
+
msgid "should be an image."
|
845 |
+
msgstr "burde være et billede."
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
848 |
+
msgid "couldn’t have size less than"
|
849 |
+
msgstr "Størrelse må ikke være mindre end"
|
850 |
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
852 |
+
msgid "couldn’t have length less than"
|
853 |
+
msgstr "Længden må ikke være mindre end"
|
854 |
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
856 |
+
msgid "couldn’t have size different than"
|
857 |
+
msgstr "Størrelse må ikke afvige fra"
|
858 |
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
860 |
+
msgid "couldn’t have length different than"
|
861 |
+
msgstr "Længde må ikke afvige fra"
|
862 |
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
864 |
+
msgid "couldn’t have size more than"
|
865 |
+
msgstr "Størrelse må ikke overstige"
|
866 |
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
868 |
+
msgid "couldn’t have length more than"
|
869 |
+
msgstr "Længde må ikke overstige"
|
870 |
|
871 |
#~ msgid "Disable get_cimyFieldValue function"
|
872 |
#~ msgstr "Slå funktionen get_cimyFieldValue fra"
|
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: 2009-
|
6 |
-
"PO-Revision-Date: 2009-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,175 +16,342 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
20 |
-
|
21 |
-
|
22 |
-
msgstr "Datei '%s' existieren nicht?"
|
23 |
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
25 |
-
msgid "
|
26 |
-
msgstr "
|
27 |
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
29 |
-
|
30 |
-
|
31 |
-
msgstr "Datei '%s' muss Bild-Datei sein"
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
34 |
-
|
35 |
-
|
36 |
-
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
37 |
|
38 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
|
42 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
43 |
-
msgid "
|
44 |
-
msgstr "
|
45 |
|
46 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
47 |
-
msgid "
|
48 |
-
msgstr "
|
49 |
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
51 |
-
|
52 |
-
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:283
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:290
|
55 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:301
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:307
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:319
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:325
|
59 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:337
|
60 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:343
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:419
|
62 |
-
msgid "ERROR"
|
63 |
-
msgstr "FEHLER"
|
64 |
|
65 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
66 |
-
msgid "
|
67 |
-
msgstr "
|
68 |
|
69 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
70 |
-
msgid "
|
71 |
-
msgstr "
|
72 |
|
73 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
74 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
75 |
-
|
76 |
-
|
|
|
77 |
|
78 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
79 |
-
|
80 |
-
|
|
|
81 |
|
82 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
83 |
-
|
84 |
-
|
|
|
|
|
|
|
85 |
|
86 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
87 |
-
|
88 |
-
|
|
|
89 |
|
90 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
91 |
-
|
92 |
-
|
|
|
93 |
|
94 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
95 |
-
msgid "
|
96 |
-
msgstr "
|
97 |
|
98 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
99 |
-
msgid "
|
100 |
-
msgstr "
|
101 |
|
102 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
103 |
-
msgid "
|
104 |
-
msgstr "
|
105 |
|
106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
107 |
-
|
108 |
-
|
|
|
109 |
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
111 |
-
msgid "
|
112 |
-
msgstr "
|
113 |
|
114 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
115 |
-
msgid "
|
116 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
#, fuzzy
|
120 |
-
msgid "
|
121 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
122 |
|
123 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
125 |
msgstr "<strong>Anm.:</strong> Diese Webseite lässt Sie Ihr Passwort frei wählen. Nach der Registrierung erhalten Sie eine E-Mail mit einem anderen Passwort. Bitte löschen Sie diese ungesehen."
|
126 |
|
127 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
128 |
msgid "Password"
|
129 |
msgstr "Passwort"
|
130 |
|
131 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
132 |
msgid "First name"
|
133 |
msgstr "Vorname"
|
134 |
|
135 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
136 |
msgid "Last name"
|
137 |
msgstr "Nachname"
|
138 |
|
139 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
140 |
msgid "Nickname"
|
141 |
msgstr "Spitzname"
|
142 |
|
143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
144 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
145 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
146 |
msgid "Website"
|
147 |
msgstr "Webseite"
|
148 |
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
150 |
msgid "AIM"
|
151 |
msgstr "AIM"
|
152 |
|
153 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
154 |
msgid "Yahoo IM"
|
155 |
msgstr "Yahoo IM"
|
156 |
|
157 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
158 |
msgid "Jabber / Google Talk"
|
159 |
msgstr "Jabber / Google Talk"
|
160 |
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
162 |
msgid "Biographical Info"
|
163 |
msgstr "Weitere Informationen"
|
164 |
|
165 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
166 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
167 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
168 |
-
msgid "Options"
|
169 |
-
msgstr "Einstellungen"
|
170 |
-
|
171 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:612
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:111
|
173 |
msgid "Fields"
|
174 |
msgstr "Felder"
|
175 |
|
176 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
177 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
179 |
-
msgid "Authors & Users Extended"
|
180 |
-
msgstr "\"Autoren & Benutzer\" erweitert"
|
181 |
-
|
182 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:613
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:622
|
184 |
msgid "A&U Extended"
|
185 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
186 |
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
188 |
#, fuzzy
|
189 |
msgid "Users Extended"
|
190 |
msgstr "Liste aller \"Benutzer\""
|
@@ -210,17 +377,17 @@ msgid "Change order"
|
|
210 |
msgstr "Reihenfolge ändern "
|
211 |
|
212 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
213 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
214 |
msgid "Min length"
|
215 |
msgstr "Minimale Länge"
|
216 |
|
217 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
218 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
219 |
msgid "Exact length"
|
220 |
msgstr "Exakte Länge"
|
221 |
|
222 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
223 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
224 |
msgid "Max length"
|
225 |
msgstr "Maximale Länge"
|
226 |
|
@@ -228,588 +395,466 @@ msgstr "Maximale Länge"
|
|
228 |
msgid "Exact or Max length"
|
229 |
msgstr "Exakte oder maximale Länge"
|
230 |
|
231 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
232 |
msgid "changed to"
|
233 |
msgstr "geändert in"
|
234 |
|
235 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
236 |
msgid "You cannot give an order that misses some numbers"
|
237 |
msgstr "Die Ordnungnummern müssen fortlaufen & durchgängig sein."
|
238 |
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
240 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
241 |
msgid "Nothing selected"
|
242 |
msgstr "Nichts ausgewählt"
|
243 |
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
245 |
msgid "Field(s)"
|
246 |
msgstr "Feld(er)"
|
247 |
|
248 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
249 |
msgid "deleted correctly"
|
250 |
msgstr "erfolgreich gelöscht"
|
251 |
|
252 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
253 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
254 |
msgid "Min size"
|
255 |
msgstr "Minimale Größe"
|
256 |
|
257 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
258 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
259 |
msgid "Exact size"
|
260 |
msgstr "Exakte Größe"
|
261 |
|
262 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
263 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
264 |
msgid "Max size"
|
265 |
msgstr "Maximale Größe"
|
266 |
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
268 |
msgid "Exact or Max size"
|
269 |
msgstr "Exakte oder maximale Größe"
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
msgid "Name not specified"
|
273 |
msgstr "Name nicht ausgefüllt"
|
274 |
|
275 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
276 |
msgid "Name cannot contains spaces"
|
277 |
msgstr "Der Name darf keine Leerstellen enthalten."
|
278 |
|
279 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
280 |
msgid "Label not specified"
|
281 |
msgstr "\"label\"/Feld-Titel nicht ausgefüllt"
|
282 |
|
283 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
284 |
msgid "not selected (with this type is necessary)"
|
285 |
msgstr "nicht ausgewählt (für diesen Typ notwendig)"
|
286 |
|
287 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
288 |
msgid "If you select"
|
289 |
msgstr "Wenn Sie folgendes auswählen"
|
290 |
|
291 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
292 |
msgid "you cannot select Min or Max"
|
293 |
msgstr "Sie dürfen \"Min\" oder \"Max\" nicht festlegen"
|
294 |
|
295 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
296 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
297 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
298 |
msgid "should be in the range of"
|
299 |
msgstr "sollte im Bereich sein (von/bis)"
|
300 |
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
303 |
msgid "Equal TO not specified"
|
304 |
msgstr "ENTSPRICHT (equal TO) nicht spezifiziert"
|
305 |
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
307 |
msgid "With checkbox type Equal TO can only be"
|
308 |
msgstr "Beim Typ <strong>checkbox</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
309 |
|
310 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
311 |
msgid "With radio type Equal TO can only be"
|
312 |
msgstr "Beim Typ <strong>radio</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
313 |
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
315 |
msgid "With checkbox type Value can only be"
|
316 |
msgstr "Beim Typ <strong>checkbox</strong> kann der Wert/$value nur folgendes sein"
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
319 |
msgid "With radio type Value can only be"
|
320 |
msgstr "Beim Typ <strong>radio</strong> kann der Wert/$value nur folgendes sein"
|
321 |
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
323 |
msgid "Field inserted correctly"
|
324 |
msgstr "Feld richtig eingefügt."
|
325 |
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
327 |
msgid "Field #"
|
328 |
msgstr "Feld #"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
331 |
msgid "updated correctly"
|
332 |
msgstr "Update erfolgreich"
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
335 |
msgid "Name inserted is just in the database, change to another one"
|
336 |
msgstr "Dieser Name ist in der Datenbank bereits vorhanden, bitte wähle einen anderen"
|
337 |
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:411
|
339 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:411
|
340 |
-
msgid "Add a new Field"
|
341 |
-
msgstr "Ein neues Feld hinzufügen"
|
342 |
-
|
343 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
344 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
345 |
-
|
346 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
|
348 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
349 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
350 |
msgstr "Um ein neues Feld hinzuzufügen, musst Du einen Namen, einen Typ und eine Bezeichnung/\"label\" angeben. Wert/$value und Beschreibung sind optional. Die Regeln werden bei der User-Registrierung angewandt."
|
351 |
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
354 |
msgstr "Bei <strong>radio</strong> und <strong>checkbox</strong> gilt: <em>Wert/$value</em> und <em>ENTSRPICHT(equal TO)</em> können nur \"Yes\" oder \"No\" beinhalten, was \"ausgewählt\" oder \"nicht ausgewählt\" bedeutet."
|
355 |
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
358 |
msgstr "Bei <strong>drop-down</strong> gilt: Du musst alle möglichen Werte in das Feld Bezeichnung/\"label\" schreiben. Beispiel: Bezeichnung/Wert1,Wert2. Pseudocode: Benutzerdefinierter Schlüssel/Wert,Wert; Code: $key/$value,$value; Spezifiziertes Beispiel: Geschlecht/männlich,weiblich"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
361 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
362 |
msgstr "Bei <strong>picture</strong> gilt: Du kannst ein Bild hochladen, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT(equal TO)</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
|
363 |
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
366 |
msgstr "Bei <strong>picture-url</strong> gilt: Du kannst ein Bild einstellen, indem Du die Bildadresse (Url) in <em>Wert/$value</em> eingibst; <em>ENTSPRICHT(equal TO)</em> meint die maximale Breite in Pixel (die Höhe wird proportional angepasst)."
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
369 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
370 |
msgstr "Bei <strong>registration-date</strong> gilt: <em>ENTSRPICHT(equal TO)</em> meint das Format für Datum und Zeit."
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
373 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
374 |
msgstr "Für <strong>Avatar</strong>: Du kannst einen Standardavatar laden, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
|
375 |
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
382 |
msgid "Name"
|
383 |
msgstr "Name"
|
384 |
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
387 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
389 |
msgid "Value"
|
390 |
msgstr "Wert/$value"
|
391 |
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
396 |
msgid "Type"
|
397 |
msgstr "Typ"
|
398 |
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
msgid "Label"
|
404 |
msgstr "Bezeichnung/\"label\""
|
405 |
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
msgid "Description"
|
411 |
msgstr "Beschreibung"
|
412 |
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
msgid "Rules"
|
416 |
msgstr "Regeln"
|
417 |
|
418 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
419 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
420 |
msgid "Actions"
|
421 |
msgstr "Aktion"
|
422 |
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
424 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
425 |
#, fuzzy
|
426 |
msgid "Fieldset"
|
427 |
msgstr "Felder"
|
428 |
|
429 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
430 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
431 |
msgid "Can be empty"
|
432 |
msgstr "Kann leer sein"
|
433 |
|
434 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
435 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
436 |
msgid "Check for E-mail syntax"
|
437 |
msgstr "Kontrollieren Sie bitte die E-Mail-Syntax"
|
438 |
|
439 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
440 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
441 |
msgid "Can be modified"
|
442 |
msgstr "Änderung des Feldes möglich"
|
443 |
|
444 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
445 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
446 |
msgid "Can be modified only if empty"
|
447 |
msgstr "Änderung des Feldes möglich wenn leer"
|
448 |
|
449 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
450 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
451 |
msgid "Can be modified only by admin"
|
452 |
msgstr "Änderung des Feldes nur durch Admin möglich"
|
453 |
|
454 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
455 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
456 |
msgid "Can be modified only by admin or if empty"
|
457 |
msgstr "Änderung des Feldes nur durch Admin, oder wenn leer"
|
458 |
|
459 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
460 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
461 |
msgid "Cannot be modified"
|
462 |
msgstr "Änderung des Feldes nicht möglich"
|
463 |
|
464 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
465 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
466 |
msgid "Should be equal TO"
|
467 |
msgstr "ENTSPRICHT (equal TO) folgendem"
|
468 |
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
470 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
471 |
msgid "Case sensitive"
|
472 |
msgstr "Groß-/Kleinschreibung beachten"
|
473 |
|
474 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
475 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
476 |
msgid "Regular Expression"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
480 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
481 |
msgid "Show the field in the registration"
|
482 |
msgstr "Zeige das Feld bei der Registrierung"
|
483 |
|
484 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
485 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
486 |
msgid "Show the field in User's profile"
|
487 |
msgstr "Zeige das Feld im \"Benutzer\"profil"
|
488 |
|
489 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
490 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
491 |
msgid "Show the field in A&U Extended menu"
|
492 |
msgstr "Zeige das Feld in der \"Liste aller Benutzer\""
|
493 |
|
494 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
495 |
-
|
496 |
-
|
|
|
|
|
497 |
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
499 |
-
|
500 |
-
|
|
|
|
|
501 |
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
msgstr "Benutzerdefinierte Felder"
|
508 |
|
509 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
510 |
-
|
511 |
-
|
|
|
512 |
|
513 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
514 |
-
|
|
|
|
|
|
|
515 |
msgid "Invert selection"
|
516 |
msgstr "Auswahl umkehren"
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
519 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1048
|
520 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
521 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
522 |
msgstr "Bist Du sicher, dass du diese(s) Feld(er) und alle Daten, die von \"Benutzer\"n angelegt wurden, löschen möchtest?"
|
523 |
|
524 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
525 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
526 |
msgid "Order"
|
527 |
msgstr "Reihenfolge"
|
528 |
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
530 |
msgid "Reset"
|
531 |
msgstr "Reset"
|
532 |
|
533 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
534 |
#, php-format
|
535 |
msgid "Users Matching \"%s\""
|
536 |
msgstr "Benutzer Matching \"%s\""
|
537 |
|
538 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
539 |
#, fuzzy
|
540 |
msgid "Users Extended List"
|
541 |
msgstr "Liste aller \"Benutzer\""
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
544 |
msgid "Authors & Users Extended List"
|
545 |
msgstr "Liste aller \"Benutzer\""
|
546 |
|
547 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
548 |
msgid "Search Users"
|
549 |
msgstr "Suche \"Benutzer\""
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
552 |
msgid "« Back to All Users"
|
553 |
msgstr "« Zurück zu \"Alle Benutzer\""
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
556 |
msgid "Users per page"
|
557 |
msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
|
558 |
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
msgid "Apply"
|
561 |
msgstr "anwenden"
|
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 "Username"
|
566 |
msgstr "\"Benutzer\"name"
|
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 "E-mail"
|
571 |
msgstr "E-Mail"
|
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_admin.php:
|
575 |
msgid "Role"
|
576 |
msgstr "\"Benutzer\"-Rollen"
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
580 |
msgid "Posts"
|
581 |
msgstr "Artikel"
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
msgid "View posts by this author"
|
585 |
msgstr "Zeige Artikel dieses Autors"
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
#, php-format
|
589 |
msgid "e-mail: %s"
|
590 |
msgstr "E-Mail: %s"
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
597 |
-
msgid "WordPress Fields table deleted"
|
598 |
-
msgstr "WP-Datenbank-Tabelle Zusatzfelder gelöscht"
|
599 |
-
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
601 |
-
msgid "Extra Fields table emptied"
|
602 |
-
msgstr "Tabelle \"Benutzerdefinierte Felder\" geleert"
|
603 |
-
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
605 |
-
msgid "Extra Fields table deleted"
|
606 |
-
msgstr "Tabelle \"Benutzerdefinierte Felder\" gelöscht"
|
607 |
-
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
609 |
-
msgid "Users Data table emptied"
|
610 |
-
msgstr "Tabelle \"Benutzerdaten\" geleert"
|
611 |
-
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
613 |
-
msgid "Users Data table deleted"
|
614 |
-
msgstr "Tabelle \"Benutzerdaten\" gelöscht"
|
615 |
-
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
617 |
-
msgid "Options set to default values"
|
618 |
-
msgstr "Einstellungen auf Grundeinstellungen zurück gesetzt"
|
619 |
-
|
620 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
621 |
-
msgid "Options deleted"
|
622 |
-
msgstr "Einstellungen gelöscht"
|
623 |
-
|
624 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
625 |
-
msgid "Options changed"
|
626 |
-
msgstr "Einstellungen aktualisiert"
|
627 |
-
|
628 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
629 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
|
630 |
-
msgid "Save Changes"
|
631 |
-
msgstr "Einstellungen aktualisieren"
|
632 |
-
|
633 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:433
|
634 |
-
msgid "General"
|
635 |
-
msgstr "Allgemein"
|
636 |
-
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:441
|
638 |
-
msgid "installed is"
|
639 |
-
msgstr "installiert ist"
|
640 |
-
|
641 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
642 |
-
msgid "OPTIONS DELETED!"
|
643 |
-
msgstr "EINSTELLUNGEN GELÖSCHT!"
|
644 |
-
|
645 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
646 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
647 |
-
msgid "Fix the problem"
|
648 |
-
msgstr ""
|
649 |
-
|
650 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
651 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
652 |
-
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
653 |
-
msgstr ""
|
654 |
-
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:451
|
656 |
-
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
657 |
-
msgstr "VERSIONEN NICHT KOMPATIBEL! Du hast das Plugin nach dem Update nicht deaktiviert und anschließend reaktiviert. Das könnte Probleme geben..."
|
658 |
-
|
659 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:459
|
660 |
-
msgid "Picture/Avatar upload"
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
664 |
-
msgid "is created and writable"
|
665 |
-
msgstr ""
|
666 |
-
|
667 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:465
|
668 |
-
msgid "is NOT created or webserver does NOT have permission to write on it"
|
669 |
-
msgstr ""
|
670 |
-
|
671 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:471
|
672 |
-
msgid "Database"
|
673 |
-
msgstr "Datenbank"
|
674 |
-
|
675 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
676 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
677 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:517
|
678 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
679 |
-
msgid "select action"
|
680 |
-
msgstr "Wähle Aktion"
|
681 |
-
|
682 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
683 |
-
msgid "Default values"
|
684 |
-
msgstr "Werte: Grundeinstellung"
|
685 |
-
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
687 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
688 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
689 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
690 |
-
msgid "Delete"
|
691 |
-
msgstr "Löschen"
|
692 |
-
|
693 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
694 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:505
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:523
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:541
|
697 |
-
msgid "NOT PRESENT"
|
698 |
-
msgstr "NICHT VORHANDEN"
|
699 |
-
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:491
|
701 |
-
msgid "WordPress Fields table"
|
702 |
-
msgstr "WP-Datenbank-Tabelle"
|
703 |
-
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:499
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:535
|
707 |
-
msgid "Empty"
|
708 |
-
msgstr "Leer"
|
709 |
-
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:511
|
711 |
-
msgid "Extra Fields table"
|
712 |
-
msgstr "Tabelle \"Benutzerdefinierte Felder\""
|
713 |
-
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:528
|
715 |
-
msgid "Users Data table"
|
716 |
-
msgstr "Tabelle \"Benutzerdaten\""
|
717 |
-
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
719 |
-
msgid "all data inserted by users in all and only extra fields"
|
720 |
-
msgstr "alle von \"Benutzern\" in die Cimy-Zusatzfelder eingetragenen Daten"
|
721 |
-
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
723 |
-
msgid "Force tables creation"
|
724 |
-
msgstr "Erzwingt die Erstellung der Datenbanktabellen"
|
725 |
-
|
726 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
727 |
-
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
728 |
-
msgstr "Achtung: Mit dieser Einstellung zwingen Sie das PlugIn die Datenbanktabellen zu erstellen. Dieser Schritt wird auch bei (De-)Aktivierung des PlugIns durchgeführt."
|
729 |
-
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
731 |
-
msgid "User Profile"
|
732 |
-
msgstr "\"Benutzer\" Profil"
|
733 |
-
|
734 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:558
|
735 |
-
msgid "Extra Fields section title"
|
736 |
-
msgstr "Titel für \"Benutzerdefinierte Felder\""
|
737 |
-
|
738 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
739 |
-
msgid "Fieldset's titles, separates with comma"
|
740 |
-
msgstr "Titel des Abschnitts der \"Benutzerdefinierten Felder\", abgetrennt durch Kommata (',')"
|
741 |
-
|
742 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
743 |
-
msgid "example: title1,title2,title3"
|
744 |
-
msgstr "Beispiel: Titel1, Titel2, Titel3"
|
745 |
-
|
746 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
747 |
-
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
748 |
-
msgstr ""
|
749 |
|
750 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
751 |
-
|
752 |
-
|
|
|
753 |
|
754 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
755 |
-
msgid "
|
756 |
-
msgstr "
|
757 |
|
758 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
759 |
-
|
760 |
-
|
|
|
761 |
|
762 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
763 |
-
msgid "
|
764 |
-
msgstr "
|
765 |
|
766 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
767 |
-
msgid "
|
768 |
-
msgstr "
|
769 |
|
770 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
771 |
-
|
772 |
-
|
|
|
773 |
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
775 |
-
msgid "
|
776 |
-
msgstr "
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
779 |
-
msgid "
|
780 |
-
msgstr "
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
783 |
-
msgid "
|
784 |
-
msgstr "
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
787 |
-
msgid "
|
788 |
-
msgstr "
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
791 |
-
msgid "
|
792 |
-
msgstr "
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
795 |
-
msgid "
|
796 |
-
msgstr "
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
799 |
-
msgid "
|
800 |
-
msgstr "
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
803 |
-
msgid "
|
804 |
-
msgstr "
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
807 |
-
msgid "
|
808 |
-
msgstr "
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
811 |
-
msgid "
|
812 |
-
msgstr "
|
813 |
|
814 |
#, fuzzy
|
815 |
#~ msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-11-22 23:52+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-11-22 23:52+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:34
|
20 |
+
msgid "WordPress Fields table emptied"
|
21 |
+
msgstr "WP-Datenbank-Tabelle Zusatzfelder geleert"
|
|
|
22 |
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
24 |
+
msgid "WordPress Fields table deleted"
|
25 |
+
msgstr "WP-Datenbank-Tabelle Zusatzfelder gelöscht"
|
26 |
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
28 |
+
msgid "Extra Fields table emptied"
|
29 |
+
msgstr "Tabelle \"Benutzerdefinierte Felder\" geleert"
|
|
|
30 |
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
32 |
+
msgid "Extra Fields table deleted"
|
33 |
+
msgstr "Tabelle \"Benutzerdefinierte Felder\" gelöscht"
|
|
|
34 |
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
36 |
+
msgid "Users Data table emptied"
|
37 |
+
msgstr "Tabelle \"Benutzerdaten\" geleert"
|
38 |
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
40 |
+
msgid "Users Data table deleted"
|
41 |
+
msgstr "Tabelle \"Benutzerdaten\" gelöscht"
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
44 |
+
msgid "Options set to default values"
|
45 |
+
msgstr "Einstellungen auf Grundeinstellungen zurück gesetzt"
|
46 |
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
48 |
+
msgid "Options deleted"
|
49 |
+
msgstr "Einstellungen gelöscht"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
52 |
+
msgid "Options changed"
|
53 |
+
msgstr "Einstellungen aktualisiert"
|
54 |
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:401
|
56 |
+
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
57 |
+
msgstr ""
|
58 |
|
59 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:410
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:476
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:673
|
62 |
+
msgid "Options"
|
63 |
+
msgstr "Einstellungen"
|
64 |
|
65 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:430
|
67 |
+
msgid "Add a new Field"
|
68 |
+
msgstr "Ein neues Feld hinzufügen"
|
69 |
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
71 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
73 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
|
74 |
+
msgid "Extra Fields"
|
75 |
+
msgstr "Benutzerdefinierte Felder"
|
76 |
|
77 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:457
|
79 |
+
msgid "SUCCESSFUL"
|
80 |
+
msgstr "ERFOLGREICH"
|
81 |
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:434
|
83 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
84 |
+
msgid "Save Changes"
|
85 |
+
msgstr "Einstellungen aktualisieren"
|
86 |
|
87 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:435
|
88 |
+
msgid "General"
|
89 |
+
msgstr "Allgemein"
|
90 |
|
91 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:443
|
92 |
+
msgid "installed is"
|
93 |
+
msgstr "installiert ist"
|
94 |
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:447
|
96 |
+
msgid "OPTIONS DELETED!"
|
97 |
+
msgstr "EINSTELLUNGEN GELÖSCHT!"
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:450
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:455
|
101 |
+
msgid "Fix the problem"
|
102 |
+
msgstr ""
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
105 |
+
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
106 |
+
msgstr "VERSIONEN NICHT KOMPATIBEL! Du hast das Plugin nach dem Update nicht deaktiviert und anschließend reaktiviert. Das könnte Probleme geben..."
|
107 |
|
108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
109 |
+
msgid "Picture/Avatar upload"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:465
|
113 |
+
msgid "is created and writable"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:467
|
117 |
+
msgid "is NOT created or webserver does NOT have permission to write on it"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:473
|
121 |
+
msgid "Database"
|
122 |
+
msgstr "Datenbank"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
125 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
128 |
+
msgid "select action"
|
129 |
+
msgstr "Wähle Aktion"
|
130 |
+
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
132 |
+
msgid "Default values"
|
133 |
+
msgstr "Werte: Grundeinstellung"
|
134 |
|
135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
139 |
+
msgid "Delete"
|
140 |
+
msgstr "Löschen"
|
141 |
+
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:488
|
143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:507
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
146 |
+
msgid "NOT PRESENT"
|
147 |
+
msgstr "NICHT VORHANDEN"
|
148 |
+
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:493
|
150 |
+
msgid "WordPress Fields table"
|
151 |
+
msgstr "WP-Datenbank-Tabelle"
|
152 |
+
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:501
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:520
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
156 |
+
msgid "Empty"
|
157 |
+
msgstr "Leer"
|
158 |
+
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:513
|
160 |
+
msgid "Extra Fields table"
|
161 |
+
msgstr "Tabelle \"Benutzerdefinierte Felder\""
|
162 |
+
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
164 |
+
msgid "Users Data table"
|
165 |
+
msgstr "Tabelle \"Benutzerdaten\""
|
166 |
+
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
168 |
+
msgid "all data inserted by users in all and only extra fields"
|
169 |
+
msgstr "alle von \"Benutzern\" in die Cimy-Zusatzfelder eingetragenen Daten"
|
170 |
+
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
172 |
+
msgid "Force tables creation"
|
173 |
+
msgstr "Erzwingt die Erstellung der Datenbanktabellen"
|
174 |
+
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
176 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
177 |
+
msgstr "Achtung: Mit dieser Einstellung zwingen Sie das PlugIn die Datenbanktabellen zu erstellen. Dieser Schritt wird auch bei (De-)Aktivierung des PlugIns durchgeführt."
|
178 |
+
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
180 |
+
msgid "User Profile"
|
181 |
+
msgstr "\"Benutzer\" Profil"
|
182 |
+
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:560
|
184 |
+
msgid "Extra Fields section title"
|
185 |
+
msgstr "Titel für \"Benutzerdefinierte Felder\""
|
186 |
+
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
188 |
+
msgid "Fieldset's titles, separates with comma"
|
189 |
+
msgstr "Titel des Abschnitts der \"Benutzerdefinierten Felder\", abgetrennt durch Kommata (',')"
|
190 |
+
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
192 |
+
msgid "example: title1,title2,title3"
|
193 |
+
msgstr "Beispiel: Titel1, Titel2, Titel3"
|
194 |
+
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
196 |
+
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
202 |
+
msgid "Authors & Users Extended"
|
203 |
+
msgstr "\"Autoren & Benutzer\" erweitert"
|
204 |
+
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
206 |
+
msgid "Hide username field"
|
207 |
+
msgstr "Feld: \"'Benutzer'-Name\" nicht anzeigen"
|
208 |
+
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
210 |
+
msgid "Hide name field"
|
211 |
+
msgstr "Feld: \"Name\" nicht anzeigen"
|
212 |
+
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:585
|
214 |
+
msgid "Hide email field"
|
215 |
+
msgstr "Feld: \"E-mail Adresse\" nicht anzeigen"
|
216 |
+
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
218 |
+
msgid "Hide role field"
|
219 |
+
msgstr "Feld: \"Rolle\" des \"Benutzers\" nicht anzeigen"
|
220 |
+
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
222 |
+
msgid "Hide website field"
|
223 |
+
msgstr "Feld: \"Webseite\" nicht anzeigen"
|
224 |
+
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
226 |
+
msgid "Hide n. posts field"
|
227 |
+
msgstr "Feld: Anzahl der von \"Benutzer(n)\" erstellten Artikel nicht anzeigen"
|
228 |
+
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:602
|
230 |
+
msgid "WordPress hidden fields"
|
231 |
+
msgstr "Feld: \"Wordpress hidden fields\" (verborgene Felder)"
|
232 |
+
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
234 |
+
msgid "Show password"
|
235 |
+
msgstr "\"Passwort\" anzeigen"
|
236 |
+
|
237 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
238 |
+
msgid "Show first name"
|
239 |
+
msgstr "Zeige \"Vornamen\""
|
240 |
+
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
242 |
+
msgid "Show last name"
|
243 |
+
msgstr "Zeige \"Nachnamen\""
|
244 |
+
|
245 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
246 |
+
msgid "Show nickname"
|
247 |
+
msgstr "Zeige \"Nicknamen\"/Spitznamen"
|
248 |
+
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
250 |
+
msgid "Show website"
|
251 |
+
msgstr "Zeige \"Webseite\""
|
252 |
+
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
254 |
+
msgid "Show AIM"
|
255 |
+
msgstr "Zeige \"AIM\""
|
256 |
+
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
258 |
+
msgid "Show Yahoo IM"
|
259 |
+
msgstr "Zeige \"Yahoo IM\""
|
260 |
+
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:633
|
262 |
+
msgid "Show Jabber / Google Talk"
|
263 |
+
msgstr "Zeige \"Jabber / Google Talk\""
|
264 |
+
|
265 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:637
|
266 |
+
msgid "Show Biographical Info"
|
267 |
+
msgstr "\"Weitere Informationen\" anzeigen"
|
268 |
+
|
269 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:292
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:729
|
271 |
#, fuzzy
|
272 |
+
msgid "Please upload a file with one of the following extensions"
|
273 |
+
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
274 |
+
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:298
|
276 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:735
|
277 |
+
msgid "Please upload an image with one of the following extensions"
|
278 |
+
msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
|
279 |
|
280 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:422
|
281 |
+
#, fuzzy
|
282 |
+
msgid "Delete the file"
|
283 |
+
msgstr "Bild löschen"
|
284 |
+
|
285 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:423
|
286 |
+
#, fuzzy
|
287 |
+
msgid "Update the file"
|
288 |
+
msgstr "Bild aktualisieren"
|
289 |
+
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:426
|
291 |
+
msgid "Delete the picture"
|
292 |
+
msgstr "Bild löschen"
|
293 |
+
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:427
|
295 |
+
msgid "Update the picture"
|
296 |
+
msgstr "Bild aktualisieren"
|
297 |
+
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
299 |
+
msgid "Picture URL:"
|
300 |
+
msgstr "URL für Bild:"
|
301 |
+
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:215
|
303 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
304 |
msgstr "<strong>Anm.:</strong> Diese Webseite lässt Sie Ihr Passwort frei wählen. Nach der Registrierung erhalten Sie eine E-Mail mit einem anderen Passwort. Bitte löschen Sie diese ungesehen."
|
305 |
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:222
|
307 |
msgid "Password"
|
308 |
msgstr "Passwort"
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:242
|
311 |
msgid "First name"
|
312 |
msgstr "Vorname"
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
|
315 |
msgid "Last name"
|
316 |
msgstr "Nachname"
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:282
|
319 |
msgid "Nickname"
|
320 |
msgstr "Spitzname"
|
321 |
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
325 |
msgid "Website"
|
326 |
msgstr "Webseite"
|
327 |
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:322
|
329 |
msgid "AIM"
|
330 |
msgstr "AIM"
|
331 |
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:342
|
333 |
msgid "Yahoo IM"
|
334 |
msgstr "Yahoo IM"
|
335 |
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:362
|
337 |
msgid "Jabber / Google Talk"
|
338 |
msgstr "Jabber / Google Talk"
|
339 |
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:382
|
341 |
msgid "Biographical Info"
|
342 |
msgstr "Weitere Informationen"
|
343 |
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:674
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
msgid "Fields"
|
347 |
msgstr "Felder"
|
348 |
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
msgid "A&U Extended"
|
352 |
msgstr "\"Autoren & Benutzer\" erweitert"
|
353 |
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:679
|
355 |
#, fuzzy
|
356 |
msgid "Users Extended"
|
357 |
msgstr "Liste aller \"Benutzer\""
|
377 |
msgstr "Reihenfolge ändern "
|
378 |
|
379 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
381 |
msgid "Min length"
|
382 |
msgstr "Minimale Länge"
|
383 |
|
384 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1067
|
386 |
msgid "Exact length"
|
387 |
msgstr "Exakte Länge"
|
388 |
|
389 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
391 |
msgid "Max length"
|
392 |
msgstr "Maximale Länge"
|
393 |
|
395 |
msgid "Exact or Max length"
|
396 |
msgstr "Exakte oder maximale Länge"
|
397 |
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
399 |
msgid "changed to"
|
400 |
msgstr "geändert in"
|
401 |
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:124
|
403 |
msgid "You cannot give an order that misses some numbers"
|
404 |
msgstr "Die Ordnungnummern müssen fortlaufen & durchgängig sein."
|
405 |
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:127
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:200
|
408 |
msgid "Nothing selected"
|
409 |
msgstr "Nichts ausgewählt"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
412 |
msgid "Field(s)"
|
413 |
msgstr "Feld(er)"
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
416 |
msgid "deleted correctly"
|
417 |
msgstr "erfolgreich gelöscht"
|
418 |
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:229
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
421 |
msgid "Min size"
|
422 |
msgstr "Minimale Größe"
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:230
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1059
|
426 |
msgid "Exact size"
|
427 |
msgstr "Exakte Größe"
|
428 |
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:231
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
|
431 |
msgid "Max size"
|
432 |
msgstr "Maximale Größe"
|
433 |
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:233
|
435 |
msgid "Exact or Max size"
|
436 |
msgstr "Exakte oder maximale Größe"
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
439 |
msgid "Name not specified"
|
440 |
msgstr "Name nicht ausgefüllt"
|
441 |
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
443 |
msgid "Name cannot contains spaces"
|
444 |
msgstr "Der Name darf keine Leerstellen enthalten."
|
445 |
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
447 |
msgid "Label not specified"
|
448 |
msgstr "\"label\"/Feld-Titel nicht ausgefüllt"
|
449 |
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
451 |
msgid "not selected (with this type is necessary)"
|
452 |
msgstr "nicht ausgewählt (für diesen Typ notwendig)"
|
453 |
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
455 |
msgid "If you select"
|
456 |
msgstr "Wenn Sie folgendes auswählen"
|
457 |
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
459 |
msgid "you cannot select Min or Max"
|
460 |
msgstr "Sie dürfen \"Min\" oder \"Max\" nicht festlegen"
|
461 |
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
465 |
msgid "should be in the range of"
|
466 |
msgstr "sollte im Bereich sein (von/bis)"
|
467 |
|
468 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:328
|
470 |
msgid "Equal TO not specified"
|
471 |
msgstr "ENTSPRICHT (equal TO) nicht spezifiziert"
|
472 |
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
|
474 |
msgid "With checkbox type Equal TO can only be"
|
475 |
msgstr "Beim Typ <strong>checkbox</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
476 |
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:334
|
478 |
msgid "With radio type Equal TO can only be"
|
479 |
msgstr "Beim Typ <strong>radio</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
|
480 |
|
481 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:350
|
482 |
msgid "With checkbox type Value can only be"
|
483 |
msgstr "Beim Typ <strong>checkbox</strong> kann der Wert/$value nur folgendes sein"
|
484 |
|
485 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:353
|
486 |
msgid "With radio type Value can only be"
|
487 |
msgstr "Beim Typ <strong>radio</strong> kann der Wert/$value nur folgendes sein"
|
488 |
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
|
490 |
msgid "Field inserted correctly"
|
491 |
msgstr "Feld richtig eingefügt."
|
492 |
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
494 |
msgid "Field #"
|
495 |
msgstr "Feld #"
|
496 |
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
498 |
msgid "updated correctly"
|
499 |
msgstr "Update erfolgreich"
|
500 |
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:415
|
502 |
msgid "Name inserted is just in the database, change to another one"
|
503 |
msgstr "Dieser Name ist in der Datenbank bereits vorhanden, bitte wähle einen anderen"
|
504 |
|
|
|
|
|
|
|
|
|
|
|
505 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
507 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:378
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:390
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
511 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
513 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
514 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
517 |
+
msgid "ERROR"
|
518 |
+
msgstr "FEHLER"
|
519 |
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
521 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
522 |
msgstr "Um ein neues Feld hinzuzufügen, musst Du einen Namen, einen Typ und eine Bezeichnung/\"label\" angeben. Wert/$value und Beschreibung sind optional. Die Regeln werden bei der User-Registrierung angewandt."
|
523 |
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
|
525 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
526 |
msgstr "Bei <strong>radio</strong> und <strong>checkbox</strong> gilt: <em>Wert/$value</em> und <em>ENTSRPICHT(equal TO)</em> können nur \"Yes\" oder \"No\" beinhalten, was \"ausgewählt\" oder \"nicht ausgewählt\" bedeutet."
|
527 |
|
528 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
529 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
530 |
msgstr "Bei <strong>drop-down</strong> gilt: Du musst alle möglichen Werte in das Feld Bezeichnung/\"label\" schreiben. Beispiel: Bezeichnung/Wert1,Wert2. Pseudocode: Benutzerdefinierter Schlüssel/Wert,Wert; Code: $key/$value,$value; Spezifiziertes Beispiel: Geschlecht/männlich,weiblich"
|
531 |
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
|
533 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
534 |
msgstr "Bei <strong>picture</strong> gilt: Du kannst ein Bild hochladen, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT(equal TO)</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
|
535 |
|
536 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
537 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
538 |
msgstr "Bei <strong>picture-url</strong> gilt: Du kannst ein Bild einstellen, indem Du die Bildadresse (Url) in <em>Wert/$value</em> eingibst; <em>ENTSPRICHT(equal TO)</em> meint die maximale Breite in Pixel (die Höhe wird proportional angepasst)."
|
539 |
|
540 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
|
541 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
542 |
msgstr "Bei <strong>registration-date</strong> gilt: <em>ENTSRPICHT(equal TO)</em> meint das Format für Datum und Zeit."
|
543 |
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
545 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
546 |
msgstr "Für <strong>Avatar</strong>: Du kannst einen Standardavatar laden, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
|
547 |
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
549 |
+
#, fuzzy
|
550 |
+
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
551 |
+
msgstr "Bei <strong>picture</strong> gilt: Du kannst ein Bild hochladen, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT(equal TO)</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
|
552 |
+
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
555 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1477
|
559 |
msgid "Name"
|
560 |
msgstr "Name"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1094
|
566 |
msgid "Value"
|
567 |
msgstr "Wert/$value"
|
568 |
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
573 |
msgid "Type"
|
574 |
msgstr "Typ"
|
575 |
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
580 |
msgid "Label"
|
581 |
msgstr "Bezeichnung/\"label\""
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
587 |
msgid "Description"
|
588 |
msgstr "Beschreibung"
|
589 |
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:851
|
592 |
msgid "Rules"
|
593 |
msgstr "Regeln"
|
594 |
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:852
|
597 |
msgid "Actions"
|
598 |
msgstr "Aktion"
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1113
|
602 |
#, fuzzy
|
603 |
msgid "Fieldset"
|
604 |
msgstr "Felder"
|
605 |
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:713
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1136
|
608 |
msgid "Can be empty"
|
609 |
msgstr "Kann leer sein"
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
612 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1137
|
613 |
msgid "Check for E-mail syntax"
|
614 |
msgstr "Kontrollieren Sie bitte die E-Mail-Syntax"
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
618 |
msgid "Can be modified"
|
619 |
msgstr "Änderung des Feldes möglich"
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:718
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
623 |
msgid "Can be modified only if empty"
|
624 |
msgstr "Änderung des Feldes möglich wenn leer"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
628 |
msgid "Can be modified only by admin"
|
629 |
msgstr "Änderung des Feldes nur durch Admin möglich"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
633 |
msgid "Can be modified only by admin or if empty"
|
634 |
msgstr "Änderung des Feldes nur durch Admin, oder wenn leer"
|
635 |
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:721
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1144
|
638 |
msgid "Cannot be modified"
|
639 |
msgstr "Änderung des Feldes nicht möglich"
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
643 |
msgid "Should be equal TO"
|
644 |
msgstr "ENTSPRICHT (equal TO) folgendem"
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
648 |
msgid "Case sensitive"
|
649 |
msgstr "Groß-/Kleinschreibung beachten"
|
650 |
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:734
|
652 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
653 |
msgid "Regular Expression"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:737
|
657 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1157
|
658 |
msgid "Show the field in the registration"
|
659 |
msgstr "Zeige das Feld bei der Registrierung"
|
660 |
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:740
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1160
|
663 |
msgid "Show the field in User's profile"
|
664 |
msgstr "Zeige das Feld im \"Benutzer\"profil"
|
665 |
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
667 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1169
|
668 |
msgid "Show the field in A&U Extended menu"
|
669 |
msgstr "Zeige das Feld in der \"Liste aller Benutzer\""
|
670 |
|
671 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:746
|
672 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1172
|
673 |
+
#, fuzzy
|
674 |
+
msgid "Show the field in the search engine"
|
675 |
+
msgstr "Zeige das Feld bei der Registrierung"
|
676 |
|
677 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
|
678 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1175
|
679 |
+
#, fuzzy
|
680 |
+
msgid "Show the field in the blog"
|
681 |
+
msgstr "Zeige das Feld bei der Registrierung"
|
682 |
|
683 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:752
|
684 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
685 |
+
#, fuzzy
|
686 |
+
msgid "Show the field if the role is at least:"
|
687 |
+
msgstr "Zeige das Feld bei der Registrierung"
|
|
|
688 |
|
689 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:754
|
690 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1180
|
691 |
+
msgid "Anonymous"
|
692 |
+
msgstr ""
|
693 |
|
694 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
|
695 |
+
msgid "Clear"
|
696 |
+
msgstr "Löschen"
|
697 |
+
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:813
|
699 |
msgid "Invert selection"
|
700 |
msgstr "Auswahl umkehren"
|
701 |
|
702 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:814
|
|
|
|
|
703 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
704 |
msgstr "Bist Du sicher, dass du diese(s) Feld(er) und alle Daten, die von \"Benutzer\"n angelegt wurden, löschen möchtest?"
|
705 |
|
706 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
707 |
+
msgid "WordPress Fields"
|
708 |
+
msgstr "WordPress Felder"
|
709 |
+
|
710 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
|
711 |
+
msgid "None!"
|
712 |
+
msgstr "Keine!"
|
713 |
+
|
714 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
715 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1079
|
716 |
msgid "Order"
|
717 |
msgstr "Reihenfolge"
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1191
|
720 |
msgid "Reset"
|
721 |
msgstr "Reset"
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1248
|
724 |
+
#, fuzzy
|
725 |
+
msgid "select"
|
726 |
+
msgstr "Löschen"
|
727 |
+
|
728 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1351
|
729 |
#, php-format
|
730 |
msgid "Users Matching \"%s\""
|
731 |
msgstr "Benutzer Matching \"%s\""
|
732 |
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
734 |
#, fuzzy
|
735 |
msgid "Users Extended List"
|
736 |
msgstr "Liste aller \"Benutzer\""
|
737 |
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
739 |
msgid "Authors & Users Extended List"
|
740 |
msgstr "Liste aller \"Benutzer\""
|
741 |
|
742 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
|
743 |
msgid "Search Users"
|
744 |
msgstr "Suche \"Benutzer\""
|
745 |
|
746 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1435
|
747 |
msgid "« Back to All Users"
|
748 |
msgstr "« Zurück zu \"Alle Benutzer\""
|
749 |
|
750 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
751 |
msgid "Users per page"
|
752 |
msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
|
753 |
|
754 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
755 |
msgid "Apply"
|
756 |
msgstr "anwenden"
|
757 |
|
758 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
759 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1472
|
760 |
msgid "Username"
|
761 |
msgstr "\"Benutzer\"name"
|
762 |
|
763 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
764 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
765 |
msgid "E-mail"
|
766 |
msgstr "E-Mail"
|
767 |
|
768 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
|
770 |
msgid "Role"
|
771 |
msgstr "\"Benutzer\"-Rollen"
|
772 |
|
773 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
774 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
775 |
msgid "Posts"
|
776 |
msgstr "Artikel"
|
777 |
|
778 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1604
|
779 |
msgid "View posts by this author"
|
780 |
msgstr "Zeige Artikel dieses Autors"
|
781 |
|
782 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1635
|
783 |
#, php-format
|
784 |
msgid "e-mail: %s"
|
785 |
msgstr "E-Mail: %s"
|
786 |
|
787 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:327
|
788 |
+
#, fuzzy
|
789 |
+
msgid "no fieldset"
|
790 |
+
msgstr "\"Benutzerdefinierte Felder\" pro Abschnitt"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
791 |
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
793 |
+
#, php-format
|
794 |
+
msgid "File '%s' doesn't exist?"
|
795 |
+
msgstr "Datei '%s' existieren nicht?"
|
796 |
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
798 |
+
msgid "The GD image library is not installed."
|
799 |
+
msgstr "Die \"GD image library\" ist nicht installiert"
|
800 |
|
801 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
802 |
+
#, php-format
|
803 |
+
msgid "File '%s' is not an image."
|
804 |
+
msgstr "Datei '%s' muss Bild-Datei sein"
|
805 |
|
806 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
807 |
+
msgid "hasn’t a correct email syntax."
|
808 |
+
msgstr "hat eine fehlerhafte Email-Syntax. "
|
809 |
|
810 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
811 |
+
msgid "couldn’t be empty."
|
812 |
+
msgstr "darf nicht leer sein."
|
813 |
|
814 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:377
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:386
|
816 |
+
msgid "isn’t correct"
|
817 |
+
msgstr "ist nicht richtig"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
820 |
+
msgid "YES"
|
821 |
+
msgstr "JA"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
824 |
+
msgid "NO"
|
825 |
+
msgstr "NEIN"
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:388
|
828 |
+
msgid "should be"
|
829 |
+
msgstr "sollte sein"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
832 |
+
msgid "should be an image."
|
833 |
+
msgstr "sollte ein Bild sein."
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
836 |
+
msgid "couldn’t have size less than"
|
837 |
+
msgstr "darf keine Größe haben unter"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
840 |
+
msgid "couldn’t have length less than"
|
841 |
+
msgstr "darf keine Länge haben unter"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
844 |
+
msgid "couldn’t have size different than"
|
845 |
+
msgstr "darf keine Größe haben, die um mehr abweicht als"
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
848 |
+
msgid "couldn’t have length different than"
|
849 |
+
msgstr "darf keine Länge habe, die um mehr abweicht als"
|
850 |
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
852 |
+
msgid "couldn’t have size more than"
|
853 |
+
msgstr "darf keine Größe haben über"
|
854 |
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
856 |
+
msgid "couldn’t have length more than"
|
857 |
+
msgstr "darf keine Länge haben über"
|
858 |
|
859 |
#, fuzzy
|
860 |
#~ msgid ""
|
langs/cimy_uef-es_ES.mo
ADDED
Binary file
|
langs/cimy_uef-es_ES.po
ADDED
@@ -0,0 +1,883 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-11-22 23:52+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-11-22 23:52+0300\n"
|
7 |
+
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Language: German\n"
|
14 |
+
"X-Poedit-Country: GERMANY\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
+
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:34
|
20 |
+
msgid "WordPress Fields table emptied"
|
21 |
+
msgstr "Tabla de Campos WordPress vaciada"
|
22 |
+
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
24 |
+
msgid "WordPress Fields table deleted"
|
25 |
+
msgstr "Tabla de Campos WordPress borrada"
|
26 |
+
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
28 |
+
msgid "Extra Fields table emptied"
|
29 |
+
msgstr "Tabla de Campos Adicionales vaciada"
|
30 |
+
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
32 |
+
msgid "Extra Fields table deleted"
|
33 |
+
msgstr "Tabla de Campos Adicionales borrada"
|
34 |
+
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
36 |
+
msgid "Users Data table emptied"
|
37 |
+
msgstr "Tabla de Datos de Usuarios vaciada"
|
38 |
+
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
40 |
+
msgid "Users Data table deleted"
|
41 |
+
msgstr "Tabla de Datos de Usuarios borrada"
|
42 |
+
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
44 |
+
msgid "Options set to default values"
|
45 |
+
msgstr "Opciones asignadas los valores por defecto"
|
46 |
+
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
48 |
+
msgid "Options deleted"
|
49 |
+
msgstr "Opciones borradas"
|
50 |
+
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
52 |
+
msgid "Options changed"
|
53 |
+
msgstr "Opciones cambiadas"
|
54 |
+
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:401
|
56 |
+
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
57 |
+
msgstr "Esta operación creará/actualizará todas las opciones/tablas faltantes ¿Desea continuar?"
|
58 |
+
|
59 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:410
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:476
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:673
|
62 |
+
msgid "Options"
|
63 |
+
msgstr "Opciones"
|
64 |
+
|
65 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:430
|
67 |
+
msgid "Add a new Field"
|
68 |
+
msgstr "Agregar un nuevo Campo"
|
69 |
+
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
71 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
73 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
|
74 |
+
msgid "Extra Fields"
|
75 |
+
msgstr "Campos Adicionales"
|
76 |
+
|
77 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:457
|
79 |
+
msgid "SUCCESSFUL"
|
80 |
+
msgstr "EXITOSO"
|
81 |
+
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:434
|
83 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
84 |
+
msgid "Save Changes"
|
85 |
+
msgstr "Salvar cambios"
|
86 |
+
|
87 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:435
|
88 |
+
msgid "General"
|
89 |
+
msgstr "General"
|
90 |
+
|
91 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:443
|
92 |
+
msgid "installed is"
|
93 |
+
msgstr "instalada es"
|
94 |
+
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:447
|
96 |
+
msgid "OPTIONS DELETED!"
|
97 |
+
msgstr "OPCIONES BORRADAS!"
|
98 |
+
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:450
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:455
|
101 |
+
msgid "Fix the problem"
|
102 |
+
msgstr "Arreglar el problema"
|
103 |
+
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
105 |
+
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
106 |
+
msgstr "NO CORRESPONDEN LAS VERSIONES! Esto es ocasionado porque no ha desactivado y reactivado el plug-in despues de la actualización! Esto puede ocasionar problemas..."
|
107 |
+
|
108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
109 |
+
msgid "Picture/Avatar upload"
|
110 |
+
msgstr "Subida de foto/avatar"
|
111 |
+
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:465
|
113 |
+
msgid "is created and writable"
|
114 |
+
msgstr "existe y tiene permisos de escritura"
|
115 |
+
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:467
|
117 |
+
msgid "is NOT created or webserver does NOT have permission to write on it"
|
118 |
+
msgstr "no está creado o el servidor web no tiene permisos de escritura"
|
119 |
+
|
120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:473
|
121 |
+
msgid "Database"
|
122 |
+
msgstr "Base de Datos"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
125 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
128 |
+
msgid "select action"
|
129 |
+
msgstr "seleccione acción"
|
130 |
+
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
132 |
+
msgid "Default values"
|
133 |
+
msgstr "Valores por defecto"
|
134 |
+
|
135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
139 |
+
msgid "Delete"
|
140 |
+
msgstr "Borrar"
|
141 |
+
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:488
|
143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:507
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
146 |
+
msgid "NOT PRESENT"
|
147 |
+
msgstr "NO EXISTE"
|
148 |
+
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:493
|
150 |
+
msgid "WordPress Fields table"
|
151 |
+
msgstr "tabla de Campos WordPress"
|
152 |
+
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:501
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:520
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
156 |
+
msgid "Empty"
|
157 |
+
msgstr "Vacío"
|
158 |
+
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:513
|
160 |
+
msgid "Extra Fields table"
|
161 |
+
msgstr "Tabla de campos adicionales"
|
162 |
+
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
164 |
+
msgid "Users Data table"
|
165 |
+
msgstr "Tabla de datos del usuario"
|
166 |
+
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
168 |
+
msgid "all data inserted by users in all and only extra fields"
|
169 |
+
msgstr "todos las datos insertados por los usuarios en todos (y unicamente) los campos adicionales"
|
170 |
+
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
172 |
+
msgid "Force tables creation"
|
173 |
+
msgstr "Forzar la creación de tablas"
|
174 |
+
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
176 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
177 |
+
msgstr "Equivalente a desactivar y activar el plug-in. No se realizará otra operación."
|
178 |
+
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
180 |
+
msgid "User Profile"
|
181 |
+
msgstr "Perfil de usuario"
|
182 |
+
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:560
|
184 |
+
msgid "Extra Fields section title"
|
185 |
+
msgstr "Título de la sección de campos adicionales"
|
186 |
+
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
188 |
+
msgid "Fieldset's titles, separates with comma"
|
189 |
+
msgstr "Títulos de los grupos de campo, separar con coma"
|
190 |
+
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
192 |
+
msgid "example: title1,title2,title3"
|
193 |
+
msgstr "ejemplo: título 1, título 2, título 3"
|
194 |
+
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
196 |
+
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
197 |
+
msgstr "<strong>nota:</strong> si cambia el orden o quita grupos de campos posiblemente deba reasignar todos los campos adicionales a su grupo correspondiente"
|
198 |
+
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
202 |
+
msgid "Authors & Users Extended"
|
203 |
+
msgstr "Autores & Usuarios Extendido"
|
204 |
+
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
206 |
+
msgid "Hide username field"
|
207 |
+
msgstr "Esconder campo de nombre de usuario"
|
208 |
+
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
210 |
+
msgid "Hide name field"
|
211 |
+
msgstr "Esconder campo de nombre"
|
212 |
+
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:585
|
214 |
+
msgid "Hide email field"
|
215 |
+
msgstr "Esconder campo de correo electrónico"
|
216 |
+
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
218 |
+
msgid "Hide role field"
|
219 |
+
msgstr "Esconder campo de rol"
|
220 |
+
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
222 |
+
msgid "Hide website field"
|
223 |
+
msgstr "Esconder el campo de sitio web"
|
224 |
+
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
226 |
+
msgid "Hide n. posts field"
|
227 |
+
msgstr "Esconder el campo de n. entradas"
|
228 |
+
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:602
|
230 |
+
msgid "WordPress hidden fields"
|
231 |
+
msgstr "Campos escondidos WordPress"
|
232 |
+
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
234 |
+
msgid "Show password"
|
235 |
+
msgstr "Mostrar contraseña"
|
236 |
+
|
237 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
238 |
+
msgid "Show first name"
|
239 |
+
msgstr "Mostrar primer nombre"
|
240 |
+
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
242 |
+
msgid "Show last name"
|
243 |
+
msgstr "Mostrar apellido"
|
244 |
+
|
245 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
246 |
+
msgid "Show nickname"
|
247 |
+
msgstr "Mostrar sobrenombre"
|
248 |
+
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
250 |
+
msgid "Show website"
|
251 |
+
msgstr "Mostrar sitio web"
|
252 |
+
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
254 |
+
msgid "Show AIM"
|
255 |
+
msgstr "Mostrar AIM"
|
256 |
+
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
258 |
+
msgid "Show Yahoo IM"
|
259 |
+
msgstr "Mostrar mensajero Yahoo"
|
260 |
+
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:633
|
262 |
+
msgid "Show Jabber / Google Talk"
|
263 |
+
msgstr "Mostrar Jabber / Google Talk"
|
264 |
+
|
265 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:637
|
266 |
+
msgid "Show Biographical Info"
|
267 |
+
msgstr "Mostrar información biográfica"
|
268 |
+
|
269 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:292
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:729
|
271 |
+
#, fuzzy
|
272 |
+
msgid "Please upload a file with one of the following extensions"
|
273 |
+
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
274 |
+
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:298
|
276 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:735
|
277 |
+
msgid "Please upload an image with one of the following extensions"
|
278 |
+
msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
|
279 |
+
|
280 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:422
|
281 |
+
#, fuzzy
|
282 |
+
msgid "Delete the file"
|
283 |
+
msgstr "Borrar la imagen"
|
284 |
+
|
285 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:423
|
286 |
+
#, fuzzy
|
287 |
+
msgid "Update the file"
|
288 |
+
msgstr "Actualizar la imagen"
|
289 |
+
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:426
|
291 |
+
msgid "Delete the picture"
|
292 |
+
msgstr "Borrar la imagen"
|
293 |
+
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:427
|
295 |
+
msgid "Update the picture"
|
296 |
+
msgstr "Actualizar la imagen"
|
297 |
+
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
299 |
+
msgid "Picture URL:"
|
300 |
+
msgstr "URL de la imagen:"
|
301 |
+
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:215
|
303 |
+
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
304 |
+
msgstr "<strong>Nota:</strong> este sitio permite la personalización de contraseña. Despues de registrarse recibirá un correo con otra contraseña, haga caso omiso!"
|
305 |
+
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:222
|
307 |
+
msgid "Password"
|
308 |
+
msgstr "Contraseña"
|
309 |
+
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:242
|
311 |
+
msgid "First name"
|
312 |
+
msgstr "Primer nombre"
|
313 |
+
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
|
315 |
+
msgid "Last name"
|
316 |
+
msgstr "Apellido"
|
317 |
+
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:282
|
319 |
+
msgid "Nickname"
|
320 |
+
msgstr "Sobrenombre"
|
321 |
+
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
325 |
+
msgid "Website"
|
326 |
+
msgstr "Sitio Web"
|
327 |
+
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:322
|
329 |
+
msgid "AIM"
|
330 |
+
msgstr "AIM"
|
331 |
+
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:342
|
333 |
+
msgid "Yahoo IM"
|
334 |
+
msgstr "Yahoo IM"
|
335 |
+
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:362
|
337 |
+
msgid "Jabber / Google Talk"
|
338 |
+
msgstr "Jabber / Google Talk"
|
339 |
+
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:382
|
341 |
+
msgid "Biographical Info"
|
342 |
+
msgstr "Información Biográfica"
|
343 |
+
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:674
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
346 |
+
msgid "Fields"
|
347 |
+
msgstr "Campos"
|
348 |
+
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
351 |
+
msgid "A&U Extended"
|
352 |
+
msgstr "A&U Extendido"
|
353 |
+
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:679
|
355 |
+
#, fuzzy
|
356 |
+
msgid "Users Extended"
|
357 |
+
msgstr "Usuarios extendido"
|
358 |
+
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:12
|
360 |
+
msgid "Add field"
|
361 |
+
msgstr "Agregar campo"
|
362 |
+
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:13
|
364 |
+
msgid "Update field"
|
365 |
+
msgstr "Actualizar campo"
|
366 |
+
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
368 |
+
msgid "Delete field"
|
369 |
+
msgstr "Borrar campo"
|
370 |
+
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:15
|
372 |
+
msgid "Delete selected fields"
|
373 |
+
msgstr "Borrar campos seleccionados"
|
374 |
+
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:16
|
376 |
+
msgid "Change order"
|
377 |
+
msgstr "Cambiar orden"
|
378 |
+
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
381 |
+
msgid "Min length"
|
382 |
+
msgstr "Longitud mínima"
|
383 |
+
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1067
|
386 |
+
msgid "Exact length"
|
387 |
+
msgstr "Longitud exacta"
|
388 |
+
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
391 |
+
msgid "Max length"
|
392 |
+
msgstr "Longitud máxima"
|
393 |
+
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
395 |
+
msgid "Exact or Max length"
|
396 |
+
msgstr "Longitud máxima o exacta"
|
397 |
+
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
399 |
+
msgid "changed to"
|
400 |
+
msgstr "cambiado a"
|
401 |
+
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:124
|
403 |
+
msgid "You cannot give an order that misses some numbers"
|
404 |
+
msgstr "No se puede poner un orden que se salte algunos números"
|
405 |
+
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:127
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:200
|
408 |
+
msgid "Nothing selected"
|
409 |
+
msgstr "Nada seleccionado"
|
410 |
+
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
412 |
+
msgid "Field(s)"
|
413 |
+
msgstr "Campo(s)"
|
414 |
+
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
416 |
+
msgid "deleted correctly"
|
417 |
+
msgstr "borrado correctamente"
|
418 |
+
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:229
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
421 |
+
msgid "Min size"
|
422 |
+
msgstr "Tamaño mínimo"
|
423 |
+
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:230
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1059
|
426 |
+
msgid "Exact size"
|
427 |
+
msgstr "Tamaño exacto"
|
428 |
+
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:231
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
|
431 |
+
msgid "Max size"
|
432 |
+
msgstr "Tamaño máximo"
|
433 |
+
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:233
|
435 |
+
msgid "Exact or Max size"
|
436 |
+
msgstr "Tamaño máximo o exacto"
|
437 |
+
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
439 |
+
msgid "Name not specified"
|
440 |
+
msgstr "Nombre no especificado"
|
441 |
+
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
443 |
+
msgid "Name cannot contains spaces"
|
444 |
+
msgstr "El nombre no puede contener espacios"
|
445 |
+
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
447 |
+
msgid "Label not specified"
|
448 |
+
msgstr "Etiqueta no especificada"
|
449 |
+
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
451 |
+
msgid "not selected (with this type is necessary)"
|
452 |
+
msgstr "no seleccionado (necesario para este tipo)"
|
453 |
+
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
455 |
+
msgid "If you select"
|
456 |
+
msgstr "Si usted selecciona"
|
457 |
+
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
459 |
+
msgid "you cannot select Min or Max"
|
460 |
+
msgstr "usted no puede seleccionar mínimo o máximo"
|
461 |
+
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
465 |
+
msgid "should be in the range of"
|
466 |
+
msgstr "debe estar en el rango de"
|
467 |
+
|
468 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:328
|
470 |
+
msgid "Equal TO not specified"
|
471 |
+
msgstr "Igual a no especificado"
|
472 |
+
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
|
474 |
+
msgid "With checkbox type Equal TO can only be"
|
475 |
+
msgstr "Con tipo casilla de verificación \"igual a\" solo puede ser"
|
476 |
+
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:334
|
478 |
+
msgid "With radio type Equal TO can only be"
|
479 |
+
msgstr "Con tipo radio \"igual a\" solo puede ser"
|
480 |
+
|
481 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:350
|
482 |
+
msgid "With checkbox type Value can only be"
|
483 |
+
msgstr "Con tipo casilla de verificación \"Valor\" solo puede ser"
|
484 |
+
|
485 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:353
|
486 |
+
msgid "With radio type Value can only be"
|
487 |
+
msgstr "Con tipo radio \"Valor\" solo puede ser"
|
488 |
+
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
|
490 |
+
msgid "Field inserted correctly"
|
491 |
+
msgstr "Campo insertado correctamente"
|
492 |
+
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
494 |
+
msgid "Field #"
|
495 |
+
msgstr "Campo #"
|
496 |
+
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
498 |
+
msgid "updated correctly"
|
499 |
+
msgstr "Actualizado correctamente"
|
500 |
+
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:415
|
502 |
+
msgid "Name inserted is just in the database, change to another one"
|
503 |
+
msgstr "El nombre insertado"
|
504 |
+
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
507 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:378
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:390
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
511 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
513 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
514 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
517 |
+
msgid "ERROR"
|
518 |
+
msgstr "ERROR"
|
519 |
+
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
521 |
+
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
522 |
+
msgstr "Para agregar un nuevo campo, debe elegir un nombre, tipo y etiqueta. Es opcional indicar un valor y descripción. Las reglas se aplican durante el registro del usuario."
|
523 |
+
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
|
525 |
+
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
526 |
+
msgstr "Con <strong>radio</strong> y <strong>checkbox</strong>: <em>Valor</em> y <em>igual a</em> únicamente puede ser 'Yes' o 'No', es decir seleccionado o no seleccionado"
|
527 |
+
|
528 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
529 |
+
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
530 |
+
msgstr "Con <strong>drop-down</strong>: debe agregar todas las opciones en \"etiqueta\" por ejemplo: etiqueta/elemento1,elemento2,elemento3"
|
531 |
+
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
|
533 |
+
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
534 |
+
msgstr "Con <strong>picture</strong>: puede precargar una imagen por default poniendo su URL en <em>Valor</em>; \"mínimo,exacto y máximo tamaño\" están en KB; <em>igual a</em> significa el tamañno máximo en pixeles (ancho o alto) para el thumbnail"
|
535 |
+
|
536 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
537 |
+
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
538 |
+
msgstr "Con <strong>picture-url</strong>: puede precargar una imagen por defecto poniendo la URL en <em>Valor</em>; <em>igual a</em> significa el máximo tamaño en pixeles (la altura será proporcional)"
|
539 |
+
|
540 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
|
541 |
+
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
542 |
+
msgstr "Con <strong>registration-date</strong>: <em>igual a</em> significa el formato de fecha y hora"
|
543 |
+
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
545 |
+
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
546 |
+
msgstr "Con <strong>avatar</strong>: puede precargar una imagen por defecto colocándola en <em>Valor</em>; 'mínimo,exacto,máximo tamaño' son en KB; <em>igual a</em> es automáticamente fijado en 512 pixeles"
|
547 |
+
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
549 |
+
#, fuzzy
|
550 |
+
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
551 |
+
msgstr "Con <strong>picture</strong>: puede precargar una imagen por default poniendo su URL en <em>Valor</em>; \"mínimo,exacto y máximo tamaño\" están en KB; <em>igual a</em> significa el tamañno máximo en pixeles (ancho o alto) para el thumbnail"
|
552 |
+
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
555 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1477
|
559 |
+
msgid "Name"
|
560 |
+
msgstr "Nombre"
|
561 |
+
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1094
|
566 |
+
msgid "Value"
|
567 |
+
msgstr "Valor"
|
568 |
+
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
573 |
+
msgid "Type"
|
574 |
+
msgstr "Tipo"
|
575 |
+
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
580 |
+
msgid "Label"
|
581 |
+
msgstr "Etiqueta"
|
582 |
+
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
587 |
+
msgid "Description"
|
588 |
+
msgstr "Descripción"
|
589 |
+
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:851
|
592 |
+
msgid "Rules"
|
593 |
+
msgstr "Reglas"
|
594 |
+
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:852
|
597 |
+
msgid "Actions"
|
598 |
+
msgstr "Acciones"
|
599 |
+
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1113
|
602 |
+
msgid "Fieldset"
|
603 |
+
msgstr "Grupo de campos"
|
604 |
+
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:713
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1136
|
607 |
+
msgid "Can be empty"
|
608 |
+
msgstr "Puede estar vacío"
|
609 |
+
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1137
|
612 |
+
msgid "Check for E-mail syntax"
|
613 |
+
msgstr "Checar formato de e-mail"
|
614 |
+
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
617 |
+
msgid "Can be modified"
|
618 |
+
msgstr "Puede ser modificado"
|
619 |
+
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:718
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
622 |
+
msgid "Can be modified only if empty"
|
623 |
+
msgstr "Puede ser modificado solo si está vacío"
|
624 |
+
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
627 |
+
msgid "Can be modified only by admin"
|
628 |
+
msgstr "Puede ser modificado solo por el administrador"
|
629 |
+
|
630 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
632 |
+
msgid "Can be modified only by admin or if empty"
|
633 |
+
msgstr "Puede ser modificado solo por el administrador o si está vacío"
|
634 |
+
|
635 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:721
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1144
|
637 |
+
msgid "Cannot be modified"
|
638 |
+
msgstr "No puede ser modificado"
|
639 |
+
|
640 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
642 |
+
msgid "Should be equal TO"
|
643 |
+
msgstr "Debe ser igual a"
|
644 |
+
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
647 |
+
msgid "Case sensitive"
|
648 |
+
msgstr "Distinción mayúsculas y minúsculas"
|
649 |
+
|
650 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:734
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
652 |
+
msgid "Regular Expression"
|
653 |
+
msgstr "Expresión regular"
|
654 |
+
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:737
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1157
|
657 |
+
msgid "Show the field in the registration"
|
658 |
+
msgstr "Mostrar el campo en el registro"
|
659 |
+
|
660 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:740
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1160
|
662 |
+
msgid "Show the field in User's profile"
|
663 |
+
msgstr "Mostrar el campo en el perfil del usuario"
|
664 |
+
|
665 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1169
|
667 |
+
msgid "Show the field in A&U Extended menu"
|
668 |
+
msgstr "Mostrar el campo en el menú extendido de A&U"
|
669 |
+
|
670 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:746
|
671 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1172
|
672 |
+
#, fuzzy
|
673 |
+
msgid "Show the field in the search engine"
|
674 |
+
msgstr "Mostrar el campo en el registro"
|
675 |
+
|
676 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
|
677 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1175
|
678 |
+
#, fuzzy
|
679 |
+
msgid "Show the field in the blog"
|
680 |
+
msgstr "Mostrar el campo en el registro"
|
681 |
+
|
682 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:752
|
683 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
684 |
+
#, fuzzy
|
685 |
+
msgid "Show the field if the role is at least:"
|
686 |
+
msgstr "Mostrar el campo en el registro"
|
687 |
+
|
688 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:754
|
689 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1180
|
690 |
+
msgid "Anonymous"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
|
694 |
+
msgid "Clear"
|
695 |
+
msgstr "Vaciar"
|
696 |
+
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:813
|
698 |
+
msgid "Invert selection"
|
699 |
+
msgstr "Invertir Selección"
|
700 |
+
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:814
|
702 |
+
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
703 |
+
msgstr "&lquot;Está seguro de que quiere borrar los campos y todos los datos insertados por los usuarios?"
|
704 |
+
|
705 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
706 |
+
msgid "WordPress Fields"
|
707 |
+
msgstr "Campos WordPress"
|
708 |
+
|
709 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
|
710 |
+
msgid "None!"
|
711 |
+
msgstr "Ninguno!"
|
712 |
+
|
713 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
714 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1079
|
715 |
+
msgid "Order"
|
716 |
+
msgstr "Orden"
|
717 |
+
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1191
|
719 |
+
msgid "Reset"
|
720 |
+
msgstr "Reestablecer"
|
721 |
+
|
722 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1248
|
723 |
+
#, fuzzy
|
724 |
+
msgid "select"
|
725 |
+
msgstr "Borrar"
|
726 |
+
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1351
|
728 |
+
#, php-format
|
729 |
+
msgid "Users Matching \"%s\""
|
730 |
+
msgstr "Usuarios que concuerdan con \"%s\""
|
731 |
+
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
733 |
+
msgid "Users Extended List"
|
734 |
+
msgstr "Lista de usuarios extendida"
|
735 |
+
|
736 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
737 |
+
msgid "Authors & Users Extended List"
|
738 |
+
msgstr "Lista de autores y usuarios extendida"
|
739 |
+
|
740 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
|
741 |
+
msgid "Search Users"
|
742 |
+
msgstr "Buscar Usuarios"
|
743 |
+
|
744 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1435
|
745 |
+
msgid "« Back to All Users"
|
746 |
+
msgstr "« Regresar a \"todos los usuarios\""
|
747 |
+
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
749 |
+
msgid "Users per page"
|
750 |
+
msgstr "Usuarios por página"
|
751 |
+
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
753 |
+
msgid "Apply"
|
754 |
+
msgstr "Aplicar"
|
755 |
+
|
756 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1472
|
758 |
+
msgid "Username"
|
759 |
+
msgstr "Nombre de usuario"
|
760 |
+
|
761 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
762 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
763 |
+
msgid "E-mail"
|
764 |
+
msgstr "Correo electrónico"
|
765 |
+
|
766 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
767 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
|
768 |
+
msgid "Role"
|
769 |
+
msgstr "Rol"
|
770 |
+
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
772 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
773 |
+
msgid "Posts"
|
774 |
+
msgstr "Entradas"
|
775 |
+
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1604
|
777 |
+
msgid "View posts by this author"
|
778 |
+
msgstr "Ver entradas de este autor"
|
779 |
+
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1635
|
781 |
+
#, php-format
|
782 |
+
msgid "e-mail: %s"
|
783 |
+
msgstr "correo electrónico: %s"
|
784 |
+
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:327
|
786 |
+
msgid "no fieldset"
|
787 |
+
msgstr "no hay grupo de campos"
|
788 |
+
|
789 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
790 |
+
#, php-format
|
791 |
+
msgid "File '%s' doesn't exist?"
|
792 |
+
msgstr "Archivo '%s' no existente?"
|
793 |
+
|
794 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
795 |
+
msgid "The GD image library is not installed."
|
796 |
+
msgstr "La librería GD image no está instalada."
|
797 |
+
|
798 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
799 |
+
#, php-format
|
800 |
+
msgid "File '%s' is not an image."
|
801 |
+
msgstr "El archivo '%s' no es una imagen."
|
802 |
+
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
804 |
+
msgid "hasn’t a correct email syntax."
|
805 |
+
msgstr "no está en el formato correcto de e-mail. "
|
806 |
+
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
808 |
+
msgid "couldn’t be empty."
|
809 |
+
msgstr "no puede estar vacío."
|
810 |
+
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:377
|
812 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:386
|
813 |
+
msgid "isn’t correct"
|
814 |
+
msgstr "no es correcto"
|
815 |
+
|
816 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
817 |
+
msgid "YES"
|
818 |
+
msgstr "SI"
|
819 |
+
|
820 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
821 |
+
msgid "NO"
|
822 |
+
msgstr "NO"
|
823 |
+
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:388
|
825 |
+
msgid "should be"
|
826 |
+
msgstr "no debe ser"
|
827 |
+
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
829 |
+
msgid "should be an image."
|
830 |
+
msgstr "no debe ser una imagen."
|
831 |
+
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
833 |
+
msgid "couldn’t have size less than"
|
834 |
+
msgstr "no puede tener un tamaño menor a"
|
835 |
+
|
836 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
837 |
+
msgid "couldn’t have length less than"
|
838 |
+
msgstr "no puede tener una longitud menor a"
|
839 |
+
|
840 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
841 |
+
msgid "couldn’t have size different than"
|
842 |
+
msgstr "no puede tener tamaño diferente a"
|
843 |
+
|
844 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
845 |
+
msgid "couldn’t have length different than"
|
846 |
+
msgstr "no puede tener longitud diferente a"
|
847 |
+
|
848 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
849 |
+
msgid "couldn’t have size more than"
|
850 |
+
msgstr "no puede tener tamaño mayor a"
|
851 |
+
|
852 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
853 |
+
msgid "couldn’t have length more than"
|
854 |
+
msgstr "no puede tener longitud mayor a"
|
855 |
+
|
856 |
+
#, fuzzy
|
857 |
+
#~ msgid ""
|
858 |
+
#~ "<strong>Note:</strong> this website let you personalize your password; "
|
859 |
+
#~ "after activating the user/blog will be displayed another password, do not "
|
860 |
+
#~ "care about that!"
|
861 |
+
#~ msgstr ""
|
862 |
+
#~ "<strong>Anm.:</strong> Diese Webseite lässt Sie Ihr Passwort frei wählen. "
|
863 |
+
#~ "Nach der Registrierung erhalten Sie eine E-Mail mit einem anderen "
|
864 |
+
#~ "Passwort. Bitte löschen Sie diese ungesehen."
|
865 |
+
#~ msgid "Disable get_cimyFieldValue function"
|
866 |
+
#~ msgstr "Funktion get_cimyFieldValue ist ausgeschaltet"
|
867 |
+
#~ msgid "leave disabled if you don't know what to do"
|
868 |
+
#~ msgstr "Wenn Du nicht weißt, wofür Du es brauchst, lass es ausgeschaltet!"
|
869 |
+
#~ msgid "All Users"
|
870 |
+
#~ msgstr "Alle User"
|
871 |
+
#~ msgid "Update Options »"
|
872 |
+
#~ msgstr "Update Optionen »"
|
873 |
+
#~ msgid "Hide actions button"
|
874 |
+
#~ msgstr "Bearbeiten-Feld nicht anzeigen"
|
875 |
+
#~ msgid "User ID"
|
876 |
+
#~ msgstr "User ID"
|
877 |
+
#~ msgid "Edit"
|
878 |
+
#~ msgstr "Bearbeiten"
|
879 |
+
|
880 |
+
#, fuzzy
|
881 |
+
#~ msgid "label"
|
882 |
+
#~ msgstr "Bezeichnung"
|
883 |
+
|
langs/cimy_uef-fr_FR.mo
CHANGED
Binary file
|
langs/cimy_uef-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-
|
6 |
-
"PO-Revision-Date: 2009-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,182 +16,351 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
34 |
-
|
35 |
-
|
36 |
-
msgstr "SVP chargez une image avec l'une des extensions suivantes"
|
37 |
|
38 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
39 |
-
|
40 |
-
|
41 |
-
msgstr "Supprimer le champ"
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
#, fuzzy
|
45 |
-
msgid "
|
46 |
-
msgstr "
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
49 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
55 |
-
|
56 |
-
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:301
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:307
|
59 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:319
|
60 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:325
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:337
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:343
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:419
|
64 |
-
msgid "ERROR"
|
65 |
-
msgstr "ERREUR"
|
66 |
|
67 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
|
71 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
72 |
-
msgid "
|
73 |
-
msgstr "
|
74 |
|
75 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
76 |
-
|
77 |
-
|
78 |
-
msgstr "n’est pas correct"
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
81 |
-
|
82 |
-
|
|
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
89 |
-
msgid "
|
90 |
-
msgstr "
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
93 |
-
msgid "
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
107 |
|
108 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
109 |
-
msgid "
|
110 |
-
msgstr "
|
111 |
|
112 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
113 |
-
msgid "
|
114 |
-
msgstr "
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
117 |
-
msgid "
|
118 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
121 |
#, fuzzy
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
130 |
msgid "Password"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
134 |
#, fuzzy
|
135 |
msgid "First name"
|
136 |
msgstr "Montrer le prénom"
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
139 |
#, fuzzy
|
140 |
msgid "Last name"
|
141 |
msgstr "Montrer le nom"
|
142 |
|
143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
144 |
#, fuzzy
|
145 |
msgid "Nickname"
|
146 |
msgstr "Nom"
|
147 |
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
151 |
msgid "Website"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
155 |
msgid "AIM"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
159 |
#, fuzzy
|
160 |
msgid "Yahoo IM"
|
161 |
msgstr "Montrer Yahoo IM"
|
162 |
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
164 |
#, fuzzy
|
165 |
msgid "Jabber / Google Talk"
|
166 |
msgstr "Montrer Jabber / Google Talk"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
169 |
msgid "Biographical Info"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
175 |
-
msgid "Options"
|
176 |
-
msgstr "Options"
|
177 |
-
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:612
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:111
|
180 |
msgid "Fields"
|
181 |
msgstr "Champs"
|
182 |
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
185 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
186 |
-
msgid "Authors & Users Extended"
|
187 |
-
msgstr "Auteurs & Utilisateurs Etendus"
|
188 |
-
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:613
|
190 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:622
|
191 |
msgid "A&U Extended"
|
192 |
msgstr "A&U Etendu"
|
193 |
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
195 |
#, fuzzy
|
196 |
msgid "Users Extended"
|
197 |
msgstr "Liste étendue des auteurs & utilisateurs"
|
@@ -217,17 +386,17 @@ msgid "Change order"
|
|
217 |
msgstr "Changer l'ordre"
|
218 |
|
219 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Min length"
|
222 |
msgstr "Longueur min"
|
223 |
|
224 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
225 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
226 |
msgid "Exact length"
|
227 |
msgstr "Longueur exacte"
|
228 |
|
229 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
231 |
msgid "Max length"
|
232 |
msgstr "Longueur max"
|
233 |
|
@@ -235,593 +404,469 @@ msgstr "Longueur max"
|
|
235 |
msgid "Exact or Max length"
|
236 |
msgstr "Longueur exacte ou max"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
msgid "changed to"
|
240 |
msgstr "changé à"
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
243 |
msgid "You cannot give an order that misses some numbers"
|
244 |
msgstr "Vous ne pouvez pas donner un ordre qui manque des nombres"
|
245 |
|
246 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Nothing selected"
|
249 |
msgstr "Rien n'est sélectionné"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Field(s)"
|
253 |
msgstr "Champ(s)"
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "deleted correctly"
|
257 |
msgstr "supprmé(e) correctement"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
261 |
msgid "Min size"
|
262 |
msgstr "Taille min"
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
266 |
msgid "Exact size"
|
267 |
msgstr "Taille exacte"
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
271 |
msgid "Max size"
|
272 |
msgstr "Taille max"
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
275 |
msgid "Exact or Max size"
|
276 |
msgstr "Taille exacte ou Max"
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
279 |
msgid "Name not specified"
|
280 |
msgstr "Nom non spécifié"
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
283 |
msgid "Name cannot contains spaces"
|
284 |
msgstr "Le nom ne peut pas contenir d'espace"
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
287 |
msgid "Label not specified"
|
288 |
msgstr "Label non spécifié"
|
289 |
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
291 |
msgid "not selected (with this type is necessary)"
|
292 |
msgstr "non sélectionné (avec ce type, c'est nécessaire)"
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
295 |
msgid "If you select"
|
296 |
msgstr "Si vous sélectionnez"
|
297 |
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
299 |
msgid "you cannot select Min or Max"
|
300 |
msgstr "vous ne pouvez pas sélectionner Min ou Max"
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
303 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
305 |
msgid "should be in the range of"
|
306 |
msgstr "doit être compris entre"
|
307 |
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Equal TO not specified"
|
311 |
msgstr "Egal A non spécifié"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
msgid "With checkbox type Equal TO can only be"
|
315 |
msgstr "Avec le type checkbox, \"Egal A\" ne peut être que"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
318 |
msgid "With radio type Equal TO can only be"
|
319 |
msgstr "Avec le type radio, \"Egal A\" ne peut être que"
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
322 |
msgid "With checkbox type Value can only be"
|
323 |
msgstr "Avec le type checkbox, la valeur ne peut être que"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
326 |
msgid "With radio type Value can only be"
|
327 |
msgstr "Avec le type radio, la valeur ne peut être que"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
330 |
msgid "Field inserted correctly"
|
331 |
msgstr "Champ inséré correctement"
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
334 |
msgid "Field #"
|
335 |
msgstr "Champ #"
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
338 |
msgid "updated correctly"
|
339 |
msgstr "mis à jour correctement"
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
342 |
msgid "Name inserted is just in the database, change to another one"
|
343 |
msgstr "Le nom est déjà dans la base de données, merci de le changer"
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:411
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:411
|
347 |
-
msgid "Add a new Field"
|
348 |
-
msgstr "Ajouter un nouveau champ"
|
349 |
-
|
350 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
352 |
-
|
353 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
357 |
msgstr "Pour ajouter un nouveau champ, vous devez choisir un nom, un type et un label; la valeur et la description sont optionnelles. Les règles sont appliquées lors de l'inscription d'un utilisateur."
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
360 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
361 |
msgstr "Avec les types <strong>radio</strong> et <strong>checkbox</strong>: <em>Valeur</em> et <em>égal A</em> peuvent seulement être 'Yes' ou 'No' ce qui signifie 'sélectionné' ou 'non sélectionné'"
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
365 |
msgstr "Avec le type <strong>drop-down</strong>: vous devez ajouter toutes les options dans le label, par exemple: label/item1,item2,item3"
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
369 |
msgstr "Avec le type <strong>picture</strong>: vous pouvez pré-charger une image par défaut en indiquant son url dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>égal A</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
373 |
msgstr "Avec le type <strong>picture-url</strong>: vous pouvez pré-charger une image par défaut en indiqunt l'url dans <em>Valeur</em>; <em>égal A</em> indique la taille de la largeur max en pixels (la hauteur sera proportionnelle)"
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
376 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
377 |
msgstr "Avec le type <strong>registration-date</strong>: <em>égal A</em> indique un format date et heure"
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
#, fuzzy
|
381 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
382 |
msgstr "Avec le type <strong>picture</strong>: vous pouvez pré-charger une image par défaut en indiquant son url dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>égal A</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
390 |
msgid "Name"
|
391 |
msgstr "Nom"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
msgid "Value"
|
398 |
msgstr "Valeur"
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
msgid "Type"
|
405 |
msgstr "Type"
|
406 |
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
msgid "Label"
|
412 |
msgstr "Label"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
418 |
msgid "Description"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
423 |
msgid "Rules"
|
424 |
msgstr "Règles"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
428 |
msgid "Actions"
|
429 |
msgstr "Actions"
|
430 |
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
432 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
433 |
#, fuzzy
|
434 |
msgid "Fieldset"
|
435 |
msgstr "Champs"
|
436 |
|
437 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
439 |
msgid "Can be empty"
|
440 |
msgstr "Peut être vide"
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
444 |
msgid "Check for E-mail syntax"
|
445 |
msgstr "Vérifier la syntaxe de l'e-mail"
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
449 |
msgid "Can be modified"
|
450 |
msgstr "Peut être modifié"
|
451 |
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
454 |
msgid "Can be modified only if empty"
|
455 |
msgstr "Ne peut être modifié que s'il est vide"
|
456 |
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
459 |
msgid "Can be modified only by admin"
|
460 |
msgstr "Ne peut être modifié que par un admin"
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
464 |
msgid "Can be modified only by admin or if empty"
|
465 |
msgstr "Ne peut être modifié que par un admin ou s'il est vide"
|
466 |
|
467 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
469 |
msgid "Cannot be modified"
|
470 |
msgstr "Ne peut pas être modifié"
|
471 |
|
472 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
474 |
msgid "Should be equal TO"
|
475 |
msgstr "Doit être égal A"
|
476 |
|
477 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
479 |
msgid "Case sensitive"
|
480 |
msgstr "Tenir compte des majuscules (case sensitive)"
|
481 |
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
484 |
msgid "Regular Expression"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
msgid "Show the field in the registration"
|
490 |
msgstr "Montrer le champ lors de l'inscription"
|
491 |
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
494 |
msgid "Show the field in User's profile"
|
495 |
msgstr "Montrer le champ dans le profil de l'utilisateur"
|
496 |
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
499 |
msgid "Show the field in A&U Extended menu"
|
500 |
msgstr "Montrer le champ dans le menu A&U étendu"
|
501 |
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
503 |
-
|
504 |
-
|
|
|
|
|
505 |
|
506 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
507 |
-
|
508 |
-
|
|
|
|
|
509 |
|
510 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
511 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
msgstr "Champs Supplémentaires"
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
518 |
-
|
519 |
-
|
|
|
520 |
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
522 |
-
|
|
|
|
|
|
|
523 |
msgid "Invert selection"
|
524 |
msgstr "Inverser la sélection"
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1048
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
529 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
530 |
msgstr "Etes vous sur de vouloir supprimer ce(s) champ(s) et toutes les données insérées par vos utilisateurs ?"
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
534 |
msgid "Order"
|
535 |
msgstr "Ordre"
|
536 |
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
538 |
msgid "Reset"
|
539 |
msgstr "Réinitialiser"
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
542 |
#, php-format
|
543 |
msgid "Users Matching \"%s\""
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
547 |
#, fuzzy
|
548 |
msgid "Users Extended List"
|
549 |
msgstr "Liste étendue des auteurs & utilisateurs"
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
552 |
msgid "Authors & Users Extended List"
|
553 |
msgstr "Liste étendue des auteurs & utilisateurs"
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
556 |
msgid "Search Users"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
msgid "« Back to All Users"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
#, fuzzy
|
565 |
msgid "Users per page"
|
566 |
msgstr "Table des données utilisateurs"
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
569 |
msgid "Apply"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
574 |
msgid "Username"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
579 |
msgid "E-mail"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
#, fuzzy
|
585 |
msgid "Role"
|
586 |
msgstr "Règles"
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
590 |
msgid "Posts"
|
591 |
msgstr "Articles"
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
msgid "View posts by this author"
|
595 |
msgstr "Voir les articles de cet auteur"
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
#, php-format
|
599 |
msgid "e-mail: %s"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
607 |
-
msgid "WordPress Fields table deleted"
|
608 |
-
msgstr "Table des champs wordpress supprimée"
|
609 |
-
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
611 |
-
msgid "Extra Fields table emptied"
|
612 |
-
msgstr "Table des champs supplémentaires vidée"
|
613 |
-
|
614 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
615 |
-
msgid "Extra Fields table deleted"
|
616 |
-
msgstr "Table des champs supplémentaires supprimée"
|
617 |
-
|
618 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
619 |
-
msgid "Users Data table emptied"
|
620 |
-
msgstr "Table des données utilsateurs vidée"
|
621 |
-
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
623 |
-
msgid "Users Data table deleted"
|
624 |
-
msgstr "Table des données utilsateurs supprimée"
|
625 |
-
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
627 |
-
msgid "Options set to default values"
|
628 |
-
msgstr "Options réinitialisées avec les valeurs par défaut"
|
629 |
-
|
630 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
631 |
-
msgid "Options deleted"
|
632 |
-
msgstr "Options supprimées"
|
633 |
-
|
634 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
635 |
-
msgid "Options changed"
|
636 |
-
msgstr "Options changées"
|
637 |
-
|
638 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
639 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
|
640 |
-
msgid "Save Changes"
|
641 |
-
msgstr ""
|
642 |
-
|
643 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:433
|
644 |
-
msgid "General"
|
645 |
-
msgstr "Général"
|
646 |
-
|
647 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:441
|
648 |
-
msgid "installed is"
|
649 |
-
msgstr "installé"
|
650 |
-
|
651 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
652 |
-
msgid "OPTIONS DELETED!"
|
653 |
-
msgstr "OPTIONS SUPPRIMEES!"
|
654 |
-
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
657 |
-
msgid "Fix the problem"
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
661 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
662 |
-
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
663 |
-
msgstr ""
|
664 |
-
|
665 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:451
|
666 |
-
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
667 |
-
msgstr "VERSION NE CORRESPONDANT PAS! Ceci arrive lorsque vous n'ave pas désactivé et réactivé le plug-in après sa mise à jour! Cela peut poser problème..."
|
668 |
-
|
669 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:459
|
670 |
-
msgid "Picture/Avatar upload"
|
671 |
-
msgstr ""
|
672 |
-
|
673 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
674 |
-
msgid "is created and writable"
|
675 |
-
msgstr ""
|
676 |
|
677 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
678 |
-
|
|
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
682 |
-
msgid "
|
683 |
-
msgstr "Database"
|
684 |
-
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
687 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:517
|
688 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
689 |
-
msgid "select action"
|
690 |
-
msgstr "sélectionner une action"
|
691 |
-
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
693 |
-
msgid "Default values"
|
694 |
-
msgstr "Valeurs par défaut"
|
695 |
-
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
698 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
699 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
700 |
-
msgid "Delete"
|
701 |
-
msgstr "Supprimer"
|
702 |
-
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:505
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:523
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:541
|
707 |
-
msgid "NOT PRESENT"
|
708 |
-
msgstr "NON PRESENT"
|
709 |
-
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:491
|
711 |
-
msgid "WordPress Fields table"
|
712 |
-
msgstr "Table des champs Wordpress"
|
713 |
-
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:499
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
716 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:535
|
717 |
-
msgid "Empty"
|
718 |
-
msgstr "Vider"
|
719 |
-
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:511
|
721 |
-
msgid "Extra Fields table"
|
722 |
-
msgstr "Table des champs supplémentaires"
|
723 |
-
|
724 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:528
|
725 |
-
msgid "Users Data table"
|
726 |
-
msgstr "Table des données utilisateurs"
|
727 |
-
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
729 |
-
msgid "all data inserted by users in all and only extra fields"
|
730 |
-
msgstr "toutes les données insérées par les utilsateurs et seulement les champs supplémentaires"
|
731 |
-
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
733 |
-
msgid "Force tables creation"
|
734 |
-
msgstr "Forcer la création des tables"
|
735 |
-
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
737 |
-
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:558
|
745 |
-
#, fuzzy
|
746 |
-
msgid "Extra Fields section title"
|
747 |
-
msgstr "Table des champs supplémentaires"
|
748 |
-
|
749 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
750 |
-
msgid "Fieldset's titles, separates with comma"
|
751 |
-
msgstr "Titres des regroupements, séparés par des virgules"
|
752 |
-
|
753 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
754 |
-
msgid "example: title1,title2,title3"
|
755 |
-
msgstr "exemple : titre1,titre2,titre3"
|
756 |
-
|
757 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
758 |
-
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
762 |
-
msgid "
|
763 |
-
msgstr "
|
764 |
-
|
765 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:578
|
766 |
-
msgid "Hide name field"
|
767 |
-
msgstr "Cacher le champ nom"
|
768 |
-
|
769 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:583
|
770 |
-
msgid "Hide email field"
|
771 |
-
msgstr "Cacher le champ e-mail"
|
772 |
-
|
773 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:587
|
774 |
-
#, fuzzy
|
775 |
-
msgid "Hide role field"
|
776 |
-
msgstr "Cacher le champ nom"
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
779 |
-
msgid "
|
780 |
-
msgstr "
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
783 |
-
|
784 |
-
|
|
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
787 |
-
msgid "
|
788 |
-
msgstr "
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
791 |
-
msgid "
|
792 |
-
msgstr ""
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
795 |
-
msgid "
|
796 |
-
msgstr "
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
799 |
-
msgid "
|
800 |
-
msgstr "
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
803 |
-
msgid "
|
804 |
-
msgstr "
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
807 |
-
msgid "
|
808 |
-
msgstr "
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
811 |
-
msgid "
|
812 |
-
msgstr "
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
815 |
-
msgid "
|
816 |
-
msgstr "
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
819 |
-
msgid "
|
820 |
-
msgstr "
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
823 |
-
msgid "
|
824 |
-
msgstr ""
|
825 |
|
826 |
#~ msgid "Disable get_cimyFieldValue function"
|
827 |
#~ msgstr "Désactiver la fonction get_cimyFieldValue"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-11-22 23:52+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-11-22 23:52+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:34
|
20 |
+
msgid "WordPress Fields table emptied"
|
21 |
+
msgstr "Table des champs wordpress vidée"
|
22 |
+
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
24 |
+
msgid "WordPress Fields table deleted"
|
25 |
+
msgstr "Table des champs wordpress supprimée"
|
26 |
+
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
28 |
+
msgid "Extra Fields table emptied"
|
29 |
+
msgstr "Table des champs supplémentaires vidée"
|
30 |
+
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
32 |
+
msgid "Extra Fields table deleted"
|
33 |
+
msgstr "Table des champs supplémentaires supprimée"
|
34 |
+
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
36 |
+
msgid "Users Data table emptied"
|
37 |
+
msgstr "Table des données utilsateurs vidée"
|
38 |
+
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
40 |
+
msgid "Users Data table deleted"
|
41 |
+
msgstr "Table des données utilsateurs supprimée"
|
42 |
+
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
44 |
+
msgid "Options set to default values"
|
45 |
+
msgstr "Options réinitialisées avec les valeurs par défaut"
|
46 |
+
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
48 |
+
msgid "Options deleted"
|
49 |
+
msgstr "Options supprimées"
|
50 |
+
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
52 |
+
msgid "Options changed"
|
53 |
+
msgstr "Options changées"
|
54 |
+
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:401
|
56 |
+
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:410
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:476
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:673
|
62 |
+
msgid "Options"
|
63 |
+
msgstr "Options"
|
64 |
+
|
65 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:430
|
67 |
+
msgid "Add a new Field"
|
68 |
+
msgstr "Ajouter un nouveau champ"
|
69 |
+
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
71 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
73 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
|
74 |
+
msgid "Extra Fields"
|
75 |
+
msgstr "Champs Supplémentaires"
|
76 |
+
|
77 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:457
|
79 |
+
msgid "SUCCESSFUL"
|
80 |
+
msgstr "AVEC SUCCES"
|
81 |
+
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:434
|
83 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
84 |
+
msgid "Save Changes"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:435
|
88 |
+
msgid "General"
|
89 |
+
msgstr "Général"
|
90 |
+
|
91 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:443
|
92 |
+
msgid "installed is"
|
93 |
+
msgstr "installé"
|
94 |
+
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:447
|
96 |
+
msgid "OPTIONS DELETED!"
|
97 |
+
msgstr "OPTIONS SUPPRIMEES!"
|
98 |
+
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:450
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:455
|
101 |
+
msgid "Fix the problem"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
105 |
+
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
106 |
+
msgstr "VERSION NE CORRESPONDANT PAS! Ceci arrive lorsque vous n'ave pas désactivé et réactivé le plug-in après sa mise à jour! Cela peut poser problème..."
|
|
|
107 |
|
108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
109 |
+
msgid "Picture/Avatar upload"
|
110 |
+
msgstr ""
|
|
|
111 |
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:465
|
113 |
+
msgid "is created and writable"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:467
|
117 |
+
msgid "is NOT created or webserver does NOT have permission to write on it"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:473
|
121 |
+
msgid "Database"
|
122 |
+
msgstr "Database"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
125 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
128 |
+
msgid "select action"
|
129 |
+
msgstr "sélectionner une action"
|
130 |
+
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
132 |
+
msgid "Default values"
|
133 |
+
msgstr "Valeurs par défaut"
|
134 |
+
|
135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
139 |
+
msgid "Delete"
|
140 |
+
msgstr "Supprimer"
|
141 |
+
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:488
|
143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:507
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
146 |
+
msgid "NOT PRESENT"
|
147 |
+
msgstr "NON PRESENT"
|
148 |
+
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:493
|
150 |
+
msgid "WordPress Fields table"
|
151 |
+
msgstr "Table des champs Wordpress"
|
152 |
+
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:501
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:520
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
156 |
+
msgid "Empty"
|
157 |
+
msgstr "Vider"
|
158 |
+
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:513
|
160 |
+
msgid "Extra Fields table"
|
161 |
+
msgstr "Table des champs supplémentaires"
|
162 |
+
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
164 |
+
msgid "Users Data table"
|
165 |
+
msgstr "Table des données utilisateurs"
|
166 |
+
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
168 |
+
msgid "all data inserted by users in all and only extra fields"
|
169 |
+
msgstr "toutes les données insérées par les utilsateurs et seulement les champs supplémentaires"
|
170 |
+
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
172 |
+
msgid "Force tables creation"
|
173 |
+
msgstr "Forcer la création des tables"
|
174 |
+
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
176 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
180 |
+
msgid "User Profile"
|
181 |
+
msgstr "Profil utilisateur"
|
182 |
+
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:560
|
184 |
#, fuzzy
|
185 |
+
msgid "Extra Fields section title"
|
186 |
+
msgstr "Table des champs supplémentaires"
|
187 |
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
189 |
+
msgid "Fieldset's titles, separates with comma"
|
190 |
+
msgstr "Titres des regroupements, séparés par des virgules"
|
191 |
+
|
192 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
193 |
+
msgid "example: title1,title2,title3"
|
194 |
+
msgstr "exemple : titre1,titre2,titre3"
|
195 |
+
|
196 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
197 |
+
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
202 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
203 |
+
msgid "Authors & Users Extended"
|
204 |
+
msgstr "Auteurs & Utilisateurs Etendus"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
207 |
+
msgid "Hide username field"
|
208 |
+
msgstr "Cacher le champ nom d'utilisateur"
|
209 |
|
210 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
211 |
+
msgid "Hide name field"
|
212 |
+
msgstr "Cacher le champ nom"
|
213 |
|
214 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:585
|
215 |
+
msgid "Hide email field"
|
216 |
+
msgstr "Cacher le champ e-mail"
|
|
|
217 |
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
219 |
+
#, fuzzy
|
220 |
+
msgid "Hide role field"
|
221 |
+
msgstr "Cacher le champ nom"
|
222 |
|
223 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
224 |
+
msgid "Hide website field"
|
225 |
+
msgstr "Cacher le champ du site web"
|
226 |
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
228 |
+
msgid "Hide n. posts field"
|
229 |
+
msgstr "Cacher le champ n. articles"
|
230 |
|
231 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:602
|
232 |
+
msgid "WordPress hidden fields"
|
233 |
+
msgstr "Champs Wordpress cachés"
|
234 |
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
236 |
+
msgid "Show password"
|
237 |
+
msgstr ""
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
240 |
+
msgid "Show first name"
|
241 |
+
msgstr "Montrer le prénom"
|
242 |
|
243 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
244 |
+
msgid "Show last name"
|
245 |
+
msgstr "Montrer le nom"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
248 |
+
msgid "Show nickname"
|
249 |
+
msgstr "Montrer le surnom"
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
252 |
+
msgid "Show website"
|
253 |
+
msgstr "Montrer le site web"
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
256 |
+
msgid "Show AIM"
|
257 |
+
msgstr "Montrer AIM"
|
258 |
+
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
260 |
+
msgid "Show Yahoo IM"
|
261 |
+
msgstr "Montrer Yahoo IM"
|
262 |
+
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:633
|
264 |
+
msgid "Show Jabber / Google Talk"
|
265 |
+
msgstr "Montrer Jabber / Google Talk"
|
266 |
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:637
|
268 |
+
msgid "Show Biographical Info"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:292
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:729
|
273 |
#, fuzzy
|
274 |
+
msgid "Please upload a file with one of the following extensions"
|
275 |
+
msgstr "SVP chargez une image avec l'une des extensions suivantes"
|
276 |
+
|
277 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:298
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:735
|
279 |
+
msgid "Please upload an image with one of the following extensions"
|
280 |
+
msgstr "SVP chargez une image avec l'une des extensions suivantes"
|
281 |
+
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:422
|
283 |
+
#, fuzzy
|
284 |
+
msgid "Delete the file"
|
285 |
+
msgstr "Supprimer le champ"
|
286 |
+
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:423
|
288 |
+
#, fuzzy
|
289 |
+
msgid "Update the file"
|
290 |
+
msgstr "Mettre à jour le champ"
|
291 |
|
292 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:426
|
293 |
+
#, fuzzy
|
294 |
+
msgid "Delete the picture"
|
295 |
+
msgstr "Supprimer le champ"
|
296 |
+
|
297 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:427
|
298 |
+
#, fuzzy
|
299 |
+
msgid "Update the picture"
|
300 |
+
msgstr "Mettre à jour le champ"
|
301 |
+
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
303 |
+
msgid "Picture URL:"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:215
|
307 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:222
|
311 |
msgid "Password"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:242
|
315 |
#, fuzzy
|
316 |
msgid "First name"
|
317 |
msgstr "Montrer le prénom"
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
|
320 |
#, fuzzy
|
321 |
msgid "Last name"
|
322 |
msgstr "Montrer le nom"
|
323 |
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:282
|
325 |
#, fuzzy
|
326 |
msgid "Nickname"
|
327 |
msgstr "Nom"
|
328 |
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
332 |
msgid "Website"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:322
|
336 |
msgid "AIM"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:342
|
340 |
#, fuzzy
|
341 |
msgid "Yahoo IM"
|
342 |
msgstr "Montrer Yahoo IM"
|
343 |
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:362
|
345 |
#, fuzzy
|
346 |
msgid "Jabber / Google Talk"
|
347 |
msgstr "Montrer Jabber / Google Talk"
|
348 |
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:382
|
350 |
msgid "Biographical Info"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:674
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
|
|
|
|
|
|
|
|
|
|
|
|
355 |
msgid "Fields"
|
356 |
msgstr "Champs"
|
357 |
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
|
|
|
|
|
|
|
|
|
|
|
|
360 |
msgid "A&U Extended"
|
361 |
msgstr "A&U Etendu"
|
362 |
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:679
|
364 |
#, fuzzy
|
365 |
msgid "Users Extended"
|
366 |
msgstr "Liste étendue des auteurs & utilisateurs"
|
386 |
msgstr "Changer l'ordre"
|
387 |
|
388 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
390 |
msgid "Min length"
|
391 |
msgstr "Longueur min"
|
392 |
|
393 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1067
|
395 |
msgid "Exact length"
|
396 |
msgstr "Longueur exacte"
|
397 |
|
398 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
400 |
msgid "Max length"
|
401 |
msgstr "Longueur max"
|
402 |
|
404 |
msgid "Exact or Max length"
|
405 |
msgstr "Longueur exacte ou max"
|
406 |
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
408 |
msgid "changed to"
|
409 |
msgstr "changé à"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:124
|
412 |
msgid "You cannot give an order that misses some numbers"
|
413 |
msgstr "Vous ne pouvez pas donner un ordre qui manque des nombres"
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:127
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:200
|
417 |
msgid "Nothing selected"
|
418 |
msgstr "Rien n'est sélectionné"
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
421 |
msgid "Field(s)"
|
422 |
msgstr "Champ(s)"
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
425 |
msgid "deleted correctly"
|
426 |
msgstr "supprmé(e) correctement"
|
427 |
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:229
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
430 |
msgid "Min size"
|
431 |
msgstr "Taille min"
|
432 |
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:230
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1059
|
435 |
msgid "Exact size"
|
436 |
msgstr "Taille exacte"
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:231
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
|
440 |
msgid "Max size"
|
441 |
msgstr "Taille max"
|
442 |
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:233
|
444 |
msgid "Exact or Max size"
|
445 |
msgstr "Taille exacte ou Max"
|
446 |
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
448 |
msgid "Name not specified"
|
449 |
msgstr "Nom non spécifié"
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
452 |
msgid "Name cannot contains spaces"
|
453 |
msgstr "Le nom ne peut pas contenir d'espace"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
456 |
msgid "Label not specified"
|
457 |
msgstr "Label non spécifié"
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
460 |
msgid "not selected (with this type is necessary)"
|
461 |
msgstr "non sélectionné (avec ce type, c'est nécessaire)"
|
462 |
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
464 |
msgid "If you select"
|
465 |
msgstr "Si vous sélectionnez"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
468 |
msgid "you cannot select Min or Max"
|
469 |
msgstr "vous ne pouvez pas sélectionner Min ou Max"
|
470 |
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
472 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
474 |
msgid "should be in the range of"
|
475 |
msgstr "doit être compris entre"
|
476 |
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
478 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:328
|
479 |
msgid "Equal TO not specified"
|
480 |
msgstr "Egal A non spécifié"
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
|
483 |
msgid "With checkbox type Equal TO can only be"
|
484 |
msgstr "Avec le type checkbox, \"Egal A\" ne peut être que"
|
485 |
|
486 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:334
|
487 |
msgid "With radio type Equal TO can only be"
|
488 |
msgstr "Avec le type radio, \"Egal A\" ne peut être que"
|
489 |
|
490 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:350
|
491 |
msgid "With checkbox type Value can only be"
|
492 |
msgstr "Avec le type checkbox, la valeur ne peut être que"
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:353
|
495 |
msgid "With radio type Value can only be"
|
496 |
msgstr "Avec le type radio, la valeur ne peut être que"
|
497 |
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
|
499 |
msgid "Field inserted correctly"
|
500 |
msgstr "Champ inséré correctement"
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
503 |
msgid "Field #"
|
504 |
msgstr "Champ #"
|
505 |
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
507 |
msgid "updated correctly"
|
508 |
msgstr "mis à jour correctement"
|
509 |
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:415
|
511 |
msgid "Name inserted is just in the database, change to another one"
|
512 |
msgstr "Le nom est déjà dans la base de données, merci de le changer"
|
513 |
|
|
|
|
|
|
|
|
|
|
|
514 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:378
|
518 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:390
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
526 |
+
msgid "ERROR"
|
527 |
+
msgstr "ERREUR"
|
528 |
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
530 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
531 |
msgstr "Pour ajouter un nouveau champ, vous devez choisir un nom, un type et un label; la valeur et la description sont optionnelles. Les règles sont appliquées lors de l'inscription d'un utilisateur."
|
532 |
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
|
534 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
535 |
msgstr "Avec les types <strong>radio</strong> et <strong>checkbox</strong>: <em>Valeur</em> et <em>égal A</em> peuvent seulement être 'Yes' ou 'No' ce qui signifie 'sélectionné' ou 'non sélectionné'"
|
536 |
|
537 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
538 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
539 |
msgstr "Avec le type <strong>drop-down</strong>: vous devez ajouter toutes les options dans le label, par exemple: label/item1,item2,item3"
|
540 |
|
541 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
|
542 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
543 |
msgstr "Avec le type <strong>picture</strong>: vous pouvez pré-charger une image par défaut en indiquant son url dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>égal A</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
|
544 |
|
545 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
546 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
547 |
msgstr "Avec le type <strong>picture-url</strong>: vous pouvez pré-charger une image par défaut en indiqunt l'url dans <em>Valeur</em>; <em>égal A</em> indique la taille de la largeur max en pixels (la hauteur sera proportionnelle)"
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
|
550 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
551 |
msgstr "Avec le type <strong>registration-date</strong>: <em>égal A</em> indique un format date et heure"
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
554 |
#, fuzzy
|
555 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
556 |
msgstr "Avec le type <strong>picture</strong>: vous pouvez pré-charger une image par défaut en indiquant son url dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>égal A</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
559 |
+
#, fuzzy
|
560 |
+
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
561 |
+
msgstr "Avec le type <strong>picture</strong>: vous pouvez pré-charger une image par défaut en indiquant son url dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>égal A</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
|
562 |
+
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1477
|
569 |
msgid "Name"
|
570 |
msgstr "Nom"
|
571 |
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1094
|
576 |
msgid "Value"
|
577 |
msgstr "Valeur"
|
578 |
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
583 |
msgid "Type"
|
584 |
msgstr "Type"
|
585 |
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
590 |
msgid "Label"
|
591 |
msgstr "Label"
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
597 |
msgid "Description"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:851
|
602 |
msgid "Rules"
|
603 |
msgstr "Règles"
|
604 |
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:852
|
607 |
msgid "Actions"
|
608 |
msgstr "Actions"
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1113
|
612 |
#, fuzzy
|
613 |
msgid "Fieldset"
|
614 |
msgstr "Champs"
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:713
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1136
|
618 |
msgid "Can be empty"
|
619 |
msgstr "Peut être vide"
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1137
|
623 |
msgid "Check for E-mail syntax"
|
624 |
msgstr "Vérifier la syntaxe de l'e-mail"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
628 |
msgid "Can be modified"
|
629 |
msgstr "Peut être modifié"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:718
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
633 |
msgid "Can be modified only if empty"
|
634 |
msgstr "Ne peut être modifié que s'il est vide"
|
635 |
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
638 |
msgid "Can be modified only by admin"
|
639 |
msgstr "Ne peut être modifié que par un admin"
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
643 |
msgid "Can be modified only by admin or if empty"
|
644 |
msgstr "Ne peut être modifié que par un admin ou s'il est vide"
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:721
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1144
|
648 |
msgid "Cannot be modified"
|
649 |
msgstr "Ne peut pas être modifié"
|
650 |
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
652 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
653 |
msgid "Should be equal TO"
|
654 |
msgstr "Doit être égal A"
|
655 |
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
657 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
658 |
msgid "Case sensitive"
|
659 |
msgstr "Tenir compte des majuscules (case sensitive)"
|
660 |
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:734
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
663 |
msgid "Regular Expression"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:737
|
667 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1157
|
668 |
msgid "Show the field in the registration"
|
669 |
msgstr "Montrer le champ lors de l'inscription"
|
670 |
|
671 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:740
|
672 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1160
|
673 |
msgid "Show the field in User's profile"
|
674 |
msgstr "Montrer le champ dans le profil de l'utilisateur"
|
675 |
|
676 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
677 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1169
|
678 |
msgid "Show the field in A&U Extended menu"
|
679 |
msgstr "Montrer le champ dans le menu A&U étendu"
|
680 |
|
681 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:746
|
682 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1172
|
683 |
+
#, fuzzy
|
684 |
+
msgid "Show the field in the search engine"
|
685 |
+
msgstr "Montrer le champ lors de l'inscription"
|
686 |
|
687 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
|
688 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1175
|
689 |
+
#, fuzzy
|
690 |
+
msgid "Show the field in the blog"
|
691 |
+
msgstr "Montrer le champ lors de l'inscription"
|
692 |
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:752
|
694 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
695 |
+
#, fuzzy
|
696 |
+
msgid "Show the field if the role is at least:"
|
697 |
+
msgstr "Montrer le champ lors de l'inscription"
|
|
|
698 |
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:754
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1180
|
701 |
+
msgid "Anonymous"
|
702 |
+
msgstr ""
|
703 |
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
|
705 |
+
msgid "Clear"
|
706 |
+
msgstr "Vider (RAZ)"
|
707 |
+
|
708 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:813
|
709 |
msgid "Invert selection"
|
710 |
msgstr "Inverser la sélection"
|
711 |
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:814
|
|
|
|
|
713 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
714 |
msgstr "Etes vous sur de vouloir supprimer ce(s) champ(s) et toutes les données insérées par vos utilisateurs ?"
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
717 |
+
msgid "WordPress Fields"
|
718 |
+
msgstr "Champs Wordpress"
|
719 |
+
|
720 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
|
721 |
+
msgid "None!"
|
722 |
+
msgstr "Aucun !"
|
723 |
+
|
724 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
725 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1079
|
726 |
msgid "Order"
|
727 |
msgstr "Ordre"
|
728 |
|
729 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1191
|
730 |
msgid "Reset"
|
731 |
msgstr "Réinitialiser"
|
732 |
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1248
|
734 |
+
#, fuzzy
|
735 |
+
msgid "select"
|
736 |
+
msgstr "Supprimer"
|
737 |
+
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1351
|
739 |
#, php-format
|
740 |
msgid "Users Matching \"%s\""
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
744 |
#, fuzzy
|
745 |
msgid "Users Extended List"
|
746 |
msgstr "Liste étendue des auteurs & utilisateurs"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
749 |
msgid "Authors & Users Extended List"
|
750 |
msgstr "Liste étendue des auteurs & utilisateurs"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
|
753 |
msgid "Search Users"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1435
|
757 |
msgid "« Back to All Users"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
761 |
#, fuzzy
|
762 |
msgid "Users per page"
|
763 |
msgstr "Table des données utilisateurs"
|
764 |
|
765 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
766 |
msgid "Apply"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
770 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1472
|
771 |
msgid "Username"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
776 |
msgid "E-mail"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
|
781 |
#, fuzzy
|
782 |
msgid "Role"
|
783 |
msgstr "Règles"
|
784 |
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
786 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
787 |
msgid "Posts"
|
788 |
msgstr "Articles"
|
789 |
|
790 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1604
|
791 |
msgid "View posts by this author"
|
792 |
msgstr "Voir les articles de cet auteur"
|
793 |
|
794 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1635
|
795 |
#, php-format
|
796 |
msgid "e-mail: %s"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:327
|
800 |
+
#, fuzzy
|
801 |
+
msgid "no fieldset"
|
802 |
+
msgstr "Objets par regroupement"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
805 |
+
#, php-format
|
806 |
+
msgid "File '%s' doesn't exist?"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
810 |
+
msgid "The GD image library is not installed."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
814 |
+
#, php-format
|
815 |
+
msgid "File '%s' is not an image."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
819 |
+
msgid "hasn’t a correct email syntax."
|
820 |
+
msgstr "n’a pas une syntaxe e-mail correcte"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
821 |
|
822 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
823 |
+
msgid "couldn’t be empty."
|
824 |
+
msgstr "ne peut pas être vide."
|
825 |
|
826 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:377
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:386
|
828 |
+
msgid "isn’t correct"
|
829 |
+
msgstr "n’est pas correct"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
832 |
+
msgid "YES"
|
833 |
+
msgstr "OUI"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
836 |
+
msgid "NO"
|
837 |
+
msgstr "NON"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:388
|
840 |
+
msgid "should be"
|
841 |
+
msgstr "doit être"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
844 |
+
msgid "should be an image."
|
845 |
+
msgstr "doit être une image."
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
848 |
+
msgid "couldn’t have size less than"
|
849 |
+
msgstr "ne peut pas avoir une taille inférieure à"
|
850 |
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
852 |
+
msgid "couldn’t have length less than"
|
853 |
+
msgstr "ne peut pas avoir une longueur inférieure à"
|
854 |
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
856 |
+
msgid "couldn’t have size different than"
|
857 |
+
msgstr "ne peut pas avoir une taille différente de"
|
858 |
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
860 |
+
msgid "couldn’t have length different than"
|
861 |
+
msgstr "ne peut pas avoir une longueur différente de"
|
862 |
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
864 |
+
msgid "couldn’t have size more than"
|
865 |
+
msgstr "ne peut pas avoir une taille supérieure à"
|
866 |
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
868 |
+
msgid "couldn’t have length more than"
|
869 |
+
msgstr "ne peut pas avoir une longueur supérieure à"
|
870 |
|
871 |
#~ msgid "Disable get_cimyFieldValue function"
|
872 |
#~ msgstr "Désactiver la fonction get_cimyFieldValue"
|
langs/cimy_uef-it_IT.mo
CHANGED
Binary file
|
langs/cimy_uef-it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-
|
6 |
-
"PO-Revision-Date: 2009-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,180 +16,345 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
29 |
-
|
30 |
-
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
34 |
-
|
35 |
-
|
36 |
-
msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
|
37 |
|
38 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
|
42 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
43 |
-
|
44 |
-
|
|
|
45 |
|
46 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
47 |
-
msgid "
|
48 |
-
msgstr "
|
49 |
|
50 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
51 |
-
|
52 |
-
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:283
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:290
|
55 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:301
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:307
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:319
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:325
|
59 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:337
|
60 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:343
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:419
|
62 |
-
msgid "ERROR"
|
63 |
-
msgstr "ERRORE"
|
64 |
|
65 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
66 |
-
msgid "
|
67 |
-
msgstr "
|
68 |
|
69 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
70 |
-
msgid "
|
71 |
-
msgstr "
|
72 |
|
73 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
74 |
-
|
75 |
-
|
76 |
-
msgstr "non è corretto"
|
77 |
|
78 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
79 |
-
|
80 |
-
|
|
|
|
|
|
|
81 |
|
82 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
83 |
-
msgid "
|
84 |
-
msgstr "
|
85 |
|
86 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
87 |
-
|
88 |
-
|
|
|
|
|
|
|
89 |
|
90 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
91 |
-
|
92 |
-
|
|
|
|
|
|
|
93 |
|
94 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
95 |
-
msgid "
|
96 |
-
msgstr "
|
97 |
|
98 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
99 |
-
|
100 |
-
|
|
|
|
|
101 |
|
102 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
103 |
-
msgid "
|
104 |
-
msgstr "
|
105 |
|
106 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
107 |
-
msgid "
|
108 |
-
msgstr "
|
109 |
|
110 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
111 |
-
msgid "
|
112 |
-
msgstr "
|
113 |
|
114 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
115 |
-
msgid "
|
116 |
-
msgstr "
|
117 |
|
118 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
119 |
-
msgid "no
|
120 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
|
122 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
124 |
msgstr "<strong>Nota:</strong> questo sito ti permette di personalizzare la tua password; dopo la registrazione riceverai una e-mail con un'altra password, non farci caso!"
|
125 |
|
126 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
127 |
#, fuzzy
|
128 |
msgid "Password"
|
129 |
msgstr "Mostra password"
|
130 |
|
131 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
132 |
#, fuzzy
|
133 |
msgid "First name"
|
134 |
msgstr "Mostra nome"
|
135 |
|
136 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
137 |
#, fuzzy
|
138 |
msgid "Last name"
|
139 |
msgstr "Mostra cognome"
|
140 |
|
141 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
142 |
#, fuzzy
|
143 |
msgid "Nickname"
|
144 |
msgstr "Mostra nickname"
|
145 |
|
146 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
147 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
149 |
msgid "Website"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
153 |
msgid "AIM"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
157 |
#, fuzzy
|
158 |
msgid "Yahoo IM"
|
159 |
msgstr "Mostra Yahoo IM"
|
160 |
|
161 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
162 |
#, fuzzy
|
163 |
msgid "Jabber / Google Talk"
|
164 |
msgstr "Mostra Jabber / Google Talk"
|
165 |
|
166 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
167 |
msgid "Biographical Info"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
171 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
173 |
-
msgid "Options"
|
174 |
-
msgstr ""
|
175 |
-
|
176 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:612
|
177 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:111
|
178 |
msgid "Fields"
|
179 |
msgstr "Campi"
|
180 |
|
181 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
182 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
184 |
-
msgid "Authors & Users Extended"
|
185 |
-
msgstr "Autori & Utenti Estesa"
|
186 |
-
|
187 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:613
|
188 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:622
|
189 |
msgid "A&U Extended"
|
190 |
msgstr "A&U Estesa"
|
191 |
|
192 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
193 |
msgid "Users Extended"
|
194 |
msgstr "Lista Utenti Estesa"
|
195 |
|
@@ -214,17 +379,17 @@ msgid "Change order"
|
|
214 |
msgstr "Cambia ordine"
|
215 |
|
216 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
217 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
218 |
msgid "Min length"
|
219 |
msgstr "Lunghezza Min"
|
220 |
|
221 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
222 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
223 |
msgid "Exact length"
|
224 |
msgstr "Lunghezza Esatta"
|
225 |
|
226 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
227 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
228 |
msgid "Max length"
|
229 |
msgstr "Lunghezza Max"
|
230 |
|
@@ -232,588 +397,460 @@ msgstr "Lunghezza Max"
|
|
232 |
msgid "Exact or Max length"
|
233 |
msgstr "Lunghezza Max o Esatta"
|
234 |
|
235 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
236 |
msgid "changed to"
|
237 |
msgstr "cambiati a"
|
238 |
|
239 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
240 |
msgid "You cannot give an order that misses some numbers"
|
241 |
msgstr "Non puoi dare un ordine dove mancano alcuni numeri"
|
242 |
|
243 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
244 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
245 |
msgid "Nothing selected"
|
246 |
msgstr "Nessun campo selezionato"
|
247 |
|
248 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
249 |
msgid "Field(s)"
|
250 |
msgstr "Campo(i)"
|
251 |
|
252 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
253 |
msgid "deleted correctly"
|
254 |
msgstr "cancellato(i) correttamente"
|
255 |
|
256 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
257 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
258 |
msgid "Min size"
|
259 |
msgstr "Dimensione Min"
|
260 |
|
261 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
262 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
263 |
msgid "Exact size"
|
264 |
msgstr "Dimensione Esatta"
|
265 |
|
266 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
267 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
268 |
msgid "Max size"
|
269 |
msgstr "Dimensione Max"
|
270 |
|
271 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
272 |
msgid "Exact or Max size"
|
273 |
msgstr "Dimensione Esatta o Max"
|
274 |
|
275 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
276 |
msgid "Name not specified"
|
277 |
msgstr "Nome non specificato"
|
278 |
|
279 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
280 |
msgid "Name cannot contains spaces"
|
281 |
msgstr "Il Nome non può contenere spazi"
|
282 |
|
283 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
284 |
msgid "Label not specified"
|
285 |
msgstr "Etichetta non specificata"
|
286 |
|
287 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
288 |
msgid "not selected (with this type is necessary)"
|
289 |
msgstr "non selezionata (con questo tipo è necessario)"
|
290 |
|
291 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
292 |
msgid "If you select"
|
293 |
msgstr "Se selezioni"
|
294 |
|
295 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
296 |
msgid "you cannot select Min or Max"
|
297 |
msgstr "non puoi selezionare Min o Max"
|
298 |
|
299 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
300 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
301 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
302 |
msgid "should be in the range of"
|
303 |
msgstr "deve essere compreso tra"
|
304 |
|
305 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
306 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
307 |
msgid "Equal TO not specified"
|
308 |
msgstr "Uguale A non specificato"
|
309 |
|
310 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
311 |
msgid "With checkbox type Equal TO can only be"
|
312 |
msgstr "Con il tipo checkbox Uguale A può essere solo"
|
313 |
|
314 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
315 |
msgid "With radio type Equal TO can only be"
|
316 |
msgstr "Con il tipo radio Uguale A può essere solo"
|
317 |
|
318 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
319 |
msgid "With checkbox type Value can only be"
|
320 |
msgstr "Con il tipo checkbox Valore può essere solo"
|
321 |
|
322 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
323 |
msgid "With radio type Value can only be"
|
324 |
msgstr "Con il tipo radio Valore può essere solo"
|
325 |
|
326 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
327 |
msgid "Field inserted correctly"
|
328 |
msgstr "Campo inserito correttamente"
|
329 |
|
330 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
331 |
msgid "Field #"
|
332 |
msgstr "Campo #"
|
333 |
|
334 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
335 |
msgid "updated correctly"
|
336 |
msgstr "aggiornato correttamente"
|
337 |
|
338 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
339 |
msgid "Name inserted is just in the database, change to another one"
|
340 |
msgstr "Il Nome inserito è già nel database, cambialo con un altro"
|
341 |
|
342 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:411
|
343 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:411
|
344 |
-
msgid "Add a new Field"
|
345 |
-
msgstr "Aggiungi un campo"
|
346 |
-
|
347 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
348 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
349 |
-
|
350 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
|
352 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
353 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
354 |
msgstr "Per aggiungere un nuovo campo devi scegliere un nome, il tipo ed una etichetta; opzionale sono il valore e la descrizione. Le regole sono applicate durante la registrazione dell'utente."
|
355 |
|
356 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
357 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
358 |
msgstr "Con <strong>radio</strong> e <strong>checkbox</strong>: <em>Valore</em> e <em>uguale A</em> possono essere solo 'Yes' o 'No' questo significa 'selezionati' o 'non selezionati'"
|
359 |
|
360 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
361 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
362 |
msgstr "Con <strong>drop-down</strong>: devi aggiungere tutte le opzioni nell'etichetta per esempio: etichetta/oggetto1,oggetto2,oggetto3"
|
363 |
|
364 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
365 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
366 |
msgstr "Con <strong>picture</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; <em>uguale A</em> significa il numero max di pixel (larghezza o altezza) per la miniatura"
|
367 |
|
368 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
369 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
370 |
msgstr "Con <strong>picture-url</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; <em>uguale A</em> significa max pixel in larghezza (l'altezza sarà proporzionale)"
|
371 |
|
372 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
373 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
374 |
msgstr "Con <strong>registration-date</strong>: <em>uguale A</em> significa il formato della data e dell'ora"
|
375 |
|
376 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
377 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
378 |
msgstr "Con <strong>avatar</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; <em>uguale A</em> viene automaticamente settato a 512 pixel"
|
379 |
|
380 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
386 |
msgid "Name"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
390 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
391 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
392 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
393 |
msgid "Value"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
398 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
399 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
400 |
msgid "Type"
|
401 |
msgstr "Tipo"
|
402 |
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
406 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
407 |
msgid "Label"
|
408 |
msgstr "Etichetta"
|
409 |
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
412 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
413 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
414 |
msgid "Description"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
418 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
419 |
msgid "Rules"
|
420 |
msgstr "Regole"
|
421 |
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
423 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
424 |
msgid "Actions"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
428 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
429 |
msgid "Fieldset"
|
430 |
msgstr "Raggruppamento"
|
431 |
|
432 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
433 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
434 |
msgid "Can be empty"
|
435 |
msgstr "Può essere vuoto"
|
436 |
|
437 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
439 |
msgid "Check for E-mail syntax"
|
440 |
msgstr "Controlla la sintassi dell'E-mail"
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
444 |
msgid "Can be modified"
|
445 |
msgstr "Può essere modificato"
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
449 |
msgid "Can be modified only if empty"
|
450 |
msgstr "Può essere modificato solo se vuoto"
|
451 |
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
454 |
msgid "Can be modified only by admin"
|
455 |
msgstr "Può essere modificato solo dall'admin"
|
456 |
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
459 |
msgid "Can be modified only by admin or if empty"
|
460 |
msgstr "Può essere modificato solo dall'admin o se vuoto"
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
464 |
msgid "Cannot be modified"
|
465 |
msgstr "Non può essere modificato"
|
466 |
|
467 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
469 |
msgid "Should be equal TO"
|
470 |
msgstr "Deve essere uguale A"
|
471 |
|
472 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
474 |
msgid "Case sensitive"
|
475 |
msgstr "Distinguere le maiuscole"
|
476 |
|
477 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
479 |
msgid "Regular Expression"
|
480 |
msgstr "Espressione Regolare"
|
481 |
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
484 |
msgid "Show the field in the registration"
|
485 |
msgstr "Mostra il campo nella registrazione"
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
msgid "Show the field in User's profile"
|
490 |
msgstr "Mostra il campo nel profilo dell'utente"
|
491 |
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
494 |
msgid "Show the field in A&U Extended menu"
|
495 |
msgstr "Mostra il campo nel menù A&U esteso"
|
496 |
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:736
|
502 |
-
msgid "WordPress Fields"
|
503 |
-
msgstr "Campi WordPress"
|
504 |
-
|
505 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:738
|
506 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:168
|
508 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:411
|
509 |
-
msgid "Extra Fields"
|
510 |
-
msgstr "Campi Extra"
|
511 |
|
512 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
|
513 |
-
|
514 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
515 |
|
516 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
517 |
-
|
|
|
|
|
|
|
518 |
msgid "Invert selection"
|
519 |
msgstr "Inverti selezione"
|
520 |
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1048
|
523 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
524 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
525 |
msgstr "Sei sicuro di volere cancellare il(i) campo(i) e tutti i relativi dati inseriti dagli utenti?"
|
526 |
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
528 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
529 |
msgid "Order"
|
530 |
msgstr "Ordine"
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
msgid "Reset"
|
534 |
msgstr "Reset"
|
535 |
|
536 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
537 |
#, php-format
|
538 |
msgid "Users Matching \"%s\""
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
542 |
#, fuzzy
|
543 |
msgid "Users Extended List"
|
544 |
msgstr "Lista Autori & Utenti Estesa"
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
547 |
msgid "Authors & Users Extended List"
|
548 |
msgstr "Lista Autori & Utenti Estesa"
|
549 |
|
550 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
551 |
msgid "Search Users"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
555 |
msgid "« Back to All Users"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
559 |
msgid "Users per page"
|
560 |
msgstr "Utenti per pagina"
|
561 |
|
562 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
563 |
msgid "Apply"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
567 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
568 |
msgid "Username"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
573 |
msgid "E-mail"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
577 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
578 |
#, fuzzy
|
579 |
msgid "Role"
|
580 |
msgstr "Regole"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
msgid "Posts"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
msgid "View posts by this author"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
592 |
#, php-format
|
593 |
msgid "e-mail: %s"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
597 |
-
msgid "
|
598 |
-
msgstr "
|
599 |
-
|
600 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
601 |
-
msgid "WordPress Fields table deleted"
|
602 |
-
msgstr "Tabella Campi WordPress cancellata"
|
603 |
-
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
605 |
-
msgid "Extra Fields table emptied"
|
606 |
-
msgstr "Tabella Campi Extra svuotata"
|
607 |
-
|
608 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
609 |
-
msgid "Extra Fields table deleted"
|
610 |
-
msgstr "Tabella Campi Extra cancellata"
|
611 |
-
|
612 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
613 |
-
msgid "Users Data table emptied"
|
614 |
-
msgstr "Tabella Dati degli Utenti svuotata"
|
615 |
-
|
616 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
617 |
-
msgid "Users Data table deleted"
|
618 |
-
msgstr "Tabella Dati degli Utenti cancellata"
|
619 |
-
|
620 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
621 |
-
msgid "Options set to default values"
|
622 |
-
msgstr "Opzioni settate ai valori di default"
|
623 |
-
|
624 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
625 |
-
msgid "Options deleted"
|
626 |
-
msgstr "Opzioni cancellate"
|
627 |
-
|
628 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
629 |
-
msgid "Options changed"
|
630 |
-
msgstr "Opzioni cambiate"
|
631 |
|
632 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
633 |
-
|
634 |
-
msgid "
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
638 |
-
msgid "
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
646 |
-
msgid "OPTIONS DELETED!"
|
647 |
-
msgstr "OPZIONI CANCELLATE!"
|
648 |
-
|
649 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
650 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
651 |
-
msgid "Fix the problem"
|
652 |
-
msgstr "Aggiusta il problema"
|
653 |
-
|
654 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
656 |
-
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
657 |
-
msgstr "Questa operazione creerà/aggiornerà tutte le tabelle/opzioni mancanti, vuoi procedere?"
|
658 |
-
|
659 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:451
|
660 |
-
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
661 |
-
msgstr "VERSIONI NON CORRISPONDENTI! Avviene quando non hai disattivato e riattivato il plug-in dopo l'aggiornamento! Questo può dare dei problemi..."
|
662 |
-
|
663 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:459
|
664 |
-
msgid "Picture/Avatar upload"
|
665 |
-
msgstr "Picture/Avatar upload"
|
666 |
-
|
667 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
668 |
-
msgid "is created and writable"
|
669 |
-
msgstr "è creata e scrivibile"
|
670 |
-
|
671 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:465
|
672 |
-
msgid "is NOT created or webserver does NOT have permission to write on it"
|
673 |
-
msgstr "NON è stata creata o il webserver NON ha il permesso di scrittura su di essa"
|
674 |
-
|
675 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:471
|
676 |
-
msgid "Database"
|
677 |
-
msgstr "Database"
|
678 |
-
|
679 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
680 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
681 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:517
|
682 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
683 |
-
msgid "select action"
|
684 |
-
msgstr "seleziona una azione"
|
685 |
-
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
687 |
-
msgid "Default values"
|
688 |
-
msgstr "Valori di default"
|
689 |
-
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
693 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
694 |
-
msgid "Delete"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
698 |
-
|
699 |
-
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:541
|
701 |
-
msgid "NOT PRESENT"
|
702 |
-
msgstr "NON PRESENTE"
|
703 |
-
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:491
|
705 |
-
msgid "WordPress Fields table"
|
706 |
-
msgstr "Tabella Campi WordPress"
|
707 |
-
|
708 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:499
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:535
|
711 |
-
msgid "Empty"
|
712 |
-
msgstr "Svuota"
|
713 |
-
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:511
|
715 |
-
msgid "Extra Fields table"
|
716 |
-
msgstr "Tabella Campi Extra"
|
717 |
-
|
718 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:528
|
719 |
-
msgid "Users Data table"
|
720 |
-
msgstr "Tabella Dati degli Utenti"
|
721 |
-
|
722 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
723 |
-
msgid "all data inserted by users in all and only extra fields"
|
724 |
-
msgstr "tutti i dati inseriti dagli utenti in tutti e soli i campi extra"
|
725 |
-
|
726 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
727 |
-
msgid "Force tables creation"
|
728 |
-
msgstr "Forza la creazione delle tabelle"
|
729 |
-
|
730 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
731 |
-
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
732 |
-
msgstr "equivalente a disattivare e attivare il plug-in; nessun'altra operazione sarà effettuata"
|
733 |
-
|
734 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
735 |
-
msgid "User Profile"
|
736 |
-
msgstr "Profilo utente"
|
737 |
-
|
738 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:558
|
739 |
-
msgid "Extra Fields section title"
|
740 |
-
msgstr "Titolo della sezione Campi Extra"
|
741 |
-
|
742 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
743 |
-
msgid "Fieldset's titles, separates with comma"
|
744 |
-
msgstr "Titoli dei raggruppamenti, separati dalla virgola"
|
745 |
-
|
746 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
747 |
-
msgid "example: title1,title2,title3"
|
748 |
-
msgstr "esempio: titolo1, titolo2, titolo3"
|
749 |
-
|
750 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
751 |
-
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
752 |
-
msgstr "<strong>nota:</strong> se si cambia l'ordine o si rimuovono dei raggruppamenti potrebbe essere necessario settare nuovamente i raggruppamenti per i campi extra"
|
753 |
-
|
754 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:572
|
755 |
-
msgid "Hide username field"
|
756 |
-
msgstr "Nascondi il campo nome utente"
|
757 |
-
|
758 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:578
|
759 |
-
msgid "Hide name field"
|
760 |
-
msgstr "Nascondi il campo nome"
|
761 |
-
|
762 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:583
|
763 |
-
msgid "Hide email field"
|
764 |
-
msgstr "Nascondi il campo email"
|
765 |
-
|
766 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:587
|
767 |
-
msgid "Hide role field"
|
768 |
-
msgstr "Nascondi il campo ruolo"
|
769 |
|
770 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
771 |
-
msgid "
|
772 |
-
msgstr "
|
773 |
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
775 |
-
|
776 |
-
|
|
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
779 |
-
msgid "
|
780 |
-
msgstr "
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
783 |
-
msgid "
|
784 |
-
msgstr "
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
787 |
-
msgid "
|
788 |
-
msgstr "
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
791 |
-
msgid "
|
792 |
-
msgstr "
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
795 |
-
msgid "
|
796 |
-
msgstr "
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
799 |
-
msgid "
|
800 |
-
msgstr "
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
803 |
-
msgid "
|
804 |
-
msgstr "
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
807 |
-
msgid "
|
808 |
-
msgstr "
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
811 |
-
msgid "
|
812 |
-
msgstr "
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
815 |
-
msgid "
|
816 |
-
msgstr "
|
817 |
|
818 |
#~ msgid ""
|
819 |
#~ "<strong>Note:</strong> this website let you personalize your password; "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-11-22 23:52+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-11-22 23:52+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:34
|
20 |
+
msgid "WordPress Fields table emptied"
|
21 |
+
msgstr "Tabella Campi WordPress svuotata"
|
22 |
+
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
24 |
+
msgid "WordPress Fields table deleted"
|
25 |
+
msgstr "Tabella Campi WordPress cancellata"
|
26 |
+
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
28 |
+
msgid "Extra Fields table emptied"
|
29 |
+
msgstr "Tabella Campi Extra svuotata"
|
30 |
+
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
32 |
+
msgid "Extra Fields table deleted"
|
33 |
+
msgstr "Tabella Campi Extra cancellata"
|
34 |
+
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
36 |
+
msgid "Users Data table emptied"
|
37 |
+
msgstr "Tabella Dati degli Utenti svuotata"
|
38 |
+
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
40 |
+
msgid "Users Data table deleted"
|
41 |
+
msgstr "Tabella Dati degli Utenti cancellata"
|
42 |
+
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
44 |
+
msgid "Options set to default values"
|
45 |
+
msgstr "Opzioni settate ai valori di default"
|
46 |
+
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
48 |
+
msgid "Options deleted"
|
49 |
+
msgstr "Opzioni cancellate"
|
50 |
+
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
52 |
+
msgid "Options changed"
|
53 |
+
msgstr "Opzioni cambiate"
|
54 |
+
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:401
|
56 |
+
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
57 |
+
msgstr "Questa operazione creerà/aggiornerà tutte le tabelle/opzioni mancanti, vuoi procedere?"
|
58 |
+
|
59 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:410
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:476
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:673
|
62 |
+
msgid "Options"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:430
|
67 |
+
msgid "Add a new Field"
|
68 |
+
msgstr "Aggiungi un campo"
|
69 |
+
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
71 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
73 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
|
74 |
+
msgid "Extra Fields"
|
75 |
+
msgstr "Campi Extra"
|
76 |
+
|
77 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:457
|
79 |
+
msgid "SUCCESSFUL"
|
80 |
+
msgstr "SUCCESSO"
|
81 |
+
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:434
|
83 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
84 |
+
msgid "Save Changes"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:435
|
88 |
+
msgid "General"
|
|
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:443
|
92 |
+
msgid "installed is"
|
93 |
+
msgstr "installata"
|
|
|
94 |
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:447
|
96 |
+
msgid "OPTIONS DELETED!"
|
97 |
+
msgstr "OPZIONI CANCELLATE!"
|
98 |
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:450
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:455
|
101 |
+
msgid "Fix the problem"
|
102 |
+
msgstr "Aggiusta il problema"
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
105 |
+
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
106 |
+
msgstr "VERSIONI NON CORRISPONDENTI! Avviene quando non hai disattivato e riattivato il plug-in dopo l'aggiornamento! Questo può dare dei problemi..."
|
107 |
|
108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
109 |
+
msgid "Picture/Avatar upload"
|
110 |
+
msgstr "Picture/Avatar upload"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:465
|
113 |
+
msgid "is created and writable"
|
114 |
+
msgstr "è creata e scrivibile"
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:467
|
117 |
+
msgid "is NOT created or webserver does NOT have permission to write on it"
|
118 |
+
msgstr "NON è stata creata o il webserver NON ha il permesso di scrittura su di essa"
|
119 |
|
120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:473
|
121 |
+
msgid "Database"
|
122 |
+
msgstr "Database"
|
|
|
123 |
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
125 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
128 |
+
msgid "select action"
|
129 |
+
msgstr "seleziona una azione"
|
130 |
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
132 |
+
msgid "Default values"
|
133 |
+
msgstr "Valori di default"
|
134 |
|
135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
139 |
+
msgid "Delete"
|
140 |
+
msgstr ""
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:488
|
143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:507
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
146 |
+
msgid "NOT PRESENT"
|
147 |
+
msgstr "NON PRESENTE"
|
148 |
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:493
|
150 |
+
msgid "WordPress Fields table"
|
151 |
+
msgstr "Tabella Campi WordPress"
|
152 |
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:501
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:520
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
156 |
+
msgid "Empty"
|
157 |
+
msgstr "Svuota"
|
158 |
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:513
|
160 |
+
msgid "Extra Fields table"
|
161 |
+
msgstr "Tabella Campi Extra"
|
162 |
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
164 |
+
msgid "Users Data table"
|
165 |
+
msgstr "Tabella Dati degli Utenti"
|
166 |
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
168 |
+
msgid "all data inserted by users in all and only extra fields"
|
169 |
+
msgstr "tutti i dati inseriti dagli utenti in tutti e soli i campi extra"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
172 |
+
msgid "Force tables creation"
|
173 |
+
msgstr "Forza la creazione delle tabelle"
|
174 |
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
176 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
177 |
+
msgstr "equivalente a disattivare e attivare il plug-in; nessun'altra operazione sarà effettuata"
|
178 |
+
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
180 |
+
msgid "User Profile"
|
181 |
+
msgstr "Profilo utente"
|
182 |
+
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:560
|
184 |
+
msgid "Extra Fields section title"
|
185 |
+
msgstr "Titolo della sezione Campi Extra"
|
186 |
+
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
188 |
+
msgid "Fieldset's titles, separates with comma"
|
189 |
+
msgstr "Titoli dei raggruppamenti, separati dalla virgola"
|
190 |
+
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
192 |
+
msgid "example: title1,title2,title3"
|
193 |
+
msgstr "esempio: titolo1, titolo2, titolo3"
|
194 |
+
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
196 |
+
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
197 |
+
msgstr "<strong>nota:</strong> se si cambia l'ordine o si rimuovono dei raggruppamenti potrebbe essere necessario settare nuovamente i raggruppamenti per i campi extra"
|
198 |
+
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
202 |
+
msgid "Authors & Users Extended"
|
203 |
+
msgstr "Autori & Utenti Estesa"
|
204 |
+
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
206 |
+
msgid "Hide username field"
|
207 |
+
msgstr "Nascondi il campo nome utente"
|
208 |
+
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
210 |
+
msgid "Hide name field"
|
211 |
+
msgstr "Nascondi il campo nome"
|
212 |
+
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:585
|
214 |
+
msgid "Hide email field"
|
215 |
+
msgstr "Nascondi il campo email"
|
216 |
+
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
218 |
+
msgid "Hide role field"
|
219 |
+
msgstr "Nascondi il campo ruolo"
|
220 |
+
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
222 |
+
msgid "Hide website field"
|
223 |
+
msgstr "Nascondi il campo sito web"
|
224 |
+
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
226 |
+
msgid "Hide n. posts field"
|
227 |
+
msgstr "Nascondi il campo n. di post"
|
228 |
+
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:602
|
230 |
+
msgid "WordPress hidden fields"
|
231 |
+
msgstr "Campi nascosti di WordPress"
|
232 |
+
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
234 |
+
msgid "Show password"
|
235 |
+
msgstr "Mostra password"
|
236 |
+
|
237 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
238 |
+
msgid "Show first name"
|
239 |
+
msgstr "Mostra nome"
|
240 |
+
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
242 |
+
msgid "Show last name"
|
243 |
+
msgstr "Mostra cognome"
|
244 |
+
|
245 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
246 |
+
msgid "Show nickname"
|
247 |
+
msgstr "Mostra nickname"
|
248 |
+
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
250 |
+
msgid "Show website"
|
251 |
+
msgstr "Mostra sito web"
|
252 |
+
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
254 |
+
msgid "Show AIM"
|
255 |
+
msgstr "Mostra AIM"
|
256 |
+
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
258 |
+
msgid "Show Yahoo IM"
|
259 |
+
msgstr "Mostra Yahoo IM"
|
260 |
+
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:633
|
262 |
+
msgid "Show Jabber / Google Talk"
|
263 |
+
msgstr "Mostra Jabber / Google Talk"
|
264 |
+
|
265 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:637
|
266 |
+
msgid "Show Biographical Info"
|
267 |
+
msgstr "Mostra informazioni biografiche"
|
268 |
+
|
269 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:292
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:729
|
271 |
+
msgid "Please upload a file with one of the following extensions"
|
272 |
+
msgstr "Per favore spedisci un file con una delle seguenti estensioni"
|
273 |
+
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:298
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:735
|
276 |
+
msgid "Please upload an image with one of the following extensions"
|
277 |
+
msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
|
278 |
+
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:422
|
280 |
+
msgid "Delete the file"
|
281 |
+
msgstr "Cancella il file"
|
282 |
+
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:423
|
284 |
+
msgid "Update the file"
|
285 |
+
msgstr "Aggiorna il file"
|
286 |
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:426
|
288 |
+
msgid "Delete the picture"
|
289 |
+
msgstr "Cancella l'immagine"
|
290 |
+
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:427
|
292 |
+
msgid "Update the picture"
|
293 |
+
msgstr "Aggiorna l'immagine"
|
294 |
+
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
296 |
+
msgid "Picture URL:"
|
297 |
+
msgstr "URL dell'immagine:"
|
298 |
+
|
299 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:215
|
300 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
301 |
msgstr "<strong>Nota:</strong> questo sito ti permette di personalizzare la tua password; dopo la registrazione riceverai una e-mail con un'altra password, non farci caso!"
|
302 |
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:222
|
304 |
#, fuzzy
|
305 |
msgid "Password"
|
306 |
msgstr "Mostra password"
|
307 |
|
308 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:242
|
309 |
#, fuzzy
|
310 |
msgid "First name"
|
311 |
msgstr "Mostra nome"
|
312 |
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
|
314 |
#, fuzzy
|
315 |
msgid "Last name"
|
316 |
msgstr "Mostra cognome"
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:282
|
319 |
#, fuzzy
|
320 |
msgid "Nickname"
|
321 |
msgstr "Mostra nickname"
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
326 |
msgid "Website"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:322
|
330 |
msgid "AIM"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:342
|
334 |
#, fuzzy
|
335 |
msgid "Yahoo IM"
|
336 |
msgstr "Mostra Yahoo IM"
|
337 |
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:362
|
339 |
#, fuzzy
|
340 |
msgid "Jabber / Google Talk"
|
341 |
msgstr "Mostra Jabber / Google Talk"
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:382
|
344 |
msgid "Biographical Info"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:674
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
|
|
|
|
|
|
|
|
|
|
|
|
349 |
msgid "Fields"
|
350 |
msgstr "Campi"
|
351 |
|
352 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
msgid "A&U Extended"
|
355 |
msgstr "A&U Estesa"
|
356 |
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:679
|
358 |
msgid "Users Extended"
|
359 |
msgstr "Lista Utenti Estesa"
|
360 |
|
379 |
msgstr "Cambia ordine"
|
380 |
|
381 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
383 |
msgid "Min length"
|
384 |
msgstr "Lunghezza Min"
|
385 |
|
386 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
387 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1067
|
388 |
msgid "Exact length"
|
389 |
msgstr "Lunghezza Esatta"
|
390 |
|
391 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
393 |
msgid "Max length"
|
394 |
msgstr "Lunghezza Max"
|
395 |
|
397 |
msgid "Exact or Max length"
|
398 |
msgstr "Lunghezza Max o Esatta"
|
399 |
|
400 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
401 |
msgid "changed to"
|
402 |
msgstr "cambiati a"
|
403 |
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:124
|
405 |
msgid "You cannot give an order that misses some numbers"
|
406 |
msgstr "Non puoi dare un ordine dove mancano alcuni numeri"
|
407 |
|
408 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:127
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:200
|
410 |
msgid "Nothing selected"
|
411 |
msgstr "Nessun campo selezionato"
|
412 |
|
413 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
414 |
msgid "Field(s)"
|
415 |
msgstr "Campo(i)"
|
416 |
|
417 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
418 |
msgid "deleted correctly"
|
419 |
msgstr "cancellato(i) correttamente"
|
420 |
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:229
|
422 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
423 |
msgid "Min size"
|
424 |
msgstr "Dimensione Min"
|
425 |
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:230
|
427 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1059
|
428 |
msgid "Exact size"
|
429 |
msgstr "Dimensione Esatta"
|
430 |
|
431 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:231
|
432 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
|
433 |
msgid "Max size"
|
434 |
msgstr "Dimensione Max"
|
435 |
|
436 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:233
|
437 |
msgid "Exact or Max size"
|
438 |
msgstr "Dimensione Esatta o Max"
|
439 |
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
441 |
msgid "Name not specified"
|
442 |
msgstr "Nome non specificato"
|
443 |
|
444 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
445 |
msgid "Name cannot contains spaces"
|
446 |
msgstr "Il Nome non può contenere spazi"
|
447 |
|
448 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
449 |
msgid "Label not specified"
|
450 |
msgstr "Etichetta non specificata"
|
451 |
|
452 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
453 |
msgid "not selected (with this type is necessary)"
|
454 |
msgstr "non selezionata (con questo tipo è necessario)"
|
455 |
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
457 |
msgid "If you select"
|
458 |
msgstr "Se selezioni"
|
459 |
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
461 |
msgid "you cannot select Min or Max"
|
462 |
msgstr "non puoi selezionare Min o Max"
|
463 |
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
467 |
msgid "should be in the range of"
|
468 |
msgstr "deve essere compreso tra"
|
469 |
|
470 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:328
|
472 |
msgid "Equal TO not specified"
|
473 |
msgstr "Uguale A non specificato"
|
474 |
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
|
476 |
msgid "With checkbox type Equal TO can only be"
|
477 |
msgstr "Con il tipo checkbox Uguale A può essere solo"
|
478 |
|
479 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:334
|
480 |
msgid "With radio type Equal TO can only be"
|
481 |
msgstr "Con il tipo radio Uguale A può essere solo"
|
482 |
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:350
|
484 |
msgid "With checkbox type Value can only be"
|
485 |
msgstr "Con il tipo checkbox Valore può essere solo"
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:353
|
488 |
msgid "With radio type Value can only be"
|
489 |
msgstr "Con il tipo radio Valore può essere solo"
|
490 |
|
491 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
|
492 |
msgid "Field inserted correctly"
|
493 |
msgstr "Campo inserito correttamente"
|
494 |
|
495 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
496 |
msgid "Field #"
|
497 |
msgstr "Campo #"
|
498 |
|
499 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
500 |
msgid "updated correctly"
|
501 |
msgstr "aggiornato correttamente"
|
502 |
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:415
|
504 |
msgid "Name inserted is just in the database, change to another one"
|
505 |
msgstr "Il Nome inserito è già nel database, cambialo con un altro"
|
506 |
|
|
|
|
|
|
|
|
|
|
|
507 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:378
|
511 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:390
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
513 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
514 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
518 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
519 |
+
msgid "ERROR"
|
520 |
+
msgstr "ERRORE"
|
521 |
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
523 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
524 |
msgstr "Per aggiungere un nuovo campo devi scegliere un nome, il tipo ed una etichetta; opzionale sono il valore e la descrizione. Le regole sono applicate durante la registrazione dell'utente."
|
525 |
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
|
527 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
528 |
msgstr "Con <strong>radio</strong> e <strong>checkbox</strong>: <em>Valore</em> e <em>uguale A</em> possono essere solo 'Yes' o 'No' questo significa 'selezionati' o 'non selezionati'"
|
529 |
|
530 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
531 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
532 |
msgstr "Con <strong>drop-down</strong>: devi aggiungere tutte le opzioni nell'etichetta per esempio: etichetta/oggetto1,oggetto2,oggetto3"
|
533 |
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
|
535 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
536 |
msgstr "Con <strong>picture</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; <em>uguale A</em> significa il numero max di pixel (larghezza o altezza) per la miniatura"
|
537 |
|
538 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
539 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
540 |
msgstr "Con <strong>picture-url</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; <em>uguale A</em> significa max pixel in larghezza (l'altezza sarà proporzionale)"
|
541 |
|
542 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
|
543 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
544 |
msgstr "Con <strong>registration-date</strong>: <em>uguale A</em> significa il formato della data e dell'ora"
|
545 |
|
546 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
547 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
548 |
msgstr "Con <strong>avatar</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; <em>uguale A</em> viene automaticamente settato a 512 pixel"
|
549 |
|
550 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
551 |
+
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
552 |
+
msgstr "Con <strong>file</strong>: puoi precaricare un file di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; in <em>uguale A</em> si possono specificare le estensioni separate dalla virgola, per esempio: zip,pdf,doc"
|
553 |
+
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
555 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1477
|
560 |
msgid "Name"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1094
|
567 |
msgid "Value"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
574 |
msgid "Type"
|
575 |
msgstr "Tipo"
|
576 |
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
581 |
msgid "Label"
|
582 |
msgstr "Etichetta"
|
583 |
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
588 |
msgid "Description"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:851
|
593 |
msgid "Rules"
|
594 |
msgstr "Regole"
|
595 |
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:852
|
598 |
msgid "Actions"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
|
602 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1113
|
603 |
msgid "Fieldset"
|
604 |
msgstr "Raggruppamento"
|
605 |
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:713
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1136
|
608 |
msgid "Can be empty"
|
609 |
msgstr "Può essere vuoto"
|
610 |
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
612 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1137
|
613 |
msgid "Check for E-mail syntax"
|
614 |
msgstr "Controlla la sintassi dell'E-mail"
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
618 |
msgid "Can be modified"
|
619 |
msgstr "Può essere modificato"
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:718
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
623 |
msgid "Can be modified only if empty"
|
624 |
msgstr "Può essere modificato solo se vuoto"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
628 |
msgid "Can be modified only by admin"
|
629 |
msgstr "Può essere modificato solo dall'admin"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
633 |
msgid "Can be modified only by admin or if empty"
|
634 |
msgstr "Può essere modificato solo dall'admin o se vuoto"
|
635 |
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:721
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1144
|
638 |
msgid "Cannot be modified"
|
639 |
msgstr "Non può essere modificato"
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
643 |
msgid "Should be equal TO"
|
644 |
msgstr "Deve essere uguale A"
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
648 |
msgid "Case sensitive"
|
649 |
msgstr "Distinguere le maiuscole"
|
650 |
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:734
|
652 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
653 |
msgid "Regular Expression"
|
654 |
msgstr "Espressione Regolare"
|
655 |
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:737
|
657 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1157
|
658 |
msgid "Show the field in the registration"
|
659 |
msgstr "Mostra il campo nella registrazione"
|
660 |
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:740
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1160
|
663 |
msgid "Show the field in User's profile"
|
664 |
msgstr "Mostra il campo nel profilo dell'utente"
|
665 |
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
667 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1169
|
668 |
msgid "Show the field in A&U Extended menu"
|
669 |
msgstr "Mostra il campo nel menù A&U esteso"
|
670 |
|
671 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:746
|
672 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1172
|
673 |
+
msgid "Show the field in the search engine"
|
674 |
+
msgstr "Mostra il campo nel motore di ricerca"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
675 |
|
676 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
|
677 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1175
|
678 |
+
msgid "Show the field in the blog"
|
679 |
+
msgstr "Mostra il campo nel blog"
|
680 |
+
|
681 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:752
|
682 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
683 |
+
msgid "Show the field if the role is at least:"
|
684 |
+
msgstr "Mostra il campo se il ruolo è almeno:"
|
685 |
+
|
686 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:754
|
687 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1180
|
688 |
+
msgid "Anonymous"
|
689 |
+
msgstr ""
|
690 |
|
691 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
|
692 |
+
msgid "Clear"
|
693 |
+
msgstr "Pulisci"
|
694 |
+
|
695 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:813
|
696 |
msgid "Invert selection"
|
697 |
msgstr "Inverti selezione"
|
698 |
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:814
|
|
|
|
|
700 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
701 |
msgstr "Sei sicuro di volere cancellare il(i) campo(i) e tutti i relativi dati inseriti dagli utenti?"
|
702 |
|
703 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
704 |
+
msgid "WordPress Fields"
|
705 |
+
msgstr "Campi WordPress"
|
706 |
+
|
707 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
|
708 |
+
msgid "None!"
|
709 |
+
msgstr "Nessuno!"
|
710 |
+
|
711 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1079
|
713 |
msgid "Order"
|
714 |
msgstr "Ordine"
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1191
|
717 |
msgid "Reset"
|
718 |
msgstr "Reset"
|
719 |
|
720 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1248
|
721 |
+
msgid "select"
|
722 |
+
msgstr "seleziona"
|
723 |
+
|
724 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1351
|
725 |
#, php-format
|
726 |
msgid "Users Matching \"%s\""
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
730 |
#, fuzzy
|
731 |
msgid "Users Extended List"
|
732 |
msgstr "Lista Autori & Utenti Estesa"
|
733 |
|
734 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
735 |
msgid "Authors & Users Extended List"
|
736 |
msgstr "Lista Autori & Utenti Estesa"
|
737 |
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
|
739 |
msgid "Search Users"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1435
|
743 |
msgid "« Back to All Users"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
747 |
msgid "Users per page"
|
748 |
msgstr "Utenti per pagina"
|
749 |
|
750 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
751 |
msgid "Apply"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
755 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1472
|
756 |
msgid "Username"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
760 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
761 |
msgid "E-mail"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
765 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
|
766 |
#, fuzzy
|
767 |
msgid "Role"
|
768 |
msgstr "Regole"
|
769 |
|
770 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
772 |
msgid "Posts"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1604
|
776 |
msgid "View posts by this author"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1635
|
780 |
#, php-format
|
781 |
msgid "e-mail: %s"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:327
|
785 |
+
msgid "no fieldset"
|
786 |
+
msgstr "Nessun raggruppamento"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
789 |
+
#, php-format
|
790 |
+
msgid "File '%s' doesn't exist?"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
794 |
+
msgid "The GD image library is not installed."
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
798 |
+
#, php-format
|
799 |
+
msgid "File '%s' is not an image."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
803 |
+
msgid "hasn’t a correct email syntax."
|
804 |
+
msgstr "non ha una sintassi email corretta."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
805 |
|
806 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
807 |
+
msgid "couldn’t be empty."
|
808 |
+
msgstr "non può essere vuoto."
|
809 |
|
810 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:377
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:386
|
812 |
+
msgid "isn’t correct"
|
813 |
+
msgstr "non è corretto"
|
814 |
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
816 |
+
msgid "YES"
|
817 |
+
msgstr "SI"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
820 |
+
msgid "NO"
|
821 |
+
msgstr "NO"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:388
|
824 |
+
msgid "should be"
|
825 |
+
msgstr "deve essere"
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
828 |
+
msgid "should be an image."
|
829 |
+
msgstr "deve essere una immagine."
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
832 |
+
msgid "couldn’t have size less than"
|
833 |
+
msgstr "non può avere dimensione minore di"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
836 |
+
msgid "couldn’t have length less than"
|
837 |
+
msgstr "non può avere lunghezza minore di"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
840 |
+
msgid "couldn’t have size different than"
|
841 |
+
msgstr "non può avere dimensione diversa da"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
844 |
+
msgid "couldn’t have length different than"
|
845 |
+
msgstr "non può avere lunghezza diversa da"
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
848 |
+
msgid "couldn’t have size more than"
|
849 |
+
msgstr "non può avere dimensione maggiore di"
|
850 |
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
852 |
+
msgid "couldn’t have length more than"
|
853 |
+
msgstr "non può avere lunghezza maggiore di"
|
854 |
|
855 |
#~ msgid ""
|
856 |
#~ "<strong>Note:</strong> this website let you personalize your password; "
|
langs/cimy_uef-pt_BR.mo
CHANGED
Binary file
|
langs/cimy_uef-pt_BR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-
|
6 |
-
"PO-Revision-Date: 2009-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,182 +16,355 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
20 |
-
#,
|
21 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
34 |
-
|
35 |
-
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
#, fuzzy
|
40 |
-
msgid "
|
41 |
-
msgstr "
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
#, fuzzy
|
45 |
-
msgid "
|
46 |
-
msgstr "
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
49 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
55 |
-
|
56 |
-
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:301
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:307
|
59 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:319
|
60 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:325
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:337
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:343
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:419
|
64 |
-
msgid "ERROR"
|
65 |
-
msgstr "ERRO"
|
66 |
|
67 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
|
71 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
72 |
-
msgid "
|
73 |
-
msgstr "
|
74 |
|
75 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
76 |
-
|
77 |
-
|
78 |
-
msgstr "não está correto"
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
81 |
-
|
82 |
-
|
|
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
89 |
-
msgid "
|
90 |
-
msgstr "
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
93 |
-
msgid "
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
107 |
|
108 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
109 |
-
msgid "
|
110 |
-
msgstr "
|
111 |
|
112 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
113 |
-
|
114 |
-
|
|
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
117 |
-
msgid "
|
118 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
121 |
#, fuzzy
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
130 |
msgid "Password"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
134 |
#, fuzzy
|
135 |
msgid "First name"
|
136 |
msgstr "Mostrar primeiro nome"
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
139 |
#, fuzzy
|
140 |
msgid "Last name"
|
141 |
msgstr "Mostrar último nome"
|
142 |
|
143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
144 |
#, fuzzy
|
145 |
msgid "Nickname"
|
146 |
msgstr "Nome"
|
147 |
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
151 |
msgid "Website"
|
152 |
msgstr "Website"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
155 |
msgid "AIM"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
159 |
#, fuzzy
|
160 |
msgid "Yahoo IM"
|
161 |
msgstr "Mostrar Yahoo IM"
|
162 |
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
164 |
#, fuzzy
|
165 |
msgid "Jabber / Google Talk"
|
166 |
msgstr "Mostrar Jabber / Google Talk"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
169 |
msgid "Biographical Info"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
175 |
-
msgid "Options"
|
176 |
-
msgstr "Opções"
|
177 |
-
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:612
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:111
|
180 |
msgid "Fields"
|
181 |
msgstr "Campos"
|
182 |
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
185 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
186 |
-
msgid "Authors & Users Extended"
|
187 |
-
msgstr "Autores & Usuários Avançados"
|
188 |
-
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:613
|
190 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:622
|
191 |
msgid "A&U Extended"
|
192 |
msgstr "A&U Avançado"
|
193 |
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
195 |
#, fuzzy
|
196 |
msgid "Users Extended"
|
197 |
msgstr "Lista de Autores & Usuários avançados"
|
@@ -217,17 +390,17 @@ msgid "Change order"
|
|
217 |
msgstr "Mudar ordem"
|
218 |
|
219 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Min length"
|
222 |
msgstr "Comprimento mín"
|
223 |
|
224 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
225 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
226 |
msgid "Exact length"
|
227 |
msgstr "Comprimento exato"
|
228 |
|
229 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
231 |
msgid "Max length"
|
232 |
msgstr "Comprimento máx"
|
233 |
|
@@ -235,599 +408,471 @@ msgstr "Comprimento máx"
|
|
235 |
msgid "Exact or Max length"
|
236 |
msgstr "Comprimento Máx ou Exato"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
msgid "changed to"
|
240 |
msgstr "alterado para"
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
243 |
msgid "You cannot give an order that misses some numbers"
|
244 |
msgstr "Você não pode ordenar se faltar alguns números"
|
245 |
|
246 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Nothing selected"
|
249 |
msgstr "Nada selecionado"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Field(s)"
|
253 |
msgstr "Campo(s)"
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "deleted correctly"
|
257 |
msgstr "excluído corretamente"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
261 |
msgid "Min size"
|
262 |
msgstr "Tamanho mínimo"
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
266 |
msgid "Exact size"
|
267 |
msgstr "Tamanho exato"
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
271 |
msgid "Max size"
|
272 |
msgstr "Tamanho máximo"
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
275 |
msgid "Exact or Max size"
|
276 |
msgstr "Tamanho Exato ou Máximo"
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
279 |
msgid "Name not specified"
|
280 |
msgstr "Nome não especificado"
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
283 |
msgid "Name cannot contains spaces"
|
284 |
msgstr "Nome não pode conter espaços"
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
287 |
msgid "Label not specified"
|
288 |
msgstr "Etiqueta não especificada"
|
289 |
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
291 |
msgid "not selected (with this type is necessary)"
|
292 |
msgstr "não selecionado (neste caso é necessário)"
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
295 |
msgid "If you select"
|
296 |
msgstr "Se selecionar"
|
297 |
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
299 |
msgid "you cannot select Min or Max"
|
300 |
msgstr "você não pode selecionar Mín ou Máx"
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
303 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
305 |
msgid "should be in the range of"
|
306 |
msgstr "deve ter um alcance de"
|
307 |
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Equal TO not specified"
|
311 |
msgstr "Igual A não especificado"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
msgid "With checkbox type Equal TO can only be"
|
315 |
msgstr "Com tipo checkbox Igual A pode ser somente"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
318 |
msgid "With radio type Equal TO can only be"
|
319 |
msgstr "Com tipo radio Igual A pode ser somente"
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
322 |
msgid "With checkbox type Value can only be"
|
323 |
msgstr "Com tipo checkbox Valor pode ser somente"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
326 |
msgid "With radio type Value can only be"
|
327 |
msgstr "Com tipo radio Valor pode ser somente"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
330 |
msgid "Field inserted correctly"
|
331 |
msgstr "Campo inserido corretamente"
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
334 |
msgid "Field #"
|
335 |
msgstr "Campo #"
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
338 |
msgid "updated correctly"
|
339 |
msgstr "atualizado corretamente"
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
342 |
msgid "Name inserted is just in the database, change to another one"
|
343 |
msgstr "Nome inserido somente no banco de dados, mude para um outro"
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:411
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:411
|
347 |
-
msgid "Add a new Field"
|
348 |
-
msgstr "Adicionar um novo campo"
|
349 |
-
|
350 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
352 |
-
|
353 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
357 |
msgstr "Para adicionar um novo campo você tem que escolher um nome, tipo e etiqueta; Valores e descrição são opcionais. Regras são aplicadas durante o registro do usuário."
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
360 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
361 |
msgstr "Com <strong>radio</strong> e <strong>checkbox</strong>: <em>Valor</em> e <em>igual A</em> pode ser somente 'Yes' ou 'No' que corresponde a 'selecionado' ou 'não selecionado'"
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
365 |
msgstr "Com <strong>drop-down</strong>: você tem que adicionar todas as opções dentro da etiqueta, por exemplo: etiqueta/item1,item2,item3"
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
369 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
373 |
msgstr "Com <strong>picture-url</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; <em>igual A</em> corresponde ao tamanho máximo da largura (a altura será proporcional)"
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
376 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
377 |
msgstr "Com <strong>registration-date</strong>: <em>igual A</em> corresponde ao formato de data e hora"
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
#, fuzzy
|
381 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
382 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
390 |
msgid "Name"
|
391 |
msgstr "Nome"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
msgid "Value"
|
398 |
msgstr "Valor"
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
msgid "Type"
|
405 |
msgstr "Tipo"
|
406 |
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
msgid "Label"
|
412 |
msgstr "Etiqueta"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
418 |
msgid "Description"
|
419 |
msgstr "Descrição"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
423 |
msgid "Rules"
|
424 |
msgstr "Regras"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
428 |
msgid "Actions"
|
429 |
msgstr "Ações"
|
430 |
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
432 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
433 |
#, fuzzy
|
434 |
msgid "Fieldset"
|
435 |
msgstr "Campos"
|
436 |
|
437 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
439 |
msgid "Can be empty"
|
440 |
msgstr "Pode estar vazio"
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
444 |
msgid "Check for E-mail syntax"
|
445 |
msgstr "Controla a sintaxe do E-mail"
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
449 |
msgid "Can be modified"
|
450 |
msgstr "Pode ser modificado"
|
451 |
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
454 |
msgid "Can be modified only if empty"
|
455 |
msgstr "Pode ser modificado somente se estiver vazio"
|
456 |
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
459 |
msgid "Can be modified only by admin"
|
460 |
msgstr "Pode ser modificado somente pelo administrador"
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
464 |
#, fuzzy
|
465 |
msgid "Can be modified only by admin or if empty"
|
466 |
msgstr "Pode ser modificado somente se estiver vazio"
|
467 |
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
469 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
470 |
msgid "Cannot be modified"
|
471 |
msgstr "Não pode ser modificado"
|
472 |
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
474 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
475 |
msgid "Should be equal TO"
|
476 |
msgstr "Dever ser igual A"
|
477 |
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
479 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
480 |
msgid "Case sensitive"
|
481 |
msgstr "Caso sensitivo"
|
482 |
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
484 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
485 |
msgid "Regular Expression"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
490 |
msgid "Show the field in the registration"
|
491 |
msgstr "Mostrar campo no formulário de registro"
|
492 |
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
494 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
495 |
msgid "Show the field in User's profile"
|
496 |
msgstr "Mostrar campo em Perfil do usuário"
|
497 |
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
499 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
500 |
msgid "Show the field in A&U Extended menu"
|
501 |
msgstr "Mostra campo em A&U Menu avançado"
|
502 |
|
503 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
504 |
-
|
505 |
-
|
|
|
|
|
506 |
|
507 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
508 |
-
|
509 |
-
|
|
|
|
|
510 |
|
511 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
512 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
msgstr "Campos Adicionais"
|
517 |
|
518 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
519 |
-
|
520 |
-
|
|
|
521 |
|
522 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
523 |
-
|
|
|
|
|
|
|
524 |
#, fuzzy
|
525 |
msgid "Invert selection"
|
526 |
msgstr "selecione uma ação"
|
527 |
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
529 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1048
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
531 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
532 |
msgstr "Tem certeza que quer excluir o(s) campo(s) e todos os dados inserido pelos usuários?"
|
533 |
|
534 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
535 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
536 |
msgid "Order"
|
537 |
msgstr "Ordenar"
|
538 |
|
539 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
540 |
msgid "Reset"
|
541 |
msgstr "Resetar"
|
542 |
|
543 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
544 |
#, fuzzy, php-format
|
545 |
msgid "Users Matching \"%s\""
|
546 |
msgstr "Tabela de Campos Adicionais apagada"
|
547 |
|
548 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
549 |
#, fuzzy
|
550 |
msgid "Users Extended List"
|
551 |
msgstr "Lista de Autores & Usuários avançados"
|
552 |
|
553 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
554 |
msgid "Authors & Users Extended List"
|
555 |
msgstr "Lista de Autores & Usuários avançados"
|
556 |
|
557 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
558 |
msgid "Search Users"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
562 |
msgid "« Back to All Users"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
566 |
#, fuzzy
|
567 |
msgid "Users per page"
|
568 |
msgstr "Tabela de Dados de Usuários"
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
571 |
msgid "Apply"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
575 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
576 |
msgid "Username"
|
577 |
msgstr "Nome de usuário"
|
578 |
|
579 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
580 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
581 |
msgid "E-mail"
|
582 |
msgstr "E-mail"
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
585 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
586 |
#, fuzzy
|
587 |
msgid "Role"
|
588 |
msgstr "Regras"
|
589 |
|
590 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
591 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
592 |
msgid "Posts"
|
593 |
msgstr "Artigos"
|
594 |
|
595 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
596 |
msgid "View posts by this author"
|
597 |
msgstr "Ver artigos desse autor"
|
598 |
|
599 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
600 |
#, php-format
|
601 |
msgid "e-mail: %s"
|
602 |
msgstr "e-mail: %s"
|
603 |
|
604 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
605 |
-
#, fuzzy
|
606 |
-
msgid "WordPress Fields table emptied"
|
607 |
-
msgstr "Tabela de Campos Adicionais apagada"
|
608 |
-
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
610 |
#, fuzzy
|
611 |
-
msgid "
|
612 |
-
msgstr "
|
613 |
-
|
614 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
615 |
-
msgid "Extra Fields table emptied"
|
616 |
-
msgstr "Tabela de Campos Adicionais apagada"
|
617 |
-
|
618 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
619 |
-
msgid "Extra Fields table deleted"
|
620 |
-
msgstr "Tabela de Campos Adicionais excluída"
|
621 |
-
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
623 |
-
msgid "Users Data table emptied"
|
624 |
-
msgstr "Tabela de Dados de Usuários apagada"
|
625 |
-
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
627 |
-
msgid "Users Data table deleted"
|
628 |
-
msgstr "Tabela de Dados de Usuários excluída"
|
629 |
-
|
630 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
631 |
-
msgid "Options set to default values"
|
632 |
-
msgstr "Opções marcadas com valores padrão"
|
633 |
-
|
634 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
635 |
-
msgid "Options deleted"
|
636 |
-
msgstr "Opções excluídas"
|
637 |
-
|
638 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
639 |
-
msgid "Options changed"
|
640 |
-
msgstr "Opções alteradas"
|
641 |
-
|
642 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
643 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
|
644 |
-
msgid "Save Changes"
|
645 |
-
msgstr ""
|
646 |
-
|
647 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:433
|
648 |
-
msgid "General"
|
649 |
-
msgstr "Geral"
|
650 |
-
|
651 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:441
|
652 |
-
msgid "installed is"
|
653 |
-
msgstr "instalado"
|
654 |
-
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
656 |
-
msgid "OPTIONS DELETED!"
|
657 |
-
msgstr "OPÇÕES EXCLUÍDAS!"
|
658 |
-
|
659 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
660 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
661 |
-
msgid "Fix the problem"
|
662 |
-
msgstr ""
|
663 |
-
|
664 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
665 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
666 |
-
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
667 |
-
msgstr ""
|
668 |
-
|
669 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:451
|
670 |
-
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
671 |
-
msgstr "VERSÃO NÃO CORRESPONDENTE! Acontece quando você não desativa e re-ativa o plug-in depois de atualizá-lo! Isso pode causar problemas..."
|
672 |
-
|
673 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:459
|
674 |
-
msgid "Picture/Avatar upload"
|
675 |
-
msgstr ""
|
676 |
-
|
677 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
678 |
-
msgid "is created and writable"
|
679 |
-
msgstr ""
|
680 |
|
681 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
682 |
-
|
|
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
686 |
-
msgid "
|
687 |
-
msgstr "Banco de dados"
|
688 |
-
|
689 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
690 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:517
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
693 |
-
msgid "select action"
|
694 |
-
msgstr "selecione uma ação"
|
695 |
-
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
697 |
-
msgid "Default values"
|
698 |
-
msgstr "Valores padrão"
|
699 |
-
|
700 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
701 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
704 |
-
msgid "Delete"
|
705 |
-
msgstr "Excluir"
|
706 |
-
|
707 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
708 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:505
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:523
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:541
|
711 |
-
msgid "NOT PRESENT"
|
712 |
-
msgstr "NÃO PRESENTE"
|
713 |
-
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:491
|
715 |
-
#, fuzzy
|
716 |
-
msgid "WordPress Fields table"
|
717 |
-
msgstr "Tabela de Campos Adicionais"
|
718 |
-
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:499
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
721 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:535
|
722 |
-
msgid "Empty"
|
723 |
-
msgstr "Vazio"
|
724 |
-
|
725 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:511
|
726 |
-
msgid "Extra Fields table"
|
727 |
-
msgstr "Tabela de Campos Adicionais"
|
728 |
-
|
729 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:528
|
730 |
-
msgid "Users Data table"
|
731 |
-
msgstr "Tabela de Dados de Usuários"
|
732 |
-
|
733 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
734 |
-
msgid "all data inserted by users in all and only extra fields"
|
735 |
-
msgstr "todos os dados inseridos por usuários em todos e somente campos adicionais"
|
736 |
-
|
737 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
738 |
-
msgid "Force tables creation"
|
739 |
-
msgstr "Forçar criação de tabelas"
|
740 |
-
|
741 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
742 |
-
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:558
|
750 |
-
#, fuzzy
|
751 |
-
msgid "Extra Fields section title"
|
752 |
-
msgstr "Tabela de Campos Adicionais"
|
753 |
-
|
754 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
755 |
-
msgid "Fieldset's titles, separates with comma"
|
756 |
-
msgstr "Títulos de reagrupamento, separados por vírgula"
|
757 |
-
|
758 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
759 |
-
msgid "example: title1,title2,title3"
|
760 |
-
msgstr "exemplo: título1,título2,título3"
|
761 |
-
|
762 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
763 |
-
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
767 |
-
msgid "
|
768 |
-
msgstr "
|
769 |
-
|
770 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:578
|
771 |
-
msgid "Hide name field"
|
772 |
-
msgstr "Ocultar campo nome"
|
773 |
-
|
774 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:583
|
775 |
-
msgid "Hide email field"
|
776 |
-
msgstr "Ocultar campo email"
|
777 |
-
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:587
|
779 |
-
#, fuzzy
|
780 |
-
msgid "Hide role field"
|
781 |
-
msgstr "Ocultar campo nome"
|
782 |
|
783 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
784 |
-
msgid "
|
785 |
-
msgstr "
|
786 |
|
787 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
788 |
-
|
789 |
-
|
|
|
790 |
|
791 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
792 |
-
msgid "
|
793 |
-
msgstr "
|
794 |
|
795 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
796 |
-
msgid "
|
797 |
-
msgstr ""
|
798 |
|
799 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
800 |
-
msgid "
|
801 |
-
msgstr "
|
802 |
|
803 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
804 |
-
msgid "
|
805 |
-
msgstr "
|
806 |
|
807 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
808 |
-
msgid "
|
809 |
-
msgstr "
|
810 |
|
811 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
812 |
-
|
813 |
-
|
814 |
-
msgstr "Website"
|
815 |
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
817 |
-
msgid "
|
818 |
-
msgstr "
|
819 |
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
821 |
-
msgid "
|
822 |
-
msgstr "
|
823 |
|
824 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
825 |
-
msgid "
|
826 |
-
msgstr "
|
827 |
|
828 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
829 |
-
msgid "
|
830 |
-
msgstr ""
|
831 |
|
832 |
#~ msgid "Disable get_cimyFieldValue function"
|
833 |
#~ msgstr "Desabilitar função get_cimyFieldValue"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-11-22 23:52+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-11-22 23:52+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:34
|
20 |
+
#, fuzzy
|
21 |
+
msgid "WordPress Fields table emptied"
|
22 |
+
msgstr "Tabela de Campos Adicionais apagada"
|
23 |
+
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
25 |
+
#, fuzzy
|
26 |
+
msgid "WordPress Fields table deleted"
|
27 |
+
msgstr "Tabela de Campos Adicionais excluída"
|
28 |
+
|
29 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
30 |
+
msgid "Extra Fields table emptied"
|
31 |
+
msgstr "Tabela de Campos Adicionais apagada"
|
32 |
+
|
33 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
34 |
+
msgid "Extra Fields table deleted"
|
35 |
+
msgstr "Tabela de Campos Adicionais excluída"
|
36 |
+
|
37 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
38 |
+
msgid "Users Data table emptied"
|
39 |
+
msgstr "Tabela de Dados de Usuários apagada"
|
40 |
+
|
41 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
42 |
+
msgid "Users Data table deleted"
|
43 |
+
msgstr "Tabela de Dados de Usuários excluída"
|
44 |
+
|
45 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
46 |
+
msgid "Options set to default values"
|
47 |
+
msgstr "Opções marcadas com valores padrão"
|
48 |
+
|
49 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
50 |
+
msgid "Options deleted"
|
51 |
+
msgstr "Opções excluídas"
|
52 |
+
|
53 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
54 |
+
msgid "Options changed"
|
55 |
+
msgstr "Opções alteradas"
|
56 |
+
|
57 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:401
|
58 |
+
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:410
|
62 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:476
|
63 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:673
|
64 |
+
msgid "Options"
|
65 |
+
msgstr "Opções"
|
66 |
+
|
67 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:430
|
69 |
+
msgid "Add a new Field"
|
70 |
+
msgstr "Adicionar um novo campo"
|
71 |
+
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
73 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
74 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
75 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
|
76 |
+
msgid "Extra Fields"
|
77 |
+
msgstr "Campos Adicionais"
|
78 |
+
|
79 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
80 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:457
|
81 |
+
msgid "SUCCESSFUL"
|
82 |
+
msgstr "SUCESSO"
|
83 |
+
|
84 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:434
|
85 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
86 |
+
msgid "Save Changes"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:435
|
90 |
+
msgid "General"
|
91 |
+
msgstr "Geral"
|
92 |
+
|
93 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:443
|
94 |
+
msgid "installed is"
|
95 |
+
msgstr "instalado"
|
96 |
+
|
97 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:447
|
98 |
+
msgid "OPTIONS DELETED!"
|
99 |
+
msgstr "OPÇÕES EXCLUÍDAS!"
|
100 |
+
|
101 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:450
|
102 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:455
|
103 |
+
msgid "Fix the problem"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
107 |
+
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
108 |
+
msgstr "VERSÃO NÃO CORRESPONDENTE! Acontece quando você não desativa e re-ativa o plug-in depois de atualizá-lo! Isso pode causar problemas..."
|
109 |
+
|
110 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
111 |
+
msgid "Picture/Avatar upload"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:465
|
115 |
+
msgid "is created and writable"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:467
|
119 |
+
msgid "is NOT created or webserver does NOT have permission to write on it"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:473
|
123 |
+
msgid "Database"
|
124 |
+
msgstr "Banco de dados"
|
125 |
+
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
129 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
130 |
+
msgid "select action"
|
131 |
+
msgstr "selecione uma ação"
|
132 |
|
133 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
134 |
+
msgid "Default values"
|
135 |
+
msgstr "Valores padrão"
|
136 |
+
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
139 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
141 |
+
msgid "Delete"
|
142 |
+
msgstr "Excluir"
|
143 |
+
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:488
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:507
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
147 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
148 |
+
msgid "NOT PRESENT"
|
149 |
+
msgstr "NÃO PRESENTE"
|
150 |
+
|
151 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:493
|
152 |
#, fuzzy
|
153 |
+
msgid "WordPress Fields table"
|
154 |
+
msgstr "Tabela de Campos Adicionais"
|
155 |
|
156 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:501
|
157 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:520
|
158 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
159 |
+
msgid "Empty"
|
160 |
+
msgstr "Vazio"
|
161 |
+
|
162 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:513
|
163 |
+
msgid "Extra Fields table"
|
164 |
+
msgstr "Tabela de Campos Adicionais"
|
165 |
+
|
166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
167 |
+
msgid "Users Data table"
|
168 |
+
msgstr "Tabela de Dados de Usuários"
|
169 |
+
|
170 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
171 |
+
msgid "all data inserted by users in all and only extra fields"
|
172 |
+
msgstr "todos os dados inseridos por usuários em todos e somente campos adicionais"
|
173 |
+
|
174 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
175 |
+
msgid "Force tables creation"
|
176 |
+
msgstr "Forçar criação de tabelas"
|
177 |
+
|
178 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
179 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
183 |
+
msgid "User Profile"
|
184 |
+
msgstr "Perfil do usuário"
|
185 |
+
|
186 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:560
|
187 |
#, fuzzy
|
188 |
+
msgid "Extra Fields section title"
|
189 |
+
msgstr "Tabela de Campos Adicionais"
|
190 |
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
192 |
+
msgid "Fieldset's titles, separates with comma"
|
193 |
+
msgstr "Títulos de reagrupamento, separados por vírgula"
|
194 |
+
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
196 |
+
msgid "example: title1,title2,title3"
|
197 |
+
msgstr "exemplo: título1,título2,título3"
|
198 |
+
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
200 |
+
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
204 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
206 |
+
msgid "Authors & Users Extended"
|
207 |
+
msgstr "Autores & Usuários Avançados"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
210 |
+
msgid "Hide username field"
|
211 |
+
msgstr "Ocultar campo nome de usuário"
|
212 |
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
214 |
+
msgid "Hide name field"
|
215 |
+
msgstr "Ocultar campo nome"
|
216 |
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:585
|
218 |
+
msgid "Hide email field"
|
219 |
+
msgstr "Ocultar campo email"
|
|
|
220 |
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
222 |
+
#, fuzzy
|
223 |
+
msgid "Hide role field"
|
224 |
+
msgstr "Ocultar campo nome"
|
225 |
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
227 |
+
msgid "Hide website field"
|
228 |
+
msgstr "Ocultar campo website"
|
229 |
|
230 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
231 |
+
msgid "Hide n. posts field"
|
232 |
+
msgstr "Ocultar campo n. do artigo"
|
233 |
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:602
|
235 |
+
msgid "WordPress hidden fields"
|
236 |
+
msgstr "Campos ocultos do WordPress"
|
237 |
|
238 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
239 |
+
msgid "Show password"
|
240 |
+
msgstr ""
|
241 |
|
242 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
243 |
+
msgid "Show first name"
|
244 |
+
msgstr "Mostrar primeiro nome"
|
245 |
|
246 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
247 |
+
msgid "Show last name"
|
248 |
+
msgstr "Mostrar último nome"
|
249 |
|
250 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
251 |
+
msgid "Show nickname"
|
252 |
+
msgstr "Mostrar apelido"
|
253 |
|
254 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
255 |
+
#, fuzzy
|
256 |
+
msgid "Show website"
|
257 |
+
msgstr "Website"
|
258 |
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
260 |
+
msgid "Show AIM"
|
261 |
+
msgstr "Mostrar AIM"
|
262 |
+
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
264 |
+
msgid "Show Yahoo IM"
|
265 |
+
msgstr "Mostrar Yahoo IM"
|
266 |
+
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:633
|
268 |
+
msgid "Show Jabber / Google Talk"
|
269 |
+
msgstr "Mostrar Jabber / Google Talk"
|
270 |
+
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:637
|
272 |
+
msgid "Show Biographical Info"
|
273 |
+
msgstr ""
|
274 |
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:292
|
276 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:729
|
277 |
#, fuzzy
|
278 |
+
msgid "Please upload a file with one of the following extensions"
|
279 |
+
msgstr "Por favor, insira uma imagem com uma das seguintes extensões"
|
280 |
+
|
281 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:298
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:735
|
283 |
+
msgid "Please upload an image with one of the following extensions"
|
284 |
+
msgstr "Por favor, insira uma imagem com uma das seguintes extensões"
|
285 |
+
|
286 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:422
|
287 |
+
#, fuzzy
|
288 |
+
msgid "Delete the file"
|
289 |
+
msgstr "Excluir campo"
|
290 |
+
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:423
|
292 |
+
#, fuzzy
|
293 |
+
msgid "Update the file"
|
294 |
+
msgstr "Atualizar campo"
|
295 |
|
296 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:426
|
297 |
+
#, fuzzy
|
298 |
+
msgid "Delete the picture"
|
299 |
+
msgstr "Excluir campo"
|
300 |
+
|
301 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:427
|
302 |
+
#, fuzzy
|
303 |
+
msgid "Update the picture"
|
304 |
+
msgstr "Atualizar campo"
|
305 |
+
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
307 |
+
msgid "Picture URL:"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:215
|
311 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:222
|
315 |
msgid "Password"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:242
|
319 |
#, fuzzy
|
320 |
msgid "First name"
|
321 |
msgstr "Mostrar primeiro nome"
|
322 |
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
|
324 |
#, fuzzy
|
325 |
msgid "Last name"
|
326 |
msgstr "Mostrar último nome"
|
327 |
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:282
|
329 |
#, fuzzy
|
330 |
msgid "Nickname"
|
331 |
msgstr "Nome"
|
332 |
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
336 |
msgid "Website"
|
337 |
msgstr "Website"
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:322
|
340 |
msgid "AIM"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:342
|
344 |
#, fuzzy
|
345 |
msgid "Yahoo IM"
|
346 |
msgstr "Mostrar Yahoo IM"
|
347 |
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:362
|
349 |
#, fuzzy
|
350 |
msgid "Jabber / Google Talk"
|
351 |
msgstr "Mostrar Jabber / Google Talk"
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:382
|
354 |
msgid "Biographical Info"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:674
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
msgid "Fields"
|
360 |
msgstr "Campos"
|
361 |
|
362 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
|
|
|
|
|
|
|
|
|
|
|
|
364 |
msgid "A&U Extended"
|
365 |
msgstr "A&U Avançado"
|
366 |
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:679
|
368 |
#, fuzzy
|
369 |
msgid "Users Extended"
|
370 |
msgstr "Lista de Autores & Usuários avançados"
|
390 |
msgstr "Mudar ordem"
|
391 |
|
392 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
394 |
msgid "Min length"
|
395 |
msgstr "Comprimento mín"
|
396 |
|
397 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1067
|
399 |
msgid "Exact length"
|
400 |
msgstr "Comprimento exato"
|
401 |
|
402 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
404 |
msgid "Max length"
|
405 |
msgstr "Comprimento máx"
|
406 |
|
408 |
msgid "Exact or Max length"
|
409 |
msgstr "Comprimento Máx ou Exato"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
412 |
msgid "changed to"
|
413 |
msgstr "alterado para"
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:124
|
416 |
msgid "You cannot give an order that misses some numbers"
|
417 |
msgstr "Você não pode ordenar se faltar alguns números"
|
418 |
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:127
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:200
|
421 |
msgid "Nothing selected"
|
422 |
msgstr "Nada selecionado"
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
425 |
msgid "Field(s)"
|
426 |
msgstr "Campo(s)"
|
427 |
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
429 |
msgid "deleted correctly"
|
430 |
msgstr "excluído corretamente"
|
431 |
|
432 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:229
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
434 |
msgid "Min size"
|
435 |
msgstr "Tamanho mínimo"
|
436 |
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:230
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1059
|
439 |
msgid "Exact size"
|
440 |
msgstr "Tamanho exato"
|
441 |
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:231
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
|
444 |
msgid "Max size"
|
445 |
msgstr "Tamanho máximo"
|
446 |
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:233
|
448 |
msgid "Exact or Max size"
|
449 |
msgstr "Tamanho Exato ou Máximo"
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
452 |
msgid "Name not specified"
|
453 |
msgstr "Nome não especificado"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
456 |
msgid "Name cannot contains spaces"
|
457 |
msgstr "Nome não pode conter espaços"
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
460 |
msgid "Label not specified"
|
461 |
msgstr "Etiqueta não especificada"
|
462 |
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
464 |
msgid "not selected (with this type is necessary)"
|
465 |
msgstr "não selecionado (neste caso é necessário)"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
468 |
msgid "If you select"
|
469 |
msgstr "Se selecionar"
|
470 |
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
472 |
msgid "you cannot select Min or Max"
|
473 |
msgstr "você não pode selecionar Mín ou Máx"
|
474 |
|
475 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
478 |
msgid "should be in the range of"
|
479 |
msgstr "deve ter um alcance de"
|
480 |
|
481 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:328
|
483 |
msgid "Equal TO not specified"
|
484 |
msgstr "Igual A não especificado"
|
485 |
|
486 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
|
487 |
msgid "With checkbox type Equal TO can only be"
|
488 |
msgstr "Com tipo checkbox Igual A pode ser somente"
|
489 |
|
490 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:334
|
491 |
msgid "With radio type Equal TO can only be"
|
492 |
msgstr "Com tipo radio Igual A pode ser somente"
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:350
|
495 |
msgid "With checkbox type Value can only be"
|
496 |
msgstr "Com tipo checkbox Valor pode ser somente"
|
497 |
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:353
|
499 |
msgid "With radio type Value can only be"
|
500 |
msgstr "Com tipo radio Valor pode ser somente"
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
|
503 |
msgid "Field inserted correctly"
|
504 |
msgstr "Campo inserido corretamente"
|
505 |
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
507 |
msgid "Field #"
|
508 |
msgstr "Campo #"
|
509 |
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
511 |
msgid "updated correctly"
|
512 |
msgstr "atualizado corretamente"
|
513 |
|
514 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:415
|
515 |
msgid "Name inserted is just in the database, change to another one"
|
516 |
msgstr "Nome inserido somente no banco de dados, mude para um outro"
|
517 |
|
|
|
|
|
|
|
|
|
|
|
518 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:378
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:390
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
528 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
530 |
+
msgid "ERROR"
|
531 |
+
msgstr "ERRO"
|
532 |
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
534 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
535 |
msgstr "Para adicionar um novo campo você tem que escolher um nome, tipo e etiqueta; Valores e descrição são opcionais. Regras são aplicadas durante o registro do usuário."
|
536 |
|
537 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
|
538 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
539 |
msgstr "Com <strong>radio</strong> e <strong>checkbox</strong>: <em>Valor</em> e <em>igual A</em> pode ser somente 'Yes' ou 'No' que corresponde a 'selecionado' ou 'não selecionado'"
|
540 |
|
541 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
542 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
543 |
msgstr "Com <strong>drop-down</strong>: você tem que adicionar todas as opções dentro da etiqueta, por exemplo: etiqueta/item1,item2,item3"
|
544 |
|
545 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
|
546 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
547 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
550 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
551 |
msgstr "Com <strong>picture-url</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; <em>igual A</em> corresponde ao tamanho máximo da largura (a altura será proporcional)"
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
|
554 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
555 |
msgstr "Com <strong>registration-date</strong>: <em>igual A</em> corresponde ao formato de data e hora"
|
556 |
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
558 |
#, fuzzy
|
559 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
560 |
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
561 |
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
563 |
+
#, fuzzy
|
564 |
+
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
565 |
+
msgstr "Com <strong>picture</strong>: você pode carregar uma imagem padrão inserindo a url em <em>Valor</em>; 'tamanho mínimo,exato,máximo' estão em KB; <em>igual A</em> corresponde ao tamanho máximo (largura e altura) para a miniatura"
|
566 |
+
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1477
|
573 |
msgid "Name"
|
574 |
msgstr "Nome"
|
575 |
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1094
|
580 |
msgid "Value"
|
581 |
msgstr "Valor"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
587 |
msgid "Type"
|
588 |
msgstr "Tipo"
|
589 |
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
592 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
594 |
msgid "Label"
|
595 |
msgstr "Etiqueta"
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
601 |
msgid "Description"
|
602 |
msgstr "Descrição"
|
603 |
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:851
|
606 |
msgid "Rules"
|
607 |
msgstr "Regras"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:852
|
611 |
msgid "Actions"
|
612 |
msgstr "Ações"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1113
|
616 |
#, fuzzy
|
617 |
msgid "Fieldset"
|
618 |
msgstr "Campos"
|
619 |
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:713
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1136
|
622 |
msgid "Can be empty"
|
623 |
msgstr "Pode estar vazio"
|
624 |
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1137
|
627 |
msgid "Check for E-mail syntax"
|
628 |
msgstr "Controla a sintaxe do E-mail"
|
629 |
|
630 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
632 |
msgid "Can be modified"
|
633 |
msgstr "Pode ser modificado"
|
634 |
|
635 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:718
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
637 |
msgid "Can be modified only if empty"
|
638 |
msgstr "Pode ser modificado somente se estiver vazio"
|
639 |
|
640 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
642 |
msgid "Can be modified only by admin"
|
643 |
msgstr "Pode ser modificado somente pelo administrador"
|
644 |
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
647 |
#, fuzzy
|
648 |
msgid "Can be modified only by admin or if empty"
|
649 |
msgstr "Pode ser modificado somente se estiver vazio"
|
650 |
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:721
|
652 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1144
|
653 |
msgid "Cannot be modified"
|
654 |
msgstr "Não pode ser modificado"
|
655 |
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
657 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
658 |
msgid "Should be equal TO"
|
659 |
msgstr "Dever ser igual A"
|
660 |
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
663 |
msgid "Case sensitive"
|
664 |
msgstr "Caso sensitivo"
|
665 |
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:734
|
667 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
668 |
msgid "Regular Expression"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:737
|
672 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1157
|
673 |
msgid "Show the field in the registration"
|
674 |
msgstr "Mostrar campo no formulário de registro"
|
675 |
|
676 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:740
|
677 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1160
|
678 |
msgid "Show the field in User's profile"
|
679 |
msgstr "Mostrar campo em Perfil do usuário"
|
680 |
|
681 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
682 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1169
|
683 |
msgid "Show the field in A&U Extended menu"
|
684 |
msgstr "Mostra campo em A&U Menu avançado"
|
685 |
|
686 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:746
|
687 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1172
|
688 |
+
#, fuzzy
|
689 |
+
msgid "Show the field in the search engine"
|
690 |
+
msgstr "Mostrar campo no formulário de registro"
|
691 |
|
692 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1175
|
694 |
+
#, fuzzy
|
695 |
+
msgid "Show the field in the blog"
|
696 |
+
msgstr "Mostrar campo no formulário de registro"
|
697 |
|
698 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:752
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
700 |
+
#, fuzzy
|
701 |
+
msgid "Show the field if the role is at least:"
|
702 |
+
msgstr "Mostrar campo no formulário de registro"
|
|
|
703 |
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:754
|
705 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1180
|
706 |
+
msgid "Anonymous"
|
707 |
+
msgstr ""
|
708 |
|
709 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
|
710 |
+
msgid "Clear"
|
711 |
+
msgstr "Limpar"
|
712 |
+
|
713 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:813
|
714 |
#, fuzzy
|
715 |
msgid "Invert selection"
|
716 |
msgstr "selecione uma ação"
|
717 |
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:814
|
|
|
|
|
719 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
720 |
msgstr "Tem certeza que quer excluir o(s) campo(s) e todos os dados inserido pelos usuários?"
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
723 |
+
msgid "WordPress Fields"
|
724 |
+
msgstr "Campos do Wordpress"
|
725 |
+
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
|
727 |
+
msgid "None!"
|
728 |
+
msgstr "Nenhum!"
|
729 |
+
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1079
|
732 |
msgid "Order"
|
733 |
msgstr "Ordenar"
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1191
|
736 |
msgid "Reset"
|
737 |
msgstr "Resetar"
|
738 |
|
739 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1248
|
740 |
+
#, fuzzy
|
741 |
+
msgid "select"
|
742 |
+
msgstr "Excluir"
|
743 |
+
|
744 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1351
|
745 |
#, fuzzy, php-format
|
746 |
msgid "Users Matching \"%s\""
|
747 |
msgstr "Tabela de Campos Adicionais apagada"
|
748 |
|
749 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
750 |
#, fuzzy
|
751 |
msgid "Users Extended List"
|
752 |
msgstr "Lista de Autores & Usuários avançados"
|
753 |
|
754 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
755 |
msgid "Authors & Users Extended List"
|
756 |
msgstr "Lista de Autores & Usuários avançados"
|
757 |
|
758 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
|
759 |
msgid "Search Users"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1435
|
763 |
msgid "« Back to All Users"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
767 |
#, fuzzy
|
768 |
msgid "Users per page"
|
769 |
msgstr "Tabela de Dados de Usuários"
|
770 |
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
772 |
msgid "Apply"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1472
|
777 |
msgid "Username"
|
778 |
msgstr "Nome de usuário"
|
779 |
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
781 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
782 |
msgid "E-mail"
|
783 |
msgstr "E-mail"
|
784 |
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
786 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
|
787 |
#, fuzzy
|
788 |
msgid "Role"
|
789 |
msgstr "Regras"
|
790 |
|
791 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
792 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
793 |
msgid "Posts"
|
794 |
msgstr "Artigos"
|
795 |
|
796 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1604
|
797 |
msgid "View posts by this author"
|
798 |
msgstr "Ver artigos desse autor"
|
799 |
|
800 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1635
|
801 |
#, php-format
|
802 |
msgid "e-mail: %s"
|
803 |
msgstr "e-mail: %s"
|
804 |
|
805 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:327
|
|
|
|
|
|
|
|
|
|
|
806 |
#, fuzzy
|
807 |
+
msgid "no fieldset"
|
808 |
+
msgstr "Itens por reagrupamento"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
809 |
|
810 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
811 |
+
#, php-format
|
812 |
+
msgid "File '%s' doesn't exist?"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
816 |
+
msgid "The GD image library is not installed."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
820 |
+
#, php-format
|
821 |
+
msgid "File '%s' is not an image."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
825 |
+
msgid "hasn’t a correct email syntax."
|
826 |
+
msgstr "Não há uma sintaxe de e-mail correta"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
827 |
|
828 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
829 |
+
msgid "couldn’t be empty."
|
830 |
+
msgstr "Não pode estar vazio"
|
831 |
|
832 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:377
|
833 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:386
|
834 |
+
msgid "isn’t correct"
|
835 |
+
msgstr "não está correto"
|
836 |
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
838 |
+
msgid "YES"
|
839 |
+
msgstr "SIM"
|
840 |
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
842 |
+
msgid "NO"
|
843 |
+
msgstr "NÃO"
|
844 |
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:388
|
846 |
+
msgid "should be"
|
847 |
+
msgstr "deve ser"
|
848 |
|
849 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
850 |
+
msgid "should be an image."
|
851 |
+
msgstr "deve ser uma imagem"
|
852 |
|
853 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
854 |
+
msgid "couldn’t have size less than"
|
855 |
+
msgstr "não pode ter tamanho menor que"
|
856 |
|
857 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
858 |
+
msgid "couldn’t have length less than"
|
859 |
+
msgstr "não pode ter comprimento menor que"
|
|
|
860 |
|
861 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
862 |
+
msgid "couldn’t have size different than"
|
863 |
+
msgstr "não pode ter tamanho diferente de"
|
864 |
|
865 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
866 |
+
msgid "couldn’t have length different than"
|
867 |
+
msgstr "não pode ter comprimento diferente de"
|
868 |
|
869 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
870 |
+
msgid "couldn’t have size more than"
|
871 |
+
msgstr "não pode ter tamanho maior que"
|
872 |
|
873 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
874 |
+
msgid "couldn’t have length more than"
|
875 |
+
msgstr "não pode ter comprimento maior que"
|
876 |
|
877 |
#~ msgid "Disable get_cimyFieldValue function"
|
878 |
#~ msgstr "Desabilitar função get_cimyFieldValue"
|
langs/cimy_uef-ru_RU.mo
CHANGED
Binary file
|
langs/cimy_uef-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-
|
6 |
-
"PO-Revision-Date: 2009-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: mikolka <mikolka.info@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,182 +16,351 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
34 |
-
|
35 |
-
|
36 |
-
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
37 |
|
38 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
39 |
-
|
40 |
-
|
41 |
-
msgstr "Удалить поле"
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
#, fuzzy
|
45 |
-
msgid "
|
46 |
-
msgstr "
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
49 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
53 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
54 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
55 |
-
|
56 |
-
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:301
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:307
|
59 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:319
|
60 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:325
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:337
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:343
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:419
|
64 |
-
msgid "ERROR"
|
65 |
-
msgstr "ОШИБКА"
|
66 |
|
67 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
|
71 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
72 |
-
msgid "
|
73 |
-
msgstr "
|
74 |
|
75 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
76 |
-
|
77 |
-
|
78 |
-
msgstr "не верно"
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
81 |
-
|
82 |
-
|
|
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
89 |
-
msgid "
|
90 |
-
msgstr "
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
93 |
-
msgid "
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
107 |
|
108 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
109 |
-
msgid "
|
110 |
-
msgstr "
|
111 |
|
112 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
113 |
-
msgid "
|
114 |
-
msgstr "
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
117 |
-
msgid "
|
118 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
121 |
#, fuzzy
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
130 |
msgid "Password"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
134 |
#, fuzzy
|
135 |
msgid "First name"
|
136 |
msgstr "Показать имя"
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
139 |
#, fuzzy
|
140 |
msgid "Last name"
|
141 |
msgstr "Показать фамилию"
|
142 |
|
143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
144 |
#, fuzzy
|
145 |
msgid "Nickname"
|
146 |
msgstr "Имя"
|
147 |
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
151 |
msgid "Website"
|
152 |
msgstr "Адрес сайта"
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
155 |
msgid "AIM"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
159 |
#, fuzzy
|
160 |
msgid "Yahoo IM"
|
161 |
msgstr "Показать Yahoo IM"
|
162 |
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
164 |
#, fuzzy
|
165 |
msgid "Jabber / Google Talk"
|
166 |
msgstr "Показать Jabber / Google Talk"
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
169 |
msgid "Biographical Info"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
175 |
-
msgid "Options"
|
176 |
-
msgstr "Настройки"
|
177 |
-
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:612
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:111
|
180 |
msgid "Fields"
|
181 |
msgstr "Поля"
|
182 |
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
185 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
186 |
-
msgid "Authors & Users Extended"
|
187 |
-
msgstr "Авторы и Продвинутые пользователи"
|
188 |
-
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:613
|
190 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:622
|
191 |
msgid "A&U Extended"
|
192 |
msgstr "A и продвинутые П "
|
193 |
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
195 |
#, fuzzy
|
196 |
msgid "Users Extended"
|
197 |
msgstr "Список Авторов и продвинутых пользователей"
|
@@ -217,17 +386,17 @@ msgid "Change order"
|
|
217 |
msgstr "Изменить порядок"
|
218 |
|
219 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Min length"
|
222 |
msgstr "Мин длина"
|
223 |
|
224 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
225 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
226 |
msgid "Exact length"
|
227 |
msgstr "Точная длина"
|
228 |
|
229 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
231 |
msgid "Max length"
|
232 |
msgstr "Макс длина"
|
233 |
|
@@ -235,593 +404,469 @@ msgstr "Макс длина"
|
|
235 |
msgid "Exact or Max length"
|
236 |
msgstr "Точная или Макс длина"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
msgid "changed to"
|
240 |
msgstr "изменена на"
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
243 |
msgid "You cannot give an order that misses some numbers"
|
244 |
msgstr "Вы не можете установить порядок, который пропускает некоторые числа"
|
245 |
|
246 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Nothing selected"
|
249 |
msgstr "Ничего не выбрано"
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Field(s)"
|
253 |
msgstr "Поле(я)"
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "deleted correctly"
|
257 |
msgstr "удалены правильно"
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
261 |
msgid "Min size"
|
262 |
msgstr "Мин размер"
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
266 |
msgid "Exact size"
|
267 |
msgstr "Точный размер"
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
271 |
msgid "Max size"
|
272 |
msgstr "Макс размер"
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
275 |
msgid "Exact or Max size"
|
276 |
msgstr "Точный или Макс размер"
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
279 |
msgid "Name not specified"
|
280 |
msgstr "Имя не задано"
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
283 |
msgid "Name cannot contains spaces"
|
284 |
msgstr "Имя не должно содержать пробелов"
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
287 |
msgid "Label not specified"
|
288 |
msgstr "Метка не выбрана"
|
289 |
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
291 |
msgid "not selected (with this type is necessary)"
|
292 |
msgstr "не выбрано (с этим типом необходимо)"
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
295 |
msgid "If you select"
|
296 |
msgstr "Если Вы выбрали"
|
297 |
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
299 |
msgid "you cannot select Min or Max"
|
300 |
msgstr "Вы не можете выбрать Мин или Макс"
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
303 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
305 |
msgid "should be in the range of"
|
306 |
msgstr "должно быть в диапозоне"
|
307 |
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Equal TO not specified"
|
311 |
msgstr "Равная ЧЕМУ не выбрано"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
msgid "With checkbox type Equal TO can only be"
|
315 |
msgstr "Может быть только с флажком выбора типа Равная ЧЕМУ"
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
318 |
msgid "With radio type Equal TO can only be"
|
319 |
msgstr "Может быть только с переключателем выбора типа Равная ЧЕМУ"
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
322 |
msgid "With checkbox type Value can only be"
|
323 |
msgstr "Может быть только с флажками выбора типа Значение"
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
326 |
msgid "With radio type Value can only be"
|
327 |
msgstr "Может быть только с переключателем выбора типа Значение"
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
330 |
msgid "Field inserted correctly"
|
331 |
msgstr "Поле вставлено корректно"
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
334 |
msgid "Field #"
|
335 |
msgstr "Поле #"
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
338 |
msgid "updated correctly"
|
339 |
msgstr "обновлено корректно"
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
342 |
msgid "Name inserted is just in the database, change to another one"
|
343 |
msgstr "Вставляемое имя уже есть в БД, выберите другое"
|
344 |
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:411
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:411
|
347 |
-
msgid "Add a new Field"
|
348 |
-
msgstr "Добавить новое поле"
|
349 |
-
|
350 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
352 |
-
|
353 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
357 |
msgstr "Для добавления нового поля вам необходимо задать имя, тип и метку; значение и описание. Правила применяются в процессе регистрации пользователя."
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
360 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
361 |
msgstr "С <strong>переключателем(radio)</strong> и <strong>флажками(checkbox)</strong>: <em>Значение</em> и <em>равно ЧЕМУ</em> может быть либо 'Yes', либо 'No' - это означает 'выбрано' или 'не выбрано'"
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
365 |
msgstr "С <strong>выпадающим списком(drop-down)</strong>: вы можете добавить все опции в метку, например: метка/элемент1,элемент2,элемент3"
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
369 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
373 |
msgstr "С <strong>picture-url</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; <em>равная ЧЕМУ</em> подразумевает max ширину для превью (высота будет установлена пропорционально)"
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
376 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
377 |
msgstr "С <strong>датой регистрации(registration-date)</strong>: <em>равна ЧЕМУ</em> подразумевает формат даты и времени"
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
#, fuzzy
|
381 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
382 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
390 |
msgid "Name"
|
391 |
msgstr "Имя"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
msgid "Value"
|
398 |
msgstr "Значение"
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
msgid "Type"
|
405 |
msgstr "Тип"
|
406 |
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
msgid "Label"
|
412 |
msgstr "Метка"
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
418 |
msgid "Description"
|
419 |
msgstr "Описание"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
423 |
msgid "Rules"
|
424 |
msgstr "Правила"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
428 |
msgid "Actions"
|
429 |
msgstr "Действия"
|
430 |
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
432 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
433 |
#, fuzzy
|
434 |
msgid "Fieldset"
|
435 |
msgstr "Поля"
|
436 |
|
437 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
439 |
msgid "Can be empty"
|
440 |
msgstr "Может быть пустым"
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
444 |
msgid "Check for E-mail syntax"
|
445 |
msgstr "Проверка синтаксиса E-mail"
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
449 |
msgid "Can be modified"
|
450 |
msgstr "Может быть изменено"
|
451 |
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
454 |
msgid "Can be modified only if empty"
|
455 |
msgstr "Может быть изменено только если пустое"
|
456 |
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
459 |
msgid "Can be modified only by admin"
|
460 |
msgstr "Может быть изменено только админом"
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
464 |
msgid "Can be modified only by admin or if empty"
|
465 |
msgstr "Может быть изменено только админом или если пустое"
|
466 |
|
467 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
469 |
msgid "Cannot be modified"
|
470 |
msgstr "Не может быть изменено"
|
471 |
|
472 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
474 |
msgid "Should be equal TO"
|
475 |
msgstr "Долднадолжно быть равно ЧЕМУ"
|
476 |
|
477 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
479 |
msgid "Case sensitive"
|
480 |
msgstr "Чуствительность к регистру"
|
481 |
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
484 |
msgid "Regular Expression"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
msgid "Show the field in the registration"
|
490 |
msgstr "Показывать поле при регистрации"
|
491 |
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
494 |
msgid "Show the field in User's profile"
|
495 |
msgstr "Показывать поле в профиле пользователя"
|
496 |
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
499 |
msgid "Show the field in A&U Extended menu"
|
500 |
msgstr "Показывать поле в меню A&продвинутых П"
|
501 |
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
503 |
-
|
504 |
-
|
|
|
|
|
505 |
|
506 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
507 |
-
|
508 |
-
|
|
|
|
|
509 |
|
510 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
511 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
msgstr "Extra Fields"
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
518 |
-
|
519 |
-
|
|
|
520 |
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
522 |
-
|
|
|
|
|
|
|
523 |
msgid "Invert selection"
|
524 |
msgstr "Инветировать выбор"
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1048
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
529 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
530 |
msgstr "Вы действительно хотите удалить поле(я) и данные вставленные в них пользователями?"
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
534 |
msgid "Order"
|
535 |
msgstr "Порядок"
|
536 |
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
538 |
msgid "Reset"
|
539 |
msgstr "Сброс"
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
|
|
|
|
|
|
|
|
|
|
542 |
#, php-format
|
543 |
msgid "Users Matching \"%s\""
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
547 |
#, fuzzy
|
548 |
msgid "Users Extended List"
|
549 |
msgstr "Список Авторов и продвинутых пользователей"
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
552 |
msgid "Authors & Users Extended List"
|
553 |
msgstr "Список Авторов и продвинутых пользователей"
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
556 |
msgid "Search Users"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
msgid "« Back to All Users"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
#, fuzzy
|
565 |
msgid "Users per page"
|
566 |
msgstr "Таблица данных пользователей"
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
569 |
msgid "Apply"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
574 |
msgid "Username"
|
575 |
msgstr "Имя пользователя"
|
576 |
|
577 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
579 |
msgid "E-mail"
|
580 |
msgstr "E-mail"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
#, fuzzy
|
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 |
msgid "Posts"
|
591 |
msgstr "Сообщения"
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
594 |
msgid "View posts by this author"
|
595 |
msgstr "Просмотреть сообщения этого автора"
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
598 |
#, php-format
|
599 |
msgid "e-mail: %s"
|
600 |
msgstr "e-mail: %s"
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
607 |
-
msgid "WordPress Fields table deleted"
|
608 |
-
msgstr "Таблица WordPress Fields удалена"
|
609 |
-
|
610 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
611 |
-
msgid "Extra Fields table emptied"
|
612 |
-
msgstr "Таблица Extra Fields очищена"
|
613 |
-
|
614 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
615 |
-
msgid "Extra Fields table deleted"
|
616 |
-
msgstr "Таблица Extra Fields удалена"
|
617 |
-
|
618 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
619 |
-
msgid "Users Data table emptied"
|
620 |
-
msgstr "Таблица пользовательских данных очищена"
|
621 |
-
|
622 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
623 |
-
msgid "Users Data table deleted"
|
624 |
-
msgstr "Таблица пользовательских данных удалена"
|
625 |
-
|
626 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
627 |
-
msgid "Options set to default values"
|
628 |
-
msgstr "Установлены настройки по-умолчанию"
|
629 |
-
|
630 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
631 |
-
msgid "Options deleted"
|
632 |
-
msgstr "Настройки удалены"
|
633 |
-
|
634 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
635 |
-
msgid "Options changed"
|
636 |
-
msgstr "Настройки изменены"
|
637 |
-
|
638 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
639 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
|
640 |
-
msgid "Save Changes"
|
641 |
-
msgstr ""
|
642 |
-
|
643 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:433
|
644 |
-
msgid "General"
|
645 |
-
msgstr "Главное"
|
646 |
-
|
647 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:441
|
648 |
-
msgid "installed is"
|
649 |
-
msgstr "установлено"
|
650 |
-
|
651 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
652 |
-
msgid "OPTIONS DELETED!"
|
653 |
-
msgstr "НАСТРОЙКИ УДАЛЕНЫ!"
|
654 |
-
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
656 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
657 |
-
msgid "Fix the problem"
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
661 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
662 |
-
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
663 |
-
msgstr ""
|
664 |
-
|
665 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:451
|
666 |
-
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
667 |
-
msgstr "ВЕРСИИ НЕ СОВПАДАЮТ! Это из-за того, что Вы не деактивировали, а затем активировали плагин после обновления! Могут возникнуть проблемы..."
|
668 |
-
|
669 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:459
|
670 |
-
msgid "Picture/Avatar upload"
|
671 |
-
msgstr ""
|
672 |
-
|
673 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
674 |
-
msgid "is created and writable"
|
675 |
-
msgstr ""
|
676 |
|
677 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
678 |
-
|
|
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
682 |
-
msgid "
|
683 |
-
msgstr "База данных"
|
684 |
-
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
687 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:517
|
688 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
689 |
-
msgid "select action"
|
690 |
-
msgstr "выберите действие"
|
691 |
-
|
692 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
693 |
-
msgid "Default values"
|
694 |
-
msgstr "Значения по-умолчанию"
|
695 |
-
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
698 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
699 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
700 |
-
msgid "Delete"
|
701 |
-
msgstr "Удалить"
|
702 |
-
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:505
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:523
|
706 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:541
|
707 |
-
msgid "NOT PRESENT"
|
708 |
-
msgstr "НЕ СУЩЕСТВУЕТ"
|
709 |
-
|
710 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:491
|
711 |
-
msgid "WordPress Fields table"
|
712 |
-
msgstr "Таблица WordPress Fields"
|
713 |
-
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:499
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
716 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:535
|
717 |
-
msgid "Empty"
|
718 |
-
msgstr "Очистить"
|
719 |
-
|
720 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:511
|
721 |
-
msgid "Extra Fields table"
|
722 |
-
msgstr "Таблица Extra Fields"
|
723 |
-
|
724 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:528
|
725 |
-
msgid "Users Data table"
|
726 |
-
msgstr "Таблица данных пользователей"
|
727 |
-
|
728 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
729 |
-
msgid "all data inserted by users in all and only extra fields"
|
730 |
-
msgstr "все данные, вставленные пользователями во все и только в дополнительные поля"
|
731 |
-
|
732 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
733 |
-
msgid "Force tables creation"
|
734 |
-
msgstr "Force tables creation"
|
735 |
-
|
736 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
737 |
-
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:558
|
745 |
-
#, fuzzy
|
746 |
-
msgid "Extra Fields section title"
|
747 |
-
msgstr "Таблица Extra Fields"
|
748 |
-
|
749 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
750 |
-
msgid "Fieldset's titles, separates with comma"
|
751 |
-
msgstr "Названия полей через запятую"
|
752 |
-
|
753 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
754 |
-
msgid "example: title1,title2,title3"
|
755 |
-
msgstr "пример: заголовок1,заголовок2, заголовок3"
|
756 |
-
|
757 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
758 |
-
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
762 |
-
msgid "
|
763 |
-
msgstr "
|
764 |
-
|
765 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:578
|
766 |
-
msgid "Hide name field"
|
767 |
-
msgstr "Скрыть поле с именем"
|
768 |
-
|
769 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:583
|
770 |
-
msgid "Hide email field"
|
771 |
-
msgstr "Скрыть поле с email"
|
772 |
-
|
773 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:587
|
774 |
-
#, fuzzy
|
775 |
-
msgid "Hide role field"
|
776 |
-
msgstr "Скрыть поле с именем"
|
777 |
|
778 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
779 |
-
msgid "
|
780 |
-
msgstr "
|
781 |
|
782 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
783 |
-
|
784 |
-
|
|
|
785 |
|
786 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
787 |
-
msgid "
|
788 |
-
msgstr "
|
789 |
|
790 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
791 |
-
msgid "
|
792 |
-
msgstr ""
|
793 |
|
794 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
795 |
-
msgid "
|
796 |
-
msgstr "
|
797 |
|
798 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
799 |
-
msgid "
|
800 |
-
msgstr "
|
801 |
|
802 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
803 |
-
msgid "
|
804 |
-
msgstr "
|
805 |
|
806 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
807 |
-
msgid "
|
808 |
-
msgstr "
|
809 |
|
810 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
811 |
-
msgid "
|
812 |
-
msgstr "
|
813 |
|
814 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
815 |
-
msgid "
|
816 |
-
msgstr "
|
817 |
|
818 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
819 |
-
msgid "
|
820 |
-
msgstr "
|
821 |
|
822 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
823 |
-
msgid "
|
824 |
-
msgstr ""
|
825 |
|
826 |
#~ msgid "Disable get_cimyFieldValue function"
|
827 |
#~ msgstr "Отключить функцию get_cimyFieldValue"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-11-22 23:52+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-11-22 23:52+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: mikolka <mikolka.info@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:34
|
20 |
+
msgid "WordPress Fields table emptied"
|
21 |
+
msgstr "Таблица WordPress Fields очищена"
|
22 |
+
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
24 |
+
msgid "WordPress Fields table deleted"
|
25 |
+
msgstr "Таблица WordPress Fields удалена"
|
26 |
+
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
28 |
+
msgid "Extra Fields table emptied"
|
29 |
+
msgstr "Таблица Extra Fields очищена"
|
30 |
+
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
32 |
+
msgid "Extra Fields table deleted"
|
33 |
+
msgstr "Таблица Extra Fields удалена"
|
34 |
+
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
36 |
+
msgid "Users Data table emptied"
|
37 |
+
msgstr "Таблица пользовательских данных очищена"
|
38 |
+
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
40 |
+
msgid "Users Data table deleted"
|
41 |
+
msgstr "Таблица пользовательских данных удалена"
|
42 |
+
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
44 |
+
msgid "Options set to default values"
|
45 |
+
msgstr "Установлены настройки по-умолчанию"
|
46 |
+
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
48 |
+
msgid "Options deleted"
|
49 |
+
msgstr "Настройки удалены"
|
50 |
+
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
52 |
+
msgid "Options changed"
|
53 |
+
msgstr "Настройки изменены"
|
54 |
+
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:401
|
56 |
+
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:410
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:476
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:673
|
62 |
+
msgid "Options"
|
63 |
+
msgstr "Настройки"
|
64 |
+
|
65 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:430
|
67 |
+
msgid "Add a new Field"
|
68 |
+
msgstr "Добавить новое поле"
|
69 |
+
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
71 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
73 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
|
74 |
+
msgid "Extra Fields"
|
75 |
+
msgstr "Extra Fields"
|
76 |
+
|
77 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:457
|
79 |
+
msgid "SUCCESSFUL"
|
80 |
+
msgstr "УСПЕШНО"
|
81 |
+
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:434
|
83 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
84 |
+
msgid "Save Changes"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:435
|
88 |
+
msgid "General"
|
89 |
+
msgstr "Главное"
|
90 |
+
|
91 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:443
|
92 |
+
msgid "installed is"
|
93 |
+
msgstr "установлено"
|
94 |
+
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:447
|
96 |
+
msgid "OPTIONS DELETED!"
|
97 |
+
msgstr "НАСТРОЙКИ УДАЛЕНЫ!"
|
98 |
+
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:450
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:455
|
101 |
+
msgid "Fix the problem"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
105 |
+
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
106 |
+
msgstr "ВЕРСИИ НЕ СОВПАДАЮТ! Это из-за того, что Вы не деактивировали, а затем активировали плагин после обновления! Могут возникнуть проблемы..."
|
|
|
107 |
|
108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
109 |
+
msgid "Picture/Avatar upload"
|
110 |
+
msgstr ""
|
|
|
111 |
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:465
|
113 |
+
msgid "is created and writable"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:467
|
117 |
+
msgid "is NOT created or webserver does NOT have permission to write on it"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:473
|
121 |
+
msgid "Database"
|
122 |
+
msgstr "База данных"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
125 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
128 |
+
msgid "select action"
|
129 |
+
msgstr "выберите действие"
|
130 |
+
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
132 |
+
msgid "Default values"
|
133 |
+
msgstr "Значения по-умолчанию"
|
134 |
+
|
135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
139 |
+
msgid "Delete"
|
140 |
+
msgstr "Удалить"
|
141 |
+
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:488
|
143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:507
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
146 |
+
msgid "NOT PRESENT"
|
147 |
+
msgstr "НЕ СУЩЕСТВУЕТ"
|
148 |
+
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:493
|
150 |
+
msgid "WordPress Fields table"
|
151 |
+
msgstr "Таблица WordPress Fields"
|
152 |
+
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:501
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:520
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
156 |
+
msgid "Empty"
|
157 |
+
msgstr "Очистить"
|
158 |
+
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:513
|
160 |
+
msgid "Extra Fields table"
|
161 |
+
msgstr "Таблица Extra Fields"
|
162 |
+
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
164 |
+
msgid "Users Data table"
|
165 |
+
msgstr "Таблица данных пользователей"
|
166 |
+
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
168 |
+
msgid "all data inserted by users in all and only extra fields"
|
169 |
+
msgstr "все данные, вставленные пользователями во все и только в дополнительные поля"
|
170 |
+
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
172 |
+
msgid "Force tables creation"
|
173 |
+
msgstr "Force tables creation"
|
174 |
+
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
176 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
180 |
+
msgid "User Profile"
|
181 |
+
msgstr "Профиль пользователя"
|
182 |
+
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:560
|
184 |
#, fuzzy
|
185 |
+
msgid "Extra Fields section title"
|
186 |
+
msgstr "Таблица Extra Fields"
|
187 |
|
188 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
189 |
+
msgid "Fieldset's titles, separates with comma"
|
190 |
+
msgstr "Названия полей через запятую"
|
191 |
+
|
192 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
193 |
+
msgid "example: title1,title2,title3"
|
194 |
+
msgstr "пример: заголовок1,заголовок2, заголовок3"
|
195 |
+
|
196 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
197 |
+
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
202 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
203 |
+
msgid "Authors & Users Extended"
|
204 |
+
msgstr "Авторы и Продвинутые пользователи"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
|
206 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
207 |
+
msgid "Hide username field"
|
208 |
+
msgstr "Скрыть поле с именем пользователя"
|
209 |
|
210 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
211 |
+
msgid "Hide name field"
|
212 |
+
msgstr "Скрыть поле с именем"
|
213 |
|
214 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:585
|
215 |
+
msgid "Hide email field"
|
216 |
+
msgstr "Скрыть поле с email"
|
|
|
217 |
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
219 |
+
#, fuzzy
|
220 |
+
msgid "Hide role field"
|
221 |
+
msgstr "Скрыть поле с именем"
|
222 |
|
223 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
224 |
+
msgid "Hide website field"
|
225 |
+
msgstr "Скрыть поле с адресом сайта"
|
226 |
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
228 |
+
msgid "Hide n. posts field"
|
229 |
+
msgstr "Скрыть поле с № постов"
|
230 |
|
231 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:602
|
232 |
+
msgid "WordPress hidden fields"
|
233 |
+
msgstr "Скрытые поля WordPress"
|
234 |
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
236 |
+
msgid "Show password"
|
237 |
+
msgstr ""
|
238 |
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
240 |
+
msgid "Show first name"
|
241 |
+
msgstr "Показать имя"
|
242 |
|
243 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
244 |
+
msgid "Show last name"
|
245 |
+
msgstr "Показать фамилию"
|
246 |
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
248 |
+
msgid "Show nickname"
|
249 |
+
msgstr "Показать ник"
|
250 |
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
252 |
+
msgid "Show website"
|
253 |
+
msgstr "Показать адрес сайта"
|
254 |
|
255 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
256 |
+
msgid "Show AIM"
|
257 |
+
msgstr "Показать AIM"
|
258 |
+
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
260 |
+
msgid "Show Yahoo IM"
|
261 |
+
msgstr "Показать Yahoo IM"
|
262 |
+
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:633
|
264 |
+
msgid "Show Jabber / Google Talk"
|
265 |
+
msgstr "Показать Jabber / Google Talk"
|
266 |
|
267 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:637
|
268 |
+
msgid "Show Biographical Info"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:292
|
272 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:729
|
273 |
#, fuzzy
|
274 |
+
msgid "Please upload a file with one of the following extensions"
|
275 |
+
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
276 |
+
|
277 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:298
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:735
|
279 |
+
msgid "Please upload an image with one of the following extensions"
|
280 |
+
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
281 |
+
|
282 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:422
|
283 |
+
#, fuzzy
|
284 |
+
msgid "Delete the file"
|
285 |
+
msgstr "Удалить поле"
|
286 |
+
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:423
|
288 |
+
#, fuzzy
|
289 |
+
msgid "Update the file"
|
290 |
+
msgstr "Обновить поле"
|
291 |
|
292 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:426
|
293 |
+
#, fuzzy
|
294 |
+
msgid "Delete the picture"
|
295 |
+
msgstr "Удалить поле"
|
296 |
+
|
297 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:427
|
298 |
+
#, fuzzy
|
299 |
+
msgid "Update the picture"
|
300 |
+
msgstr "Обновить поле"
|
301 |
+
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
303 |
+
msgid "Picture URL:"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:215
|
307 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:222
|
311 |
msgid "Password"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:242
|
315 |
#, fuzzy
|
316 |
msgid "First name"
|
317 |
msgstr "Показать имя"
|
318 |
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
|
320 |
#, fuzzy
|
321 |
msgid "Last name"
|
322 |
msgstr "Показать фамилию"
|
323 |
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:282
|
325 |
#, fuzzy
|
326 |
msgid "Nickname"
|
327 |
msgstr "Имя"
|
328 |
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
330 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
331 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
332 |
msgid "Website"
|
333 |
msgstr "Адрес сайта"
|
334 |
|
335 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:322
|
336 |
msgid "AIM"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:342
|
340 |
#, fuzzy
|
341 |
msgid "Yahoo IM"
|
342 |
msgstr "Показать Yahoo IM"
|
343 |
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:362
|
345 |
#, fuzzy
|
346 |
msgid "Jabber / Google Talk"
|
347 |
msgstr "Показать Jabber / Google Talk"
|
348 |
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:382
|
350 |
msgid "Biographical Info"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:674
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
|
|
|
|
|
|
|
|
|
|
|
|
355 |
msgid "Fields"
|
356 |
msgstr "Поля"
|
357 |
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
|
|
|
|
|
|
|
|
|
|
|
|
360 |
msgid "A&U Extended"
|
361 |
msgstr "A и продвинутые П "
|
362 |
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:679
|
364 |
#, fuzzy
|
365 |
msgid "Users Extended"
|
366 |
msgstr "Список Авторов и продвинутых пользователей"
|
386 |
msgstr "Изменить порядок"
|
387 |
|
388 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
390 |
msgid "Min length"
|
391 |
msgstr "Мин длина"
|
392 |
|
393 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1067
|
395 |
msgid "Exact length"
|
396 |
msgstr "Точная длина"
|
397 |
|
398 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
399 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
400 |
msgid "Max length"
|
401 |
msgstr "Макс длина"
|
402 |
|
404 |
msgid "Exact or Max length"
|
405 |
msgstr "Точная или Макс длина"
|
406 |
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
408 |
msgid "changed to"
|
409 |
msgstr "изменена на"
|
410 |
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:124
|
412 |
msgid "You cannot give an order that misses some numbers"
|
413 |
msgstr "Вы не можете установить порядок, который пропускает некоторые числа"
|
414 |
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:127
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:200
|
417 |
msgid "Nothing selected"
|
418 |
msgstr "Ничего не выбрано"
|
419 |
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
421 |
msgid "Field(s)"
|
422 |
msgstr "Поле(я)"
|
423 |
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
425 |
msgid "deleted correctly"
|
426 |
msgstr "удалены правильно"
|
427 |
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:229
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
430 |
msgid "Min size"
|
431 |
msgstr "Мин размер"
|
432 |
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:230
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1059
|
435 |
msgid "Exact size"
|
436 |
msgstr "Точный размер"
|
437 |
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:231
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
|
440 |
msgid "Max size"
|
441 |
msgstr "Макс размер"
|
442 |
|
443 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:233
|
444 |
msgid "Exact or Max size"
|
445 |
msgstr "Точный или Макс размер"
|
446 |
|
447 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
448 |
msgid "Name not specified"
|
449 |
msgstr "Имя не задано"
|
450 |
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
452 |
msgid "Name cannot contains spaces"
|
453 |
msgstr "Имя не должно содержать пробелов"
|
454 |
|
455 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
456 |
msgid "Label not specified"
|
457 |
msgstr "Метка не выбрана"
|
458 |
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
460 |
msgid "not selected (with this type is necessary)"
|
461 |
msgstr "не выбрано (с этим типом необходимо)"
|
462 |
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
464 |
msgid "If you select"
|
465 |
msgstr "Если Вы выбрали"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
468 |
msgid "you cannot select Min or Max"
|
469 |
msgstr "Вы не можете выбрать Мин или Макс"
|
470 |
|
471 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
472 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
474 |
msgid "should be in the range of"
|
475 |
msgstr "должно быть в диапозоне"
|
476 |
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
478 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:328
|
479 |
msgid "Equal TO not specified"
|
480 |
msgstr "Равная ЧЕМУ не выбрано"
|
481 |
|
482 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
|
483 |
msgid "With checkbox type Equal TO can only be"
|
484 |
msgstr "Может быть только с флажком выбора типа Равная ЧЕМУ"
|
485 |
|
486 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:334
|
487 |
msgid "With radio type Equal TO can only be"
|
488 |
msgstr "Может быть только с переключателем выбора типа Равная ЧЕМУ"
|
489 |
|
490 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:350
|
491 |
msgid "With checkbox type Value can only be"
|
492 |
msgstr "Может быть только с флажками выбора типа Значение"
|
493 |
|
494 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:353
|
495 |
msgid "With radio type Value can only be"
|
496 |
msgstr "Может быть только с переключателем выбора типа Значение"
|
497 |
|
498 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
|
499 |
msgid "Field inserted correctly"
|
500 |
msgstr "Поле вставлено корректно"
|
501 |
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
503 |
msgid "Field #"
|
504 |
msgstr "Поле #"
|
505 |
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
507 |
msgid "updated correctly"
|
508 |
msgstr "обновлено корректно"
|
509 |
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:415
|
511 |
msgid "Name inserted is just in the database, change to another one"
|
512 |
msgstr "Вставляемое имя уже есть в БД, выберите другое"
|
513 |
|
|
|
|
|
|
|
|
|
|
|
514 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:378
|
518 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:390
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
522 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
526 |
+
msgid "ERROR"
|
527 |
+
msgstr "ОШИБКА"
|
528 |
|
529 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
530 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
531 |
msgstr "Для добавления нового поля вам необходимо задать имя, тип и метку; значение и описание. Правила применяются в процессе регистрации пользователя."
|
532 |
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
|
534 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
535 |
msgstr "С <strong>переключателем(radio)</strong> и <strong>флажками(checkbox)</strong>: <em>Значение</em> и <em>равно ЧЕМУ</em> может быть либо 'Yes', либо 'No' - это означает 'выбрано' или 'не выбрано'"
|
536 |
|
537 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
538 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
539 |
msgstr "С <strong>выпадающим списком(drop-down)</strong>: вы можете добавить все опции в метку, например: метка/элемент1,элемент2,элемент3"
|
540 |
|
541 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
|
542 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
543 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
544 |
|
545 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
546 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
547 |
msgstr "С <strong>picture-url</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; <em>равная ЧЕМУ</em> подразумевает max ширину для превью (высота будет установлена пропорционально)"
|
548 |
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
|
550 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
551 |
msgstr "С <strong>датой регистрации(registration-date)</strong>: <em>равна ЧЕМУ</em> подразумевает формат даты и времени"
|
552 |
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
554 |
#, fuzzy
|
555 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
556 |
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
559 |
+
#, fuzzy
|
560 |
+
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
561 |
+
msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
|
562 |
+
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1477
|
569 |
msgid "Name"
|
570 |
msgstr "Имя"
|
571 |
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1094
|
576 |
msgid "Value"
|
577 |
msgstr "Значение"
|
578 |
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
583 |
msgid "Type"
|
584 |
msgstr "Тип"
|
585 |
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
587 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
588 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
590 |
msgid "Label"
|
591 |
msgstr "Метка"
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
597 |
msgid "Description"
|
598 |
msgstr "Описание"
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:851
|
602 |
msgid "Rules"
|
603 |
msgstr "Правила"
|
604 |
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:852
|
607 |
msgid "Actions"
|
608 |
msgstr "Действия"
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1113
|
612 |
#, fuzzy
|
613 |
msgid "Fieldset"
|
614 |
msgstr "Поля"
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:713
|
617 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1136
|
618 |
msgid "Can be empty"
|
619 |
msgstr "Может быть пустым"
|
620 |
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
622 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1137
|
623 |
msgid "Check for E-mail syntax"
|
624 |
msgstr "Проверка синтаксиса E-mail"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
628 |
msgid "Can be modified"
|
629 |
msgstr "Может быть изменено"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:718
|
632 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
633 |
msgid "Can be modified only if empty"
|
634 |
msgstr "Может быть изменено только если пустое"
|
635 |
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
637 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
638 |
msgid "Can be modified only by admin"
|
639 |
msgstr "Может быть изменено только админом"
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
642 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
643 |
msgid "Can be modified only by admin or if empty"
|
644 |
msgstr "Может быть изменено только админом или если пустое"
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:721
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1144
|
648 |
msgid "Cannot be modified"
|
649 |
msgstr "Не может быть изменено"
|
650 |
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
652 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
653 |
msgid "Should be equal TO"
|
654 |
msgstr "Долднадолжно быть равно ЧЕМУ"
|
655 |
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
657 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
658 |
msgid "Case sensitive"
|
659 |
msgstr "Чуствительность к регистру"
|
660 |
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:734
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
663 |
msgid "Regular Expression"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:737
|
667 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1157
|
668 |
msgid "Show the field in the registration"
|
669 |
msgstr "Показывать поле при регистрации"
|
670 |
|
671 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:740
|
672 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1160
|
673 |
msgid "Show the field in User's profile"
|
674 |
msgstr "Показывать поле в профиле пользователя"
|
675 |
|
676 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
677 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1169
|
678 |
msgid "Show the field in A&U Extended menu"
|
679 |
msgstr "Показывать поле в меню A&продвинутых П"
|
680 |
|
681 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:746
|
682 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1172
|
683 |
+
#, fuzzy
|
684 |
+
msgid "Show the field in the search engine"
|
685 |
+
msgstr "Показывать поле при регистрации"
|
686 |
|
687 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
|
688 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1175
|
689 |
+
#, fuzzy
|
690 |
+
msgid "Show the field in the blog"
|
691 |
+
msgstr "Показывать поле при регистрации"
|
692 |
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:752
|
694 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
695 |
+
#, fuzzy
|
696 |
+
msgid "Show the field if the role is at least:"
|
697 |
+
msgstr "Показывать поле при регистрации"
|
|
|
698 |
|
699 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:754
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1180
|
701 |
+
msgid "Anonymous"
|
702 |
+
msgstr ""
|
703 |
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
|
705 |
+
msgid "Clear"
|
706 |
+
msgstr "Очистить"
|
707 |
+
|
708 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:813
|
709 |
msgid "Invert selection"
|
710 |
msgstr "Инветировать выбор"
|
711 |
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:814
|
|
|
|
|
713 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
714 |
msgstr "Вы действительно хотите удалить поле(я) и данные вставленные в них пользователями?"
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
717 |
+
msgid "WordPress Fields"
|
718 |
+
msgstr "WordPress Fields"
|
719 |
+
|
720 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
|
721 |
+
msgid "None!"
|
722 |
+
msgstr "Нет!"
|
723 |
+
|
724 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
725 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1079
|
726 |
msgid "Order"
|
727 |
msgstr "Порядок"
|
728 |
|
729 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1191
|
730 |
msgid "Reset"
|
731 |
msgstr "Сброс"
|
732 |
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1248
|
734 |
+
#, fuzzy
|
735 |
+
msgid "select"
|
736 |
+
msgstr "Удалить"
|
737 |
+
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1351
|
739 |
#, php-format
|
740 |
msgid "Users Matching \"%s\""
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
744 |
#, fuzzy
|
745 |
msgid "Users Extended List"
|
746 |
msgstr "Список Авторов и продвинутых пользователей"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
749 |
msgid "Authors & Users Extended List"
|
750 |
msgstr "Список Авторов и продвинутых пользователей"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
|
753 |
msgid "Search Users"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1435
|
757 |
msgid "« Back to All Users"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
761 |
#, fuzzy
|
762 |
msgid "Users per page"
|
763 |
msgstr "Таблица данных пользователей"
|
764 |
|
765 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
766 |
msgid "Apply"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
770 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1472
|
771 |
msgid "Username"
|
772 |
msgstr "Имя пользователя"
|
773 |
|
774 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
776 |
msgid "E-mail"
|
777 |
msgstr "E-mail"
|
778 |
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
|
781 |
#, fuzzy
|
782 |
msgid "Role"
|
783 |
msgstr "Правила"
|
784 |
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
786 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
787 |
msgid "Posts"
|
788 |
msgstr "Сообщения"
|
789 |
|
790 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1604
|
791 |
msgid "View posts by this author"
|
792 |
msgstr "Просмотреть сообщения этого автора"
|
793 |
|
794 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1635
|
795 |
#, php-format
|
796 |
msgid "e-mail: %s"
|
797 |
msgstr "e-mail: %s"
|
798 |
|
799 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:327
|
800 |
+
#, fuzzy
|
801 |
+
msgid "no fieldset"
|
802 |
+
msgstr "Пункты полей"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
803 |
|
804 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
805 |
+
#, php-format
|
806 |
+
msgid "File '%s' doesn't exist?"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
810 |
+
msgid "The GD image library is not installed."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
814 |
+
#, php-format
|
815 |
+
msgid "File '%s' is not an image."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
819 |
+
msgid "hasn’t a correct email syntax."
|
820 |
+
msgstr "не верно введен email."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
821 |
|
822 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
823 |
+
msgid "couldn’t be empty."
|
824 |
+
msgstr "не может быть пустым."
|
825 |
|
826 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:377
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:386
|
828 |
+
msgid "isn’t correct"
|
829 |
+
msgstr "не верно"
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
832 |
+
msgid "YES"
|
833 |
+
msgstr "ДА"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
836 |
+
msgid "NO"
|
837 |
+
msgstr "НЕТ"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:388
|
840 |
+
msgid "should be"
|
841 |
+
msgstr "должно быть"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
844 |
+
msgid "should be an image."
|
845 |
+
msgstr "должно быть изображение."
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
848 |
+
msgid "couldn’t have size less than"
|
849 |
+
msgstr "не может иметь размер менее чем"
|
850 |
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
852 |
+
msgid "couldn’t have length less than"
|
853 |
+
msgstr "не может иметь длину менее чем"
|
854 |
|
855 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
856 |
+
msgid "couldn’t have size different than"
|
857 |
+
msgstr "не может иметь размер отличный от"
|
858 |
|
859 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
860 |
+
msgid "couldn’t have length different than"
|
861 |
+
msgstr "не может иметь длину отличную от"
|
862 |
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
864 |
+
msgid "couldn’t have size more than"
|
865 |
+
msgstr "имеет размер больше чем"
|
866 |
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
868 |
+
msgid "couldn’t have length more than"
|
869 |
+
msgstr "имеет длину больше чем"
|
870 |
|
871 |
#~ msgid "Disable get_cimyFieldValue function"
|
872 |
#~ msgstr "Отключить функцию get_cimyFieldValue"
|
langs/cimy_uef-sv_SE.mo
CHANGED
Binary file
|
langs/cimy_uef-sv_SE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-
|
6 |
-
"PO-Revision-Date: 2009-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,193 +16,352 @@ msgstr ""
|
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
34 |
-
|
35 |
-
|
36 |
-
msgstr "Upladda en bild av en av följlande filtyper"
|
37 |
|
38 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
39 |
-
|
40 |
-
|
41 |
-
msgstr "Ta bort fält"
|
42 |
|
43 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
44 |
-
|
45 |
-
|
46 |
-
msgstr "Uppdatra fält"
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
49 |
-
msgid "
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
53 |
-
|
54 |
-
|
55 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:283
|
56 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:290
|
57 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:301
|
58 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:307
|
59 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:319
|
60 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:325
|
61 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:337
|
62 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:343
|
63 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:419
|
64 |
-
msgid "ERROR"
|
65 |
-
msgstr "FEL"
|
66 |
|
67 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
68 |
-
|
69 |
-
|
|
|
|
|
|
|
70 |
|
71 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
72 |
-
msgid "
|
73 |
-
msgstr "
|
74 |
|
75 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
76 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
77 |
-
|
78 |
-
|
|
|
|
|
79 |
|
80 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
81 |
-
|
82 |
-
|
|
|
|
|
|
|
83 |
|
84 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
|
88 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
89 |
-
|
90 |
-
|
|
|
|
|
91 |
|
92 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
93 |
-
msgid "
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
107 |
|
108 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
109 |
-
msgid "
|
110 |
-
msgstr "
|
111 |
|
112 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
113 |
-
msgid "
|
114 |
-
msgstr "
|
115 |
|
116 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
117 |
-
msgid "
|
118 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
|
120 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
#, fuzzy
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
|
125 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
130 |
msgid "Password"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
134 |
-
#, fuzzy
|
135 |
msgid "First name"
|
136 |
-
msgstr "
|
137 |
|
138 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
139 |
-
#, fuzzy
|
140 |
msgid "Last name"
|
141 |
-
msgstr "
|
142 |
|
143 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
144 |
-
#, fuzzy
|
145 |
msgid "Nickname"
|
146 |
-
msgstr "
|
147 |
|
148 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
149 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
150 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
151 |
msgid "Website"
|
152 |
-
msgstr "
|
153 |
|
154 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
155 |
msgid "AIM"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
159 |
-
#, fuzzy
|
160 |
msgid "Yahoo IM"
|
161 |
-
msgstr "
|
162 |
|
163 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
164 |
-
#, fuzzy
|
165 |
msgid "Jabber / Google Talk"
|
166 |
-
msgstr "
|
167 |
|
168 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
169 |
msgid "Biographical Info"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
173 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
174 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
175 |
-
msgid "Options"
|
176 |
-
msgstr "Inställningar"
|
177 |
-
|
178 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:612
|
179 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:111
|
180 |
msgid "Fields"
|
181 |
-
msgstr "Fä
|
182 |
-
|
183 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:613
|
184 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:622
|
185 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
186 |
-
msgid "Authors & Users Extended"
|
187 |
-
msgstr "Användare Extra"
|
188 |
|
189 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
190 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
191 |
msgid "A&U Extended"
|
192 |
-
msgstr "
|
193 |
|
194 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
195 |
-
#, fuzzy
|
196 |
msgid "Users Extended"
|
197 |
-
msgstr "
|
198 |
|
199 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:12
|
200 |
msgid "Add field"
|
201 |
-
msgstr "
|
202 |
|
203 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:13
|
204 |
msgid "Update field"
|
205 |
-
msgstr "
|
206 |
|
207 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
208 |
msgid "Delete field"
|
@@ -217,17 +376,17 @@ msgid "Change order"
|
|
217 |
msgstr "Ändra ordning"
|
218 |
|
219 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
220 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
221 |
msgid "Min length"
|
222 |
msgstr "Min. längd"
|
223 |
|
224 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
225 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
226 |
msgid "Exact length"
|
227 |
msgstr "Exakt längd"
|
228 |
|
229 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
230 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
231 |
msgid "Max length"
|
232 |
msgstr "Max. längd"
|
233 |
|
@@ -235,591 +394,463 @@ msgstr "Max. längd"
|
|
235 |
msgid "Exact or Max length"
|
236 |
msgstr "Exakt eller max. längd"
|
237 |
|
238 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
239 |
msgid "changed to"
|
240 |
-
msgstr "
|
241 |
|
242 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
243 |
msgid "You cannot give an order that misses some numbers"
|
244 |
-
msgstr "Du
|
245 |
|
246 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
247 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
248 |
msgid "Nothing selected"
|
249 |
-
msgstr "
|
250 |
|
251 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
252 |
msgid "Field(s)"
|
253 |
-
msgstr "Fält
|
254 |
|
255 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
256 |
msgid "deleted correctly"
|
257 |
-
msgstr "
|
258 |
|
259 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
260 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
261 |
msgid "Min size"
|
262 |
-
msgstr "Min.
|
263 |
|
264 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
265 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
266 |
msgid "Exact size"
|
267 |
-
msgstr "Exakt
|
268 |
|
269 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
270 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
271 |
msgid "Max size"
|
272 |
-
msgstr "Max.
|
273 |
|
274 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
275 |
msgid "Exact or Max size"
|
276 |
-
msgstr "Exakt eller Max.
|
277 |
|
278 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
279 |
msgid "Name not specified"
|
280 |
msgstr "Namn ej angivet"
|
281 |
|
282 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
283 |
msgid "Name cannot contains spaces"
|
284 |
-
msgstr "Namnet få inte
|
285 |
|
286 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
287 |
msgid "Label not specified"
|
288 |
-
msgstr "
|
289 |
|
290 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
291 |
msgid "not selected (with this type is necessary)"
|
292 |
msgstr "Ej vald (krävs vid denna typ)"
|
293 |
|
294 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
295 |
msgid "If you select"
|
296 |
-
msgstr "Om du vä
|
297 |
|
298 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
299 |
msgid "you cannot select Min or Max"
|
300 |
msgstr "Min eller Max kan ej väljas"
|
301 |
|
302 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
303 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
304 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
305 |
msgid "should be in the range of"
|
306 |
msgstr "skall vara mellan"
|
307 |
|
308 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
309 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
310 |
msgid "Equal TO not specified"
|
311 |
msgstr "Lika MED ej angivet"
|
312 |
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
314 |
msgid "With checkbox type Equal TO can only be"
|
315 |
-
msgstr "
|
316 |
|
317 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
318 |
msgid "With radio type Equal TO can only be"
|
319 |
-
msgstr "
|
320 |
|
321 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
322 |
msgid "With checkbox type Value can only be"
|
323 |
-
msgstr "
|
324 |
|
325 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
326 |
msgid "With radio type Value can only be"
|
327 |
-
msgstr "
|
328 |
|
329 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
330 |
msgid "Field inserted correctly"
|
331 |
-
msgstr "Fält
|
332 |
|
333 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
334 |
msgid "Field #"
|
335 |
msgstr "Fält #"
|
336 |
|
337 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
338 |
msgid "updated correctly"
|
339 |
-
msgstr "
|
340 |
|
341 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
342 |
msgid "Name inserted is just in the database, change to another one"
|
343 |
-
msgstr "
|
344 |
-
|
345 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:411
|
346 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:411
|
347 |
-
msgid "Add a new Field"
|
348 |
-
msgstr "Tillägga en ny fält"
|
349 |
|
350 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
351 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
352 |
-
|
353 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
|
355 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
356 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
357 |
-
msgstr "För att
|
358 |
|
359 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
360 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
361 |
msgstr "Med <strong>radio</strong> och <strong>checkbox</strong>: <em>Värde</em> och <em>LIKA MED</em> kan bara vara 'Yes' eller 'No', som betyder vald eller ej vald."
|
362 |
|
363 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
364 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
365 |
-
msgstr "<strong>drop-down</strong>: Du må
|
366 |
|
367 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
368 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
369 |
msgstr "Med <strong>bild</strong>: Du kan använde en standard bild med (URL) under <em>Värde</em>; 'min, exakt, max störleken' angiven i KB;<em>LIKA MED</em> betyder max pixelstörlek (höjd eller bredd) för tumnagelbild."
|
370 |
|
371 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
372 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
373 |
-
msgstr "Med <strong>bild-url</strong>: Du kan anger en standardbild genom (URL) under <em>Värde</em>; <em>LIKA MED</em> betyder max pixelbred (höjden
|
374 |
|
375 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
376 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
377 |
-
msgstr "Med <strong>registration-datum</strong>: <em>LIKA MED</em> betyder datum-
|
378 |
|
379 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
380 |
-
#, fuzzy
|
381 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
|
|
|
|
|
|
|
|
|
|
382 |
msgstr "Med <strong>bild</strong>: Du kan använde en standard bild med (URL) under <em>Värde</em>; 'min, exakt, max störleken' angiven i KB;<em>LIKA MED</em> betyder max pixelstörlek (höjd eller bredd) för tumnagelbild."
|
383 |
|
384 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
385 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
386 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
387 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
388 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
389 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
390 |
msgid "Name"
|
391 |
msgstr "Namn"
|
392 |
|
393 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
394 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
395 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
396 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
397 |
msgid "Value"
|
398 |
msgstr "Värde"
|
399 |
|
400 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
401 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
402 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
403 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
404 |
msgid "Type"
|
405 |
msgstr "Typ"
|
406 |
|
407 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
408 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
409 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
410 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
411 |
msgid "Label"
|
412 |
-
msgstr "
|
413 |
|
414 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
415 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
416 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
417 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
418 |
msgid "Description"
|
419 |
msgstr "Beskrivning"
|
420 |
|
421 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
422 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
423 |
msgid "Rules"
|
424 |
msgstr "Regler"
|
425 |
|
426 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
427 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
428 |
msgid "Actions"
|
429 |
-
msgstr "
|
430 |
|
431 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
432 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
433 |
-
#, fuzzy
|
434 |
msgid "Fieldset"
|
435 |
-
msgstr "Fä
|
436 |
|
437 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
438 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
439 |
msgid "Can be empty"
|
440 |
msgstr "Kan vara töm"
|
441 |
|
442 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
443 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
444 |
msgid "Check for E-mail syntax"
|
445 |
-
msgstr "Kontrollera
|
446 |
|
447 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
448 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
449 |
msgid "Can be modified"
|
450 |
msgstr "Kan ändras"
|
451 |
|
452 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
453 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
454 |
msgid "Can be modified only if empty"
|
455 |
-
msgstr "Kan ändras
|
456 |
|
457 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
458 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
459 |
msgid "Can be modified only by admin"
|
460 |
-
msgstr "Kan ändras av
|
461 |
|
462 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
463 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
464 |
msgid "Can be modified only by admin or if empty"
|
465 |
-
msgstr "Kan ändras
|
466 |
|
467 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
468 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
469 |
msgid "Cannot be modified"
|
470 |
msgstr "Kan inte ändras"
|
471 |
|
472 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
473 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
474 |
msgid "Should be equal TO"
|
475 |
-
msgstr "
|
476 |
|
477 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
478 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
479 |
msgid "Case sensitive"
|
480 |
-
msgstr "
|
481 |
|
482 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
483 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
484 |
msgid "Regular Expression"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
488 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
489 |
msgid "Show the field in the registration"
|
490 |
msgstr "Visa fält vid registrering"
|
491 |
|
492 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
493 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
494 |
msgid "Show the field in User's profile"
|
495 |
msgstr "Visa fält i Användarprofil"
|
496 |
|
497 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
498 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
499 |
msgid "Show the field in A&U Extended menu"
|
500 |
-
msgstr "Visa fält i
|
501 |
|
502 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
503 |
-
|
504 |
-
|
|
|
|
|
505 |
|
506 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
507 |
-
|
508 |
-
|
|
|
|
|
509 |
|
510 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
511 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
msgstr "Extra fälter"
|
516 |
|
517 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
518 |
-
|
519 |
-
|
|
|
520 |
|
521 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
522 |
-
|
|
|
|
|
|
|
523 |
msgid "Invert selection"
|
524 |
msgstr "Omvänd markering"
|
525 |
|
526 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
527 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1048
|
528 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
|
529 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
530 |
-
msgstr "Är du säker på at du
|
|
|
|
|
|
|
|
|
531 |
|
532 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
533 |
-
|
|
|
|
|
|
|
|
|
534 |
msgid "Order"
|
535 |
-
msgstr "
|
536 |
|
537 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
538 |
msgid "Reset"
|
539 |
-
msgstr "Nollstä
|
|
|
|
|
|
|
|
|
|
|
540 |
|
541 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
542 |
#, php-format
|
543 |
msgid "Users Matching \"%s\""
|
544 |
-
msgstr "Användare som
|
545 |
|
546 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
547 |
-
#, fuzzy
|
548 |
msgid "Users Extended List"
|
549 |
-
msgstr "
|
550 |
|
551 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
552 |
msgid "Authors & Users Extended List"
|
553 |
-
msgstr "
|
554 |
|
555 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
556 |
msgid "Search Users"
|
557 |
msgstr "Sök Användare"
|
558 |
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
560 |
msgid "« Back to All Users"
|
561 |
msgstr "« Tillbaka till Alla Användare"
|
562 |
|
563 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
564 |
-
#, fuzzy
|
565 |
msgid "Users per page"
|
566 |
-
msgstr "Användare
|
567 |
|
568 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
569 |
msgid "Apply"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
573 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
574 |
msgid "Username"
|
575 |
-
msgstr "Anvä
|
576 |
|
577 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
579 |
msgid "E-mail"
|
580 |
msgstr "E-post"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
584 |
msgid "Role"
|
585 |
msgstr "Roll"
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
588 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
589 |
msgid "Posts"
|
590 |
-
msgstr "
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
593 |
msgid "View posts by this author"
|
594 |
-
msgstr "Visa
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:
|
597 |
#, php-format
|
598 |
msgid "e-mail: %s"
|
599 |
msgstr "e-post: %s"
|
600 |
|
601 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
602 |
-
msgid "
|
603 |
-
msgstr "
|
604 |
-
|
605 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
606 |
-
msgid "WordPress Fields table deleted"
|
607 |
-
msgstr "WordPress tabel borttagen"
|
608 |
-
|
609 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
610 |
-
msgid "Extra Fields table emptied"
|
611 |
-
msgstr "Extra tabel fälter tömde"
|
612 |
-
|
613 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
614 |
-
msgid "Extra Fields table deleted"
|
615 |
-
msgstr "Extra tabel fälter bottagen"
|
616 |
-
|
617 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
618 |
-
msgid "Users Data table emptied"
|
619 |
-
msgstr "Använder tabellen tömde"
|
620 |
-
|
621 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
622 |
-
msgid "Users Data table deleted"
|
623 |
-
msgstr "Användare tabellen borttagen "
|
624 |
-
|
625 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
626 |
-
msgid "Options set to default values"
|
627 |
-
msgstr "Inställningar nullställd"
|
628 |
-
|
629 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
630 |
-
msgid "Options deleted"
|
631 |
-
msgstr "Inställninger borttagna"
|
632 |
-
|
633 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
634 |
-
msgid "Options changed"
|
635 |
-
msgstr "Inställningar ändrad"
|
636 |
-
|
637 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
|
638 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
|
639 |
-
msgid "Save Changes"
|
640 |
-
msgstr ""
|
641 |
-
|
642 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:433
|
643 |
-
msgid "General"
|
644 |
-
msgstr "Allmän"
|
645 |
-
|
646 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:441
|
647 |
-
msgid "installed is"
|
648 |
-
msgstr "installerad är"
|
649 |
-
|
650 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
|
651 |
-
msgid "OPTIONS DELETED!"
|
652 |
-
msgstr "INSTÄLLNINGAR BORTTAGNA"
|
653 |
-
|
654 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
655 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
656 |
-
msgid "Fix the problem"
|
657 |
-
msgstr ""
|
658 |
-
|
659 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:448
|
660 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
661 |
-
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
662 |
-
msgstr ""
|
663 |
-
|
664 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:451
|
665 |
-
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
666 |
-
msgstr "VERSIONSKONFLIKT! deaktivera och aktivera plugin efter uppdatering!"
|
667 |
-
|
668 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:459
|
669 |
-
msgid "Picture/Avatar upload"
|
670 |
-
msgstr ""
|
671 |
-
|
672 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
|
673 |
-
msgid "is created and writable"
|
674 |
-
msgstr ""
|
675 |
|
676 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
677 |
-
|
|
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
681 |
-
msgid "
|
682 |
-
msgstr "Databas"
|
683 |
-
|
684 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
|
685 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
|
686 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:517
|
687 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
|
688 |
-
msgid "select action"
|
689 |
-
msgstr "Välj aktion"
|
690 |
-
|
691 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:481
|
692 |
-
msgid "Default values"
|
693 |
-
msgstr "Standard värder"
|
694 |
-
|
695 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
696 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
697 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
698 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
699 |
-
msgid "Delete"
|
700 |
-
msgstr "Ta bort"
|
701 |
-
|
702 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
703 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:505
|
704 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:523
|
705 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:541
|
706 |
-
msgid "NOT PRESENT"
|
707 |
-
msgstr "EJ NÄRVARANDE"
|
708 |
-
|
709 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:491
|
710 |
-
msgid "WordPress Fields table"
|
711 |
-
msgstr "WordPress Fält tabel"
|
712 |
-
|
713 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:499
|
714 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
715 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:535
|
716 |
-
msgid "Empty"
|
717 |
-
msgstr "Töm"
|
718 |
-
|
719 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:511
|
720 |
-
msgid "Extra Fields table"
|
721 |
-
msgstr "Extra Fälter Tabel"
|
722 |
-
|
723 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:528
|
724 |
-
msgid "Users Data table"
|
725 |
-
msgstr "Användare Data Tabel"
|
726 |
-
|
727 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
728 |
-
msgid "all data inserted by users in all and only extra fields"
|
729 |
-
msgstr "alla data av användare i alla och bara extra fälter"
|
730 |
-
|
731 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
732 |
-
msgid "Force tables creation"
|
733 |
-
msgstr "Forcera tabeller skapande"
|
734 |
-
|
735 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
736 |
-
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:558
|
744 |
-
#, fuzzy
|
745 |
-
msgid "Extra Fields section title"
|
746 |
-
msgstr "Extra Fälter Tabel"
|
747 |
-
|
748 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
749 |
-
msgid "Fieldset's titles, separates with comma"
|
750 |
-
msgstr "Fältset titel, separerat med komma"
|
751 |
-
|
752 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:562
|
753 |
-
msgid "example: title1,title2,title3"
|
754 |
-
msgstr "till ex.: Titel1,Titel2,Titel3"
|
755 |
-
|
756 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:563
|
757 |
-
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
761 |
-
msgid "
|
762 |
-
msgstr "
|
763 |
-
|
764 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:578
|
765 |
-
msgid "Hide name field"
|
766 |
-
msgstr "Göm namn fält"
|
767 |
-
|
768 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:583
|
769 |
-
msgid "Hide email field"
|
770 |
-
msgstr "Göm e-post fält"
|
771 |
-
|
772 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:587
|
773 |
-
msgid "Hide role field"
|
774 |
-
msgstr "Göm roll fält"
|
775 |
|
776 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
777 |
-
msgid "
|
778 |
-
msgstr "
|
779 |
|
780 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
781 |
-
|
782 |
-
|
|
|
783 |
|
784 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
785 |
-
msgid "
|
786 |
-
msgstr "
|
787 |
|
788 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
789 |
-
msgid "
|
790 |
-
msgstr ""
|
791 |
|
792 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
793 |
-
msgid "
|
794 |
-
msgstr "
|
795 |
|
796 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
797 |
-
msgid "
|
798 |
-
msgstr "
|
799 |
|
800 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
801 |
-
msgid "
|
802 |
-
msgstr "
|
803 |
|
804 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
805 |
-
msgid "
|
806 |
-
msgstr "
|
807 |
|
808 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
809 |
-
msgid "
|
810 |
-
msgstr "
|
811 |
|
812 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
813 |
-
msgid "
|
814 |
-
msgstr "
|
815 |
|
816 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
817 |
-
msgid "
|
818 |
-
msgstr "
|
819 |
|
820 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/
|
821 |
-
msgid "
|
822 |
-
msgstr ""
|
823 |
|
824 |
#~ msgid "Disable get_cimyFieldValue function"
|
825 |
#~ msgstr "Slå av funktionen get_cimyFieldValue"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-11-22 23:53+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-11-22 23:53+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
|
18 |
|
19 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:34
|
20 |
+
msgid "WordPress Fields table emptied"
|
21 |
+
msgstr "Wordpress-tabell tömdes"
|
22 |
+
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
24 |
+
msgid "WordPress Fields table deleted"
|
25 |
+
msgstr "WordPress-tabell borttagen"
|
26 |
+
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
28 |
+
msgid "Extra Fields table emptied"
|
29 |
+
msgstr "Extrafältstabellsfält tömdes"
|
30 |
+
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
32 |
+
msgid "Extra Fields table deleted"
|
33 |
+
msgstr "Extra tabel fälter bottagen"
|
34 |
+
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
36 |
+
msgid "Users Data table emptied"
|
37 |
+
msgstr "Användardatatabellen tömdes"
|
38 |
+
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
40 |
+
msgid "Users Data table deleted"
|
41 |
+
msgstr "Användardatatabellen borttagen "
|
42 |
+
|
43 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:78
|
44 |
+
msgid "Options set to default values"
|
45 |
+
msgstr "Inställningar nollställda"
|
46 |
+
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
48 |
+
msgid "Options deleted"
|
49 |
+
msgstr "Inställninger borttagna"
|
50 |
+
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
52 |
+
msgid "Options changed"
|
53 |
+
msgstr "Inställningar ändrade"
|
54 |
+
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:401
|
56 |
+
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:410
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:476
|
61 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:673
|
62 |
+
msgid "Options"
|
63 |
+
msgstr "Inställningar"
|
64 |
+
|
65 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
66 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:430
|
67 |
+
msgid "Add a new Field"
|
68 |
+
msgstr "Lägg till ett fält"
|
69 |
+
|
70 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
71 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
|
73 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
|
74 |
+
msgid "Extra Fields"
|
75 |
+
msgstr "Extrafält"
|
76 |
+
|
77 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
|
78 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:457
|
79 |
+
msgid "SUCCESSFUL"
|
80 |
+
msgstr "FRAMGÅNGSRIKT"
|
81 |
+
|
82 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:434
|
83 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:642
|
84 |
+
msgid "Save Changes"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:435
|
88 |
+
msgid "General"
|
89 |
+
msgstr "Allmän"
|
90 |
+
|
91 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:443
|
92 |
+
msgid "installed is"
|
93 |
+
msgstr "är installerad"
|
94 |
+
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:447
|
96 |
+
msgid "OPTIONS DELETED!"
|
97 |
+
msgstr "INSTÄLLNINGAR BORTTAGNA"
|
98 |
+
|
99 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:450
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:455
|
101 |
+
msgid "Fix the problem"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
105 |
+
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
106 |
+
msgstr "VERSIONSKONFLIKT! deaktivera och aktivera pluginen efter uppdatering!"
|
|
|
107 |
|
108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
109 |
+
msgid "Picture/Avatar upload"
|
110 |
+
msgstr ""
|
|
|
111 |
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:465
|
113 |
+
msgid "is created and writable"
|
114 |
+
msgstr ""
|
|
|
115 |
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:467
|
117 |
+
msgid "is NOT created or webserver does NOT have permission to write on it"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:473
|
121 |
+
msgid "Database"
|
122 |
+
msgstr "Databas"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
125 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
126 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
|
127 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
|
128 |
+
msgid "select action"
|
129 |
+
msgstr "Välj åtgärd"
|
130 |
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
132 |
+
msgid "Default values"
|
133 |
+
msgstr "Standardvärden"
|
134 |
|
135 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
|
136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
137 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
|
139 |
+
msgid "Delete"
|
140 |
+
msgstr "Ta bort"
|
141 |
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:488
|
143 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:507
|
144 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
146 |
+
msgid "NOT PRESENT"
|
147 |
+
msgstr "EXISTERAR EJ"
|
148 |
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:493
|
150 |
+
msgid "WordPress Fields table"
|
151 |
+
msgstr "WordPress Fälttabell"
|
152 |
|
153 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:501
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:520
|
155 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
156 |
+
msgid "Empty"
|
157 |
+
msgstr "Töm"
|
158 |
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:513
|
160 |
+
msgid "Extra Fields table"
|
161 |
+
msgstr "Extra Fälttabell"
|
162 |
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
164 |
+
msgid "Users Data table"
|
165 |
+
msgstr "Användardatatabell"
|
166 |
|
167 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
168 |
+
msgid "all data inserted by users in all and only extra fields"
|
169 |
+
msgstr "all data skapad av användare "
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
172 |
+
msgid "Force tables creation"
|
173 |
+
msgstr "Forcera skapande av tabeller"
|
174 |
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
176 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
177 |
+
msgstr ""
|
178 |
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
180 |
+
msgid "User Profile"
|
181 |
+
msgstr "Användarprofil"
|
182 |
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:560
|
184 |
+
msgid "Extra Fields section title"
|
185 |
+
msgstr "Titel för fältsektion"
|
186 |
+
|
187 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
188 |
+
msgid "Fieldset's titles, separates with comma"
|
189 |
+
msgstr "Fältsektionstitlar, separerade med kommatecken"
|
190 |
+
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
192 |
+
msgid "example: title1,title2,title3"
|
193 |
+
msgstr "tex.: Titel1,Titel2,Titel3"
|
194 |
+
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
|
196 |
+
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:570
|
200 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
201 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
202 |
+
msgid "Authors & Users Extended"
|
203 |
+
msgstr "Utökad författar- och användarhantering"
|
204 |
+
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
206 |
+
msgid "Hide username field"
|
207 |
+
msgstr "Göm fältet användarnamn"
|
208 |
+
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
210 |
+
msgid "Hide name field"
|
211 |
+
msgstr "Göm fältet namn"
|
212 |
+
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:585
|
214 |
+
msgid "Hide email field"
|
215 |
+
msgstr "Göm fältet e-post"
|
216 |
+
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
218 |
+
msgid "Hide role field"
|
219 |
+
msgstr "Göm fältet roll"
|
220 |
+
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
222 |
+
msgid "Hide website field"
|
223 |
+
msgstr "Göm fältet webbsajt"
|
224 |
+
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
226 |
+
msgid "Hide n. posts field"
|
227 |
+
msgstr "Göm n. postfält"
|
228 |
+
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:602
|
230 |
+
msgid "WordPress hidden fields"
|
231 |
+
msgstr "Wordpress gömda fält"
|
232 |
+
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
234 |
+
msgid "Show password"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
238 |
+
msgid "Show first name"
|
239 |
+
msgstr "Visa förnamn"
|
240 |
+
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
242 |
+
msgid "Show last name"
|
243 |
+
msgstr "Visa efternamn"
|
244 |
+
|
245 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
246 |
+
msgid "Show nickname"
|
247 |
+
msgstr "Visa smeknamn"
|
248 |
+
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
250 |
+
msgid "Show website"
|
251 |
+
msgstr "Visa webbsajt"
|
252 |
+
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
254 |
+
msgid "Show AIM"
|
255 |
+
msgstr "Visa AIM"
|
256 |
+
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
258 |
+
msgid "Show Yahoo IM"
|
259 |
+
msgstr "Visa Yahoo IM"
|
260 |
|
261 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:633
|
262 |
+
msgid "Show Jabber / Google Talk"
|
263 |
+
msgstr "Visa Jabber / Google Talk"
|
264 |
+
|
265 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:637
|
266 |
+
msgid "Show Biographical Info"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:292
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:729
|
271 |
#, fuzzy
|
272 |
+
msgid "Please upload a file with one of the following extensions"
|
273 |
+
msgstr "Ladda upp en bild med en av följlande filändelser"
|
274 |
+
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:298
|
276 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:735
|
277 |
+
msgid "Please upload an image with one of the following extensions"
|
278 |
+
msgstr "Ladda upp en bild med en av följlande filändelser"
|
279 |
+
|
280 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:422
|
281 |
+
#, fuzzy
|
282 |
+
msgid "Delete the file"
|
283 |
+
msgstr "Ta bort bild"
|
284 |
|
285 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:423
|
286 |
+
#, fuzzy
|
287 |
+
msgid "Update the file"
|
288 |
+
msgstr "Uppdatra bild"
|
289 |
+
|
290 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:426
|
291 |
+
msgid "Delete the picture"
|
292 |
+
msgstr "Ta bort bild"
|
293 |
+
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:427
|
295 |
+
msgid "Update the picture"
|
296 |
+
msgstr "Uppdatra bild"
|
297 |
+
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
299 |
+
msgid "Picture URL:"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:215
|
303 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:222
|
307 |
msgid "Password"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:242
|
|
|
311 |
msgid "First name"
|
312 |
+
msgstr "Förnamn"
|
313 |
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
|
|
|
315 |
msgid "Last name"
|
316 |
+
msgstr "Efternamn"
|
317 |
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:282
|
|
|
319 |
msgid "Nickname"
|
320 |
+
msgstr "Smeknamn"
|
321 |
|
322 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
325 |
msgid "Website"
|
326 |
+
msgstr "Webbsajt"
|
327 |
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:322
|
329 |
msgid "AIM"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:342
|
|
|
333 |
msgid "Yahoo IM"
|
334 |
+
msgstr "Yahoo IM"
|
335 |
|
336 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:362
|
|
|
337 |
msgid "Jabber / Google Talk"
|
338 |
+
msgstr "Jabber / Google Talk"
|
339 |
|
340 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:382
|
341 |
msgid "Biographical Info"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:674
|
345 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
msgid "Fields"
|
347 |
+
msgstr "Fält"
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
350 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
351 |
msgid "A&U Extended"
|
352 |
+
msgstr "F&A Utökat"
|
353 |
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:679
|
|
|
355 |
msgid "Users Extended"
|
356 |
+
msgstr "Extra fält för användare"
|
357 |
|
358 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:12
|
359 |
msgid "Add field"
|
360 |
+
msgstr "Lägg till fält"
|
361 |
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:13
|
363 |
msgid "Update field"
|
364 |
+
msgstr "Uppdatera fält"
|
365 |
|
366 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
367 |
msgid "Delete field"
|
376 |
msgstr "Ändra ordning"
|
377 |
|
378 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
380 |
msgid "Min length"
|
381 |
msgstr "Min. längd"
|
382 |
|
383 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1067
|
385 |
msgid "Exact length"
|
386 |
msgstr "Exakt längd"
|
387 |
|
388 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
389 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
390 |
msgid "Max length"
|
391 |
msgstr "Max. längd"
|
392 |
|
394 |
msgid "Exact or Max length"
|
395 |
msgstr "Exakt eller max. längd"
|
396 |
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
398 |
msgid "changed to"
|
399 |
+
msgstr "ändrad till"
|
400 |
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:124
|
402 |
msgid "You cannot give an order that misses some numbers"
|
403 |
+
msgstr "Du kan inte ange en ordningsföljd där vissa nummer saknas"
|
404 |
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:127
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:200
|
407 |
msgid "Nothing selected"
|
408 |
+
msgstr "Inget valt"
|
409 |
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
411 |
msgid "Field(s)"
|
412 |
+
msgstr "Fält"
|
413 |
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
415 |
msgid "deleted correctly"
|
416 |
+
msgstr "korrekt raderade"
|
417 |
|
418 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:229
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
420 |
msgid "Min size"
|
421 |
+
msgstr "Min. storlek"
|
422 |
|
423 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:230
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1059
|
425 |
msgid "Exact size"
|
426 |
+
msgstr "Exakt storlek"
|
427 |
|
428 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:231
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
|
430 |
msgid "Max size"
|
431 |
+
msgstr "Max. storlek"
|
432 |
|
433 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:233
|
434 |
msgid "Exact or Max size"
|
435 |
+
msgstr "Exakt eller Max. storlek"
|
436 |
|
437 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
438 |
msgid "Name not specified"
|
439 |
msgstr "Namn ej angivet"
|
440 |
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
442 |
msgid "Name cannot contains spaces"
|
443 |
+
msgstr "Namnet får inte ha mellanrum"
|
444 |
|
445 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
446 |
msgid "Label not specified"
|
447 |
+
msgstr "Etikett ej angiven"
|
448 |
|
449 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
450 |
msgid "not selected (with this type is necessary)"
|
451 |
msgstr "Ej vald (krävs vid denna typ)"
|
452 |
|
453 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
454 |
msgid "If you select"
|
455 |
+
msgstr "Om du väljer"
|
456 |
|
457 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
458 |
msgid "you cannot select Min or Max"
|
459 |
msgstr "Min eller Max kan ej väljas"
|
460 |
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
463 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
464 |
msgid "should be in the range of"
|
465 |
msgstr "skall vara mellan"
|
466 |
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
468 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:328
|
469 |
msgid "Equal TO not specified"
|
470 |
msgstr "Lika MED ej angivet"
|
471 |
|
472 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
|
473 |
msgid "With checkbox type Equal TO can only be"
|
474 |
+
msgstr "När typen är checkbox kan LIKA MED endast vara"
|
475 |
|
476 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:334
|
477 |
msgid "With radio type Equal TO can only be"
|
478 |
+
msgstr "När typen är radio kan LIKA MED endast vara"
|
479 |
|
480 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:350
|
481 |
msgid "With checkbox type Value can only be"
|
482 |
+
msgstr "När typen är checkbox kan värde endast vara"
|
483 |
|
484 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:353
|
485 |
msgid "With radio type Value can only be"
|
486 |
+
msgstr "När typen är radio kan värde endast vara"
|
487 |
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
|
489 |
msgid "Field inserted correctly"
|
490 |
+
msgstr "Fält upplagt korrekt"
|
491 |
|
492 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
493 |
msgid "Field #"
|
494 |
msgstr "Fält #"
|
495 |
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
497 |
msgid "updated correctly"
|
498 |
+
msgstr "korrekt uppdaterat"
|
499 |
|
500 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:415
|
501 |
msgid "Name inserted is just in the database, change to another one"
|
502 |
+
msgstr "Namnet du valt är redan i bruk, välj ett annat"
|
|
|
|
|
|
|
|
|
|
|
503 |
|
504 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
507 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:378
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:390
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
511 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
513 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
514 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
515 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
516 |
+
msgid "ERROR"
|
517 |
+
msgstr "FEL"
|
518 |
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
520 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
521 |
+
msgstr "För att lägga till ett nytt fält, måste du välja ett namn, en typ och en etikett; ej tvingande fält är värde och beskrivning. Vid registrering av användare måste detta regelverk följas."
|
522 |
|
523 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
|
524 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
525 |
msgstr "Med <strong>radio</strong> och <strong>checkbox</strong>: <em>Värde</em> och <em>LIKA MED</em> kan bara vara 'Yes' eller 'No', som betyder vald eller ej vald."
|
526 |
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
528 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
529 |
+
msgstr "<strong>drop-down</strong>: Du måste ange alla alternativ i etikett t.ex: Etikett/värde1,värde2,värde3"
|
530 |
|
531 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
|
532 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
533 |
msgstr "Med <strong>bild</strong>: Du kan använde en standard bild med (URL) under <em>Värde</em>; 'min, exakt, max störleken' angiven i KB;<em>LIKA MED</em> betyder max pixelstörlek (höjd eller bredd) för tumnagelbild."
|
534 |
|
535 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
536 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
537 |
+
msgstr "Med <strong>bild-url</strong>: Du kan anger en standardbild genom (URL) under <em>Värde</em>; <em>LIKA MED</em> betyder max pixelbred (höjden justeras proportioneligt)."
|
538 |
|
539 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
|
540 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
541 |
+
msgstr "Med <strong>registration-datum</strong>: <em>LIKA MED</em> betyder datum- och tidsformat."
|
542 |
|
543 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
|
|
544 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
545 |
+
msgstr "Med <strong>avatar</strong>: kan du använda en standardbild med (URL) under <em>Värde</em>; 'min, exakt, max storleken' angiven i KB;<em>LIKA MED</em> betyder max pixelstorlek (höjd eller bredd) för tumnagelbild."
|
546 |
+
|
547 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
548 |
+
#, fuzzy
|
549 |
+
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
550 |
msgstr "Med <strong>bild</strong>: Du kan använde en standard bild med (URL) under <em>Värde</em>; 'min, exakt, max störleken' angiven i KB;<em>LIKA MED</em> betyder max pixelstörlek (höjd eller bredd) för tumnagelbild."
|
551 |
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
555 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
556 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1477
|
558 |
msgid "Name"
|
559 |
msgstr "Namn"
|
560 |
|
561 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1094
|
565 |
msgid "Value"
|
566 |
msgstr "Värde"
|
567 |
|
568 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
|
569 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
572 |
msgid "Type"
|
573 |
msgstr "Typ"
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
576 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
577 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
579 |
msgid "Label"
|
580 |
+
msgstr "Etikett"
|
581 |
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
583 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
|
584 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
586 |
msgid "Description"
|
587 |
msgstr "Beskrivning"
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:851
|
591 |
msgid "Rules"
|
592 |
msgstr "Regler"
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:852
|
596 |
msgid "Actions"
|
597 |
+
msgstr "Åtgärder"
|
598 |
|
599 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1113
|
|
|
601 |
msgid "Fieldset"
|
602 |
+
msgstr "Fältsektion"
|
603 |
|
604 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:713
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1136
|
606 |
msgid "Can be empty"
|
607 |
msgstr "Kan vara töm"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1137
|
611 |
msgid "Check for E-mail syntax"
|
612 |
+
msgstr "Kontrollera epostadressen"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
616 |
msgid "Can be modified"
|
617 |
msgstr "Kan ändras"
|
618 |
|
619 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:718
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
621 |
msgid "Can be modified only if empty"
|
622 |
+
msgstr "Kan ändras endast om fältet är tomt"
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
626 |
msgid "Can be modified only by admin"
|
627 |
+
msgstr "Kan endast ändras av en administratör"
|
628 |
|
629 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
630 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
631 |
msgid "Can be modified only by admin or if empty"
|
632 |
+
msgstr "Kan ändras endast av en administratör eller om fältet är tomt"
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:721
|
635 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1144
|
636 |
msgid "Cannot be modified"
|
637 |
msgstr "Kan inte ändras"
|
638 |
|
639 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
640 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
641 |
msgid "Should be equal TO"
|
642 |
+
msgstr "Skall vara LIKA MED"
|
643 |
|
644 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
646 |
msgid "Case sensitive"
|
647 |
+
msgstr "Skiftlägeskänslig"
|
648 |
|
649 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:734
|
650 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
651 |
msgid "Regular Expression"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:737
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1157
|
656 |
msgid "Show the field in the registration"
|
657 |
msgstr "Visa fält vid registrering"
|
658 |
|
659 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:740
|
660 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1160
|
661 |
msgid "Show the field in User's profile"
|
662 |
msgstr "Visa fält i Användarprofil"
|
663 |
|
664 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
665 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1169
|
666 |
msgid "Show the field in A&U Extended menu"
|
667 |
+
msgstr "Visa fält i menyn F&A Utökat"
|
668 |
|
669 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:746
|
670 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1172
|
671 |
+
#, fuzzy
|
672 |
+
msgid "Show the field in the search engine"
|
673 |
+
msgstr "Visa fält vid registrering"
|
674 |
|
675 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
|
676 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1175
|
677 |
+
#, fuzzy
|
678 |
+
msgid "Show the field in the blog"
|
679 |
+
msgstr "Visa fält vid registrering"
|
680 |
|
681 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:752
|
682 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
683 |
+
#, fuzzy
|
684 |
+
msgid "Show the field if the role is at least:"
|
685 |
+
msgstr "Visa fält vid registrering"
|
|
|
686 |
|
687 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:754
|
688 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1180
|
689 |
+
msgid "Anonymous"
|
690 |
+
msgstr ""
|
691 |
|
692 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
|
693 |
+
msgid "Clear"
|
694 |
+
msgstr "Nollställ"
|
695 |
+
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:813
|
697 |
msgid "Invert selection"
|
698 |
msgstr "Omvänd markering"
|
699 |
|
700 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:814
|
|
|
|
|
701 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
702 |
+
msgstr "Är du säker på at du vill ta bort detta fält och all ev data som matats in?"
|
703 |
+
|
704 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
705 |
+
msgid "WordPress Fields"
|
706 |
+
msgstr "WordPress-fält"
|
707 |
|
708 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
|
709 |
+
msgid "None!"
|
710 |
+
msgstr "Ingen!"
|
711 |
+
|
712 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
713 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1079
|
714 |
msgid "Order"
|
715 |
+
msgstr "Ordningsföljd"
|
716 |
|
717 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1191
|
718 |
msgid "Reset"
|
719 |
+
msgstr "Nollställ"
|
720 |
+
|
721 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1248
|
722 |
+
#, fuzzy
|
723 |
+
msgid "select"
|
724 |
+
msgstr "Ta bort"
|
725 |
|
726 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1351
|
727 |
#, php-format
|
728 |
msgid "Users Matching \"%s\""
|
729 |
+
msgstr "Användare som Matchar \"%s\""
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1355
|
|
|
732 |
msgid "Users Extended List"
|
733 |
+
msgstr "Lista med extra fält för användaren"
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
|
736 |
msgid "Authors & Users Extended List"
|
737 |
+
msgstr "Lista över författare & användare (utökat)"
|
738 |
|
739 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
|
740 |
msgid "Search Users"
|
741 |
msgstr "Sök Användare"
|
742 |
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1435
|
744 |
msgid "« Back to All Users"
|
745 |
msgstr "« Tillbaka till Alla Användare"
|
746 |
|
747 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
|
|
748 |
msgid "Users per page"
|
749 |
+
msgstr "Användare per sida"
|
750 |
|
751 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1457
|
752 |
msgid "Apply"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
756 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1472
|
757 |
msgid "Username"
|
758 |
+
msgstr "Användarnamn"
|
759 |
|
760 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
761 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
762 |
msgid "E-mail"
|
763 |
msgstr "E-post"
|
764 |
|
765 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
766 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
|
767 |
msgid "Role"
|
768 |
msgstr "Roll"
|
769 |
|
770 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1496
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
|
772 |
msgid "Posts"
|
773 |
+
msgstr "Postningar"
|
774 |
|
775 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1604
|
776 |
msgid "View posts by this author"
|
777 |
+
msgstr "Visa postningar av dessa skribent"
|
778 |
|
779 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1635
|
780 |
#, php-format
|
781 |
msgid "e-mail: %s"
|
782 |
msgstr "e-post: %s"
|
783 |
|
784 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:327
|
785 |
+
msgid "no fieldset"
|
786 |
+
msgstr "Ingen fältsektion"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
787 |
|
788 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
789 |
+
#, php-format
|
790 |
+
msgid "File '%s' doesn't exist?"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
794 |
+
msgid "The GD image library is not installed."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
798 |
+
#, php-format
|
799 |
+
msgid "File '%s' is not an image."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:352
|
803 |
+
msgid "hasn’t a correct email syntax."
|
804 |
+
msgstr "epostadressen har ett felaktigt format"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
805 |
|
806 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:357
|
807 |
+
msgid "couldn’t be empty."
|
808 |
+
msgstr "måste anges."
|
809 |
|
810 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:377
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:386
|
812 |
+
msgid "isn’t correct"
|
813 |
+
msgstr "är ej korrekt"
|
814 |
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
816 |
+
msgid "YES"
|
817 |
+
msgstr "JA"
|
818 |
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:383
|
820 |
+
msgid "NO"
|
821 |
+
msgstr "NEJ"
|
822 |
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:388
|
824 |
+
msgid "should be"
|
825 |
+
msgstr "skall vara"
|
826 |
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:397
|
828 |
+
msgid "should be an image."
|
829 |
+
msgstr "borde vara en bild."
|
830 |
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:408
|
832 |
+
msgid "couldn’t have size less than"
|
833 |
+
msgstr "får inte vara mindre än"
|
834 |
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:414
|
836 |
+
msgid "couldn’t have length less than"
|
837 |
+
msgstr "får inte vara kortare än"
|
838 |
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:426
|
840 |
+
msgid "couldn’t have size different than"
|
841 |
+
msgstr "får inte ha en storlek skiljd från"
|
842 |
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
|
844 |
+
msgid "couldn’t have length different than"
|
845 |
+
msgstr "får inte ha en annan längd än"
|
846 |
|
847 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
848 |
+
msgid "couldn’t have size more than"
|
849 |
+
msgstr "får inte vara större än"
|
850 |
|
851 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
|
852 |
+
msgid "couldn’t have length more than"
|
853 |
+
msgstr "får inte vara längre än"
|
854 |
|
855 |
#~ msgid "Disable get_cimyFieldValue function"
|
856 |
#~ msgstr "Slå av funktionen get_cimyFieldValue"
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy
|
|
4 |
Website link: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar
|
6 |
Requires at least: 2.6
|
7 |
-
Tested up to: 2.
|
8 |
-
Stable tag: 1.
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
@@ -15,75 +15,84 @@ WordPress is becoming more than ever a tool to open blog/websites and CMSs in an
|
|
15 |
|
16 |
= Features =
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
19 |
|
20 |
= Two new menus are: =
|
21 |
|
22 |
-
WordPress:
|
23 |
-
|
24 |
-
|
25 |
|
26 |
-
Wordpress MU:
|
27 |
-
|
28 |
-
|
29 |
|
30 |
= Rules are: =
|
31 |
|
32 |
-
|
33 |
-
[only for text, textarea, textarea-rich, password, picture, picture-url, avatar]
|
34 |
|
35 |
-
|
36 |
-
[only for text, textarea, textarea-rich, password, picture, picture-url, dropdown, avatar]
|
37 |
|
38 |
-
|
39 |
[only for text, textarea, textarea-rich, password]
|
40 |
|
41 |
-
|
42 |
-
[only for text, textarea, textarea-rich, password, picture, picture-url, checkbox, radio, dropdown, avatar]
|
43 |
[for radio and checkbox 'edit_only_if_empty' has no effects and 'edit_only_by_admin_or_if_empty' has the same effect as edit_only_by_admin]
|
44 |
|
45 |
-
|
46 |
[all except avatar by default set to 512]
|
47 |
|
48 |
-
|
49 |
-
[only for text, textarea, textarea-rich, password, dropdown]
|
50 |
|
51 |
-
|
|
|
52 |
[all]
|
53 |
|
54 |
-
|
55 |
[all]
|
56 |
|
57 |
-
|
58 |
[all]
|
59 |
|
60 |
-
|
61 |
-
|
62 |
-
= As for now the plug-in supports: =
|
63 |
-
* text
|
64 |
-
* textarea
|
65 |
-
* textarea-rich
|
66 |
-
* password
|
67 |
-
* checkbox
|
68 |
-
* radio
|
69 |
-
* drop-down
|
70 |
-
* picture
|
71 |
-
* picture-url
|
72 |
-
* registration-date
|
73 |
-
* avatar
|
74 |
|
75 |
-
|
|
|
76 |
|
77 |
-
|
78 |
-
|
79 |
-
* first name
|
80 |
-
* last name
|
81 |
-
* nickname
|
82 |
-
* website
|
83 |
-
* Aim
|
84 |
-
* Yahoo IM
|
85 |
-
* Jabber/Google Talk
|
86 |
-
* biographical info
|
87 |
|
88 |
== Frequently Asked Questions ==
|
89 |
|
@@ -93,8 +102,23 @@ http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
|
93 |
|
94 |
== Installation ==
|
95 |
|
96 |
-
|
97 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
|
99 |
== Screenshots ==
|
100 |
|
4 |
Website link: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar
|
6 |
Requires at least: 2.6
|
7 |
+
Tested up to: 2.9
|
8 |
+
Stable tag: 1.5.0
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
15 |
|
16 |
= Features =
|
17 |
|
18 |
+
= As for now the plug-in supports: =
|
19 |
+
* text
|
20 |
+
* textarea
|
21 |
+
* textarea-rich
|
22 |
+
* password
|
23 |
+
* checkbox
|
24 |
+
* radio
|
25 |
+
* drop-down
|
26 |
+
* picture
|
27 |
+
* picture-url
|
28 |
+
* registration-date
|
29 |
+
* avatar
|
30 |
+
* file
|
31 |
+
|
32 |
+
future versions can have more.
|
33 |
+
|
34 |
+
= Following WordPress hidden fields can be enabled during registration: =
|
35 |
+
* password
|
36 |
+
* first name
|
37 |
+
* last name
|
38 |
+
* nickname
|
39 |
+
* website
|
40 |
+
* Aim
|
41 |
+
* Yahoo IM
|
42 |
+
* Jabber/Google Talk
|
43 |
+
* biographical info
|
44 |
+
|
45 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
46 |
|
47 |
= Two new menus are: =
|
48 |
|
49 |
+
WordPress and WordPress MU per-blog registration:
|
50 |
+
1. "Users -> A&U Extended" - lets you show users lists with the new fields that are created
|
51 |
+
2. "Settings -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
|
52 |
|
53 |
+
Wordpress MU unique registration:
|
54 |
+
1. "Site Admin -> Users Extended" - lets you show users lists with the new fields that are created
|
55 |
+
2. "Site Admin -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
|
56 |
|
57 |
= Rules are: =
|
58 |
|
59 |
+
* min/exact/max length admitted
|
60 |
+
[only for text, textarea, textarea-rich, password, picture, picture-url, avatar, file]
|
61 |
|
62 |
+
* field can be empty
|
63 |
+
[only for text, textarea, textarea-rich, password, picture, picture-url, dropdown, dropdown-multi, avatar, file]
|
64 |
|
65 |
+
* check for e-mail address syntax
|
66 |
[only for text, textarea, textarea-rich, password]
|
67 |
|
68 |
+
* field can be modified after the registration
|
69 |
+
[only for text, textarea, textarea-rich, password, picture, picture-url, checkbox, radio, dropdown, dropdown-multi, avatar, file]
|
70 |
[for radio and checkbox 'edit_only_if_empty' has no effects and 'edit_only_by_admin_or_if_empty' has the same effect as edit_only_by_admin]
|
71 |
|
72 |
+
* field equal to some value (for example accept terms and conditions)
|
73 |
[all except avatar by default set to 512]
|
74 |
|
75 |
+
* equal to can be or not case sensitive
|
76 |
+
[only for text, textarea, textarea-rich, password, dropdown, dropdown-multi]
|
77 |
|
78 |
+
= Visualization rules: =
|
79 |
+
* field can be hidden during registration
|
80 |
[all]
|
81 |
|
82 |
+
* field can be hidden in user's profile
|
83 |
[all]
|
84 |
|
85 |
+
* field can be hidden in A&U Extended page
|
86 |
[all]
|
87 |
|
88 |
+
* field can be hidden in Search Engine (only if you installed the template)
|
89 |
+
[all]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
|
91 |
+
* field can be hidden in Blog's public page (only if you installed the template)
|
92 |
+
[all]
|
93 |
|
94 |
+
* all visualization rules can be overridden if an user has certain rights (default=no override)
|
95 |
+
[all]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
|
97 |
== Frequently Asked Questions ==
|
98 |
|
102 |
|
103 |
== Installation ==
|
104 |
|
105 |
+
= WordPress: =
|
106 |
+
* just copy whole cimy-user-extra-fields subdir into your plug-in directory and activate it
|
107 |
+
|
108 |
+
= WordPress MU: =
|
109 |
+
* There are two supported ways of using this plug-in under WordPress MU:
|
110 |
+
|
111 |
+
1. Unique registration
|
112 |
+
If you want that ALL Blogs on your MU installation follow the same registration with the same fields this is the case for you.
|
113 |
+
Every blog will have shared registration page and only the site administrators (of the whole MU installation) can change it.
|
114 |
+
* unpack the package under 'mu-plugins' directory, be sure that cimy_user_extra_fields.php is outside Cimy folder (move it if necessary), then go to "Site Admin -> Cimy User Extra Fields", press "Fix the problem" button and confirm
|
115 |
+
|
116 |
+
2. Per-Blog registration
|
117 |
+
If you want that every single Blog can define its own Extra Fields then you should choose this installation.
|
118 |
+
Every registration will have Extra Fields defined by single blogs, every user will have anyway WordPress fields shared with ALL Blogs, this how it works
|
119 |
+
WordPress MU.
|
120 |
+
* unpack the package under 'plugins' directory; BE sure that cimy_uef_mu_activation.php is installed under 'mu-plugins' directory
|
121 |
+
* then every single blog will have it under "Plugins" section
|
122 |
|
123 |
== Screenshots ==
|
124 |
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-2.png
CHANGED
Binary file
|
screenshot-3.png
CHANGED
Binary file
|
screenshot-4.png
CHANGED
Binary file
|