Version Description
Download this release
Release Info
Developer | Cimmo |
Plugin | Cimy User Extra Fields |
Version | 1.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.5.0 to 1.5.1
- README_OFFICIAL.txt +5 -0
- cimy_uef_profile.php +10 -2
- cimy_user_extra_fields.php +2 -2
- langs/cimy_uef-pl_PL.mo +0 -0
- langs/cimy_uef-pl_PL.po +856 -0
- readme.txt +10 -11
README_OFFICIAL.txt
CHANGED
@@ -502,6 +502,11 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
|
|
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)
|
502 |
|
503 |
|
504 |
CHANGELOG:
|
505 |
+
v1.5.1 - 10/02/2010
|
506 |
+
- Fixed PHP error when using dirty user_id in the profile's URL
|
507 |
+
- Worked around a bug introduced by WordPress 2.9.x when admin is editing another's user profile sometimes get wrong data into Extra Fields (thanks to Serge Meier)
|
508 |
+
- Added Polish translation (PiK)
|
509 |
+
|
510 |
v1.5.0 - 30/01/2010
|
511 |
- Added registration fields pre-filed within URL support (thanks to Charlie Markwick for sponsoring)
|
512 |
- Fixed WordPress MU unique registration mode was completely broken (introduced with v1.5.0 beta2) (thanks to Nicolene Heunis)
|
cimy_uef_profile.php
CHANGED
@@ -2,11 +2,17 @@
|
|
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'])) {
|
8 |
$get_user_id = $_GET['user_id'];
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
if (!current_user_can('edit_user', $get_user_id))
|
11 |
return;
|
12 |
}
|
@@ -18,6 +24,7 @@ function cimy_extract_ExtraFields() {
|
|
18 |
$get_user_id = $user_ID;
|
19 |
}
|
20 |
|
|
|
21 |
$options = cimy_get_options();
|
22 |
|
23 |
$extra_fields = get_cimyFields(false, true);
|
@@ -497,6 +504,7 @@ function cimy_update_ExtraFields() {
|
|
497 |
else
|
498 |
return;
|
499 |
|
|
|
500 |
$extra_fields = get_cimyFields(false, true);
|
501 |
|
502 |
$query = "UPDATE ".$wpdb_data_table." SET VALUE=CASE FIELD_ID";
|
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'])) {
|
8 |
$get_user_id = $_GET['user_id'];
|
9 |
+
|
10 |
+
if (!current_user_can('edit_user', $get_user_id))
|
11 |
+
return;
|
12 |
+
}
|
13 |
+
else if (isset($_POST['user_id'])) {
|
14 |
+
$get_user_id = $_POST['user_id'];
|
15 |
+
|
16 |
if (!current_user_can('edit_user', $get_user_id))
|
17 |
return;
|
18 |
}
|
24 |
$get_user_id = $user_ID;
|
25 |
}
|
26 |
|
27 |
+
$get_user_id = intval($get_user_id);
|
28 |
$options = cimy_get_options();
|
29 |
|
30 |
$extra_fields = get_cimyFields(false, true);
|
504 |
else
|
505 |
return;
|
506 |
|
507 |
+
$get_user_id = intval($get_user_id);
|
508 |
$extra_fields = get_cimyFields(false, true);
|
509 |
|
510 |
$query = "UPDATE ".$wpdb_data_table." SET VALUE=CASE FIELD_ID";
|
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.5.
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
*/
|
@@ -192,7 +192,7 @@ require_once($cuef_plugin_dir.'/cimy_uef_options.php');
|
|
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.
|
196 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
197 |
|
198 |
$start_cimy_uef_comment = "<!--\n";
|
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.1
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
*/
|
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.1";
|
196 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
197 |
|
198 |
$start_cimy_uef_comment = "<!--\n";
|
langs/cimy_uef-pl_PL.mo
ADDED
Binary file
|
langs/cimy_uef-pl_PL.po
ADDED
@@ -0,0 +1,856 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-02-11 00:19+0300\n"
|
6 |
+
"PO-Revision-Date: 2010-02-11 00:20+0300\n"
|
7 |
+
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
+
"Language-Team: <pik256@gmail.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
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: Polish\n"
|
14 |
+
"X-Poedit-Country: POLAND\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 "Pola wordpressa zostały wyczyszczone"
|
22 |
+
|
23 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:39
|
24 |
+
msgid "WordPress Fields table deleted"
|
25 |
+
msgstr "Tabele wordpressa zostały usunięte"
|
26 |
+
|
27 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
28 |
+
msgid "Extra Fields table emptied"
|
29 |
+
msgstr "Pola dodatkowe zostały wyczyszczone"
|
30 |
+
|
31 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:53
|
32 |
+
msgid "Extra Fields table deleted"
|
33 |
+
msgstr "Dodatkowe tabele zostały usunięte"
|
34 |
+
|
35 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
36 |
+
msgid "Users Data table emptied"
|
37 |
+
msgstr "Dane użytkowników zostały wyczyszczone"
|
38 |
+
|
39 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:67
|
40 |
+
msgid "Users Data table deleted"
|
41 |
+
msgstr "Tabela użytkowników została usunięta"
|
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 "Opcje zostały zmienione na domyślne"
|
46 |
+
|
47 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
|
48 |
+
msgid "Options deleted"
|
49 |
+
msgstr "Opcje zostały wykasowane"
|
50 |
+
|
51 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:304
|
52 |
+
msgid "Options changed"
|
53 |
+
msgstr "Opcje zostały zmienione"
|
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 "Ta operacja stworzy/zaktualizuje wszystkie brakujące tabele/opcje, kontynuować?"
|
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 "Opcje"
|
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 "Dodaj nowe pole"
|
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 "Pola dodatkowe"
|
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 "PRAWIDŁOWO"
|
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 "Zapisz zmiany"
|
86 |
+
|
87 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:435
|
88 |
+
msgid "General"
|
89 |
+
msgstr "Ogólne"
|
90 |
+
|
91 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:443
|
92 |
+
msgid "installed is"
|
93 |
+
msgstr "jest zainstalowany"
|
94 |
+
|
95 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:447
|
96 |
+
msgid "OPTIONS DELETED!"
|
97 |
+
msgstr "OPCJE USUNIĘTE!"
|
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 "Usuń problem"
|
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 "Wersja niekompatybilna! Nie deaktywowałeś a następnie nie reaktywowałeś wtyczki po aktualizacji wordpressa! To może spowodować problemy..."
|
107 |
+
|
108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
|
109 |
+
msgid "Picture/Avatar upload"
|
110 |
+
msgstr "Wgrywanie obrazka/avatara"
|
111 |
+
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:465
|
113 |
+
msgid "is created and writable"
|
114 |
+
msgstr "jest utworzony i zapisywalny"
|
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 "NIE był wgrywany lub serwer nie ma możliwości zapisywania do niego"
|
119 |
+
|
120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:473
|
121 |
+
msgid "Database"
|
122 |
+
msgstr "Baza danych"
|
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 "wybór czynności"
|
130 |
+
|
131 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
132 |
+
msgid "Default values"
|
133 |
+
msgstr "Wartości domyślne"
|
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 "Usuń"
|
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 "NIE OBECNA"
|
148 |
+
|
149 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:493
|
150 |
+
msgid "WordPress Fields table"
|
151 |
+
msgstr "Tabela pól Wordpressa"
|
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 "Opróżnij"
|
158 |
+
|
159 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:513
|
160 |
+
msgid "Extra Fields table"
|
161 |
+
msgstr "Tabela pól dodatkowych"
|
162 |
+
|
163 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
|
164 |
+
msgid "Users Data table"
|
165 |
+
msgstr "Tabela danych użytkowników"
|
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 "wszystkie dane wstawione przez użytkowników do pól dodatkowych"
|
170 |
+
|
171 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
|
172 |
+
msgid "Force tables creation"
|
173 |
+
msgstr "Wymuś utworzenie tabel"
|
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 "równoważne deaktywacji i ponownej reaktywacji wtyczki; żadne inne operacje nie zostaną wykonane"
|
178 |
+
|
179 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
180 |
+
msgid "User Profile"
|
181 |
+
msgstr "Profil użytkownika"
|
182 |
+
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:560
|
184 |
+
msgid "Extra Fields section title"
|
185 |
+
msgstr "Tytuł sekcji pól dodatkowych"
|
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 "Tytuły grup pól, rozdziel przecinkami"
|
190 |
+
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
192 |
+
msgid "example: title1,title2,title3"
|
193 |
+
msgstr "Przykład: tytuł1, tytuł2, tytuł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>uwaga:</strong> jeśli zmienisz kolejność lub usuniesz grupy pól powinieneś ustawić przypisanie wszystkich pól dodatkowych do grup pól ponownie"
|
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 "Rozszerzenia kont"
|
204 |
+
|
205 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
206 |
+
msgid "Hide username field"
|
207 |
+
msgstr "Ukryj pole z nazwą użytkownika"
|
208 |
+
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
210 |
+
msgid "Hide name field"
|
211 |
+
msgstr "Ukryj nazwę"
|
212 |
+
|
213 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:585
|
214 |
+
msgid "Hide email field"
|
215 |
+
msgstr "Ukryj adres email"
|
216 |
+
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
218 |
+
msgid "Hide role field"
|
219 |
+
msgstr "Ukryj rolę"
|
220 |
+
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
222 |
+
msgid "Hide website field"
|
223 |
+
msgstr "Ukryj pole witryna"
|
224 |
+
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
|
226 |
+
msgid "Hide n. posts field"
|
227 |
+
msgstr "Ukryj liczbę wpisów"
|
228 |
+
|
229 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:602
|
230 |
+
msgid "WordPress hidden fields"
|
231 |
+
msgstr "Ukryte pola Worpdressa"
|
232 |
+
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
|
234 |
+
msgid "Show password"
|
235 |
+
msgstr "Pokaż hasło"
|
236 |
+
|
237 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
238 |
+
msgid "Show first name"
|
239 |
+
msgstr "Pokaż imię"
|
240 |
+
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
242 |
+
msgid "Show last name"
|
243 |
+
msgstr "Pokaż nazwisko"
|
244 |
+
|
245 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
246 |
+
msgid "Show nickname"
|
247 |
+
msgstr "Pokaż pseudonim"
|
248 |
+
|
249 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
250 |
+
msgid "Show website"
|
251 |
+
msgstr "pokaż witrynę"
|
252 |
+
|
253 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
254 |
+
msgid "Show AIM"
|
255 |
+
msgstr "Pokaż \"AIM\""
|
256 |
+
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
|
258 |
+
msgid "Show Yahoo IM"
|
259 |
+
msgstr "Pokaż \"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 "Pokaż \"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 "Pokaż informacje dodatkowe"
|
268 |
+
|
269 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
|
270 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:747
|
271 |
+
msgid "Please upload a file with one of the following extensions"
|
272 |
+
msgstr "Wgraj plik w jednym z następujących formatów"
|
273 |
+
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
|
275 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:753
|
276 |
+
msgid "Please upload an image with one of the following extensions"
|
277 |
+
msgstr "Wgraj obrazek w jednym z następujących formatów"
|
278 |
+
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
|
280 |
+
msgid "Delete the file"
|
281 |
+
msgstr "Usuń plik"
|
282 |
+
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
|
284 |
+
msgid "Update the file"
|
285 |
+
msgstr "Zaktualizuj plik"
|
286 |
+
|
287 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
|
288 |
+
msgid "Delete the picture"
|
289 |
+
msgstr "Usuń obrazek"
|
290 |
+
|
291 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
|
292 |
+
msgid "Update the picture"
|
293 |
+
msgstr "Wgraj obrazek"
|
294 |
+
|
295 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
|
296 |
+
msgid "Picture URL:"
|
297 |
+
msgstr "URL obrazka:"
|
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>Uwaga:</strong> ta witryna umożliwi ci ustawienie własnego hasła. Po rejestracji otrzymasz email z innym hasłem, zignoruj to pole."
|
302 |
+
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:222
|
304 |
+
msgid "Password"
|
305 |
+
msgstr "Hasło"
|
306 |
+
|
307 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:242
|
308 |
+
msgid "First name"
|
309 |
+
msgstr "Imię"
|
310 |
+
|
311 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
|
312 |
+
msgid "Last name"
|
313 |
+
msgstr "Nazwisko"
|
314 |
+
|
315 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:282
|
316 |
+
msgid "Nickname"
|
317 |
+
msgstr "Pseudonim"
|
318 |
+
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:302
|
320 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1485
|
321 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1486
|
322 |
+
msgid "Website"
|
323 |
+
msgstr "Strona internetowa"
|
324 |
+
|
325 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:322
|
326 |
+
msgid "AIM"
|
327 |
+
msgstr "AIM"
|
328 |
+
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:342
|
330 |
+
msgid "Yahoo IM"
|
331 |
+
msgstr "Yahoo IM"
|
332 |
+
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:362
|
334 |
+
msgid "Jabber / Google Talk"
|
335 |
+
msgstr "Jabber / Google Talk"
|
336 |
+
|
337 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:382
|
338 |
+
msgid "Biographical Info"
|
339 |
+
msgstr "Biografia"
|
340 |
+
|
341 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:674
|
342 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
343 |
+
msgid "Fields"
|
344 |
+
msgstr "Pola"
|
345 |
+
|
346 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:675
|
347 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:684
|
348 |
+
msgid "A&U Extended"
|
349 |
+
msgstr "Rozszerzenia"
|
350 |
+
|
351 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:679
|
352 |
+
msgid "Users Extended"
|
353 |
+
msgstr "Lista rozszerzona"
|
354 |
+
|
355 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:12
|
356 |
+
msgid "Add field"
|
357 |
+
msgstr "Dodaj pole"
|
358 |
+
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:13
|
360 |
+
msgid "Update field"
|
361 |
+
msgstr "Zaktualizuj pole"
|
362 |
+
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
364 |
+
msgid "Delete field"
|
365 |
+
msgstr "Usuń pole"
|
366 |
+
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:15
|
368 |
+
msgid "Delete selected fields"
|
369 |
+
msgstr "Usuń wybrane pola"
|
370 |
+
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:16
|
372 |
+
msgid "Change order"
|
373 |
+
msgstr "Zmień kolejność"
|
374 |
+
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:25
|
376 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1066
|
377 |
+
msgid "Min length"
|
378 |
+
msgstr "Długość min"
|
379 |
+
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:26
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1067
|
382 |
+
msgid "Exact length"
|
383 |
+
msgstr "Długość dokładna"
|
384 |
+
|
385 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
386 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
|
387 |
+
msgid "Max length"
|
388 |
+
msgstr "Długość max"
|
389 |
+
|
390 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
391 |
+
msgid "Exact or Max length"
|
392 |
+
msgstr "Dokładna lub maksymalna długość"
|
393 |
+
|
394 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:121
|
395 |
+
msgid "changed to"
|
396 |
+
msgstr "zmieniona na"
|
397 |
+
|
398 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:124
|
399 |
+
msgid "You cannot give an order that misses some numbers"
|
400 |
+
msgstr "Nie możesz podać kolejności która pomija część liczb"
|
401 |
+
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:127
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:200
|
404 |
+
msgid "Nothing selected"
|
405 |
+
msgstr "Nie wybrano niczego"
|
406 |
+
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
408 |
+
msgid "Field(s)"
|
409 |
+
msgstr "Pole(a)"
|
410 |
+
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
|
412 |
+
msgid "deleted correctly"
|
413 |
+
msgstr "wykasowano prawidłowo"
|
414 |
+
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:229
|
416 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1058
|
417 |
+
msgid "Min size"
|
418 |
+
msgstr "Rozmiar min"
|
419 |
+
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:230
|
421 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1059
|
422 |
+
msgid "Exact size"
|
423 |
+
msgstr "Rozmiar dokładny"
|
424 |
+
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:231
|
426 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
|
427 |
+
msgid "Max size"
|
428 |
+
msgstr "Rozmiar max"
|
429 |
+
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:233
|
431 |
+
msgid "Exact or Max size"
|
432 |
+
msgstr "Rozmiar dokładny lub max"
|
433 |
+
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:285
|
435 |
+
msgid "Name not specified"
|
436 |
+
msgstr "Nazwa nie określona"
|
437 |
+
|
438 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
|
439 |
+
msgid "Name cannot contains spaces"
|
440 |
+
msgstr "Nazwa nie może zawierać spacji"
|
441 |
+
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
|
443 |
+
msgid "Label not specified"
|
444 |
+
msgstr "Etykieta nie określona"
|
445 |
+
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
447 |
+
msgid "not selected (with this type is necessary)"
|
448 |
+
msgstr "nie wybrano (niezbędne dla tego typu)"
|
449 |
+
|
450 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
451 |
+
msgid "If you select"
|
452 |
+
msgstr "Jeżeli wybierzesz"
|
453 |
+
|
454 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:301
|
455 |
+
msgid "you cannot select Min or Max"
|
456 |
+
msgstr "Nie możesz wybrać Min lub Max"
|
457 |
+
|
458 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:306
|
459 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
461 |
+
msgid "should be in the range of"
|
462 |
+
msgstr "powinien się mieścić w zakresie"
|
463 |
+
|
464 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
465 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:328
|
466 |
+
msgid "Equal TO not specified"
|
467 |
+
msgstr "równość (=) nie określona"
|
468 |
+
|
469 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
|
470 |
+
msgid "With checkbox type Equal TO can only be"
|
471 |
+
msgstr "Dla <strong>checkbox</strong> może być tylko równość"
|
472 |
+
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:334
|
474 |
+
msgid "With radio type Equal TO can only be"
|
475 |
+
msgstr "Dla <strong>radio</strong> może być tylko równość"
|
476 |
+
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:350
|
478 |
+
msgid "With checkbox type Value can only be"
|
479 |
+
msgstr "Dla <strong>checkbox</strong> wartość może być tylko"
|
480 |
+
|
481 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:353
|
482 |
+
msgid "With radio type Value can only be"
|
483 |
+
msgstr "Dla <strong>radio</strong> wartość może być tylko"
|
484 |
+
|
485 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
|
486 |
+
msgid "Field inserted correctly"
|
487 |
+
msgstr "Pole wstawione poprawnie"
|
488 |
+
|
489 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
490 |
+
msgid "Field #"
|
491 |
+
msgstr "Pole #"
|
492 |
+
|
493 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
|
494 |
+
msgid "updated correctly"
|
495 |
+
msgstr "zaktualizowane prawidłowo"
|
496 |
+
|
497 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:415
|
498 |
+
msgid "Name inserted is just in the database, change to another one"
|
499 |
+
msgstr "Podana nazwa już jest w bazie danych, zmień na inną"
|
500 |
+
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:438
|
502 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:354
|
503 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:359
|
504 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:380
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:392
|
506 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:399
|
507 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:410
|
508 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:416
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:428
|
510 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:434
|
511 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:446
|
512 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
513 |
+
msgid "ERROR"
|
514 |
+
msgstr "BŁĄD"
|
515 |
+
|
516 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
517 |
+
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."
|
518 |
+
msgstr "Aby dodać nowe pole musisz nadać mu nazwę, typ i etykietę; wartość i opis są opcjonalne. Reguły są stosowane podczas rejestracji użytkownika."
|
519 |
+
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
|
521 |
+
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'"
|
522 |
+
msgstr "Dla <strong>radio</strong> i <strong>checkbox</strong>: <em>wartość</em> i <em>równe</em> mogą być tylko \"Yes\" lub \"No\", co oznacza zaznaczone lub nie zaznaczone."
|
523 |
+
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
525 |
+
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
526 |
+
msgstr "Dla <strong>listy (drop-down)</strong>: musisz podać wszystkie opcje w etykiecie. Np.: etykieta/wartość1,wartość2,wartość3. "
|
527 |
+
|
528 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
|
529 |
+
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"
|
530 |
+
msgstr "Dla <strong>obrazka (picture)</strong>: należy uprzednio wgrać obrazek i podać jego Url w polu <em>wartość</em>; rozmiary min, dokładny, max są w KB; <em>równość</em> oznacza maksymalny rozmiar miniaturki (wysokość i szerokość) i będzie ustawiona automatycznie na 512 pikseli."
|
531 |
+
|
532 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
|
533 |
+
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)"
|
534 |
+
msgstr "Dla <strong>url obrazka</strong>: można wgrać domyślny obrazek i wstawić jego adres (Url) do pola <em>wartość</em>; <em>równe</em> oznacza maksymalną szerokość w pikselach (wysokość zostanie ustawiona proporcjonalnie)."
|
535 |
+
|
536 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
|
537 |
+
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
538 |
+
msgstr "Dla <strong>daty rejestracji</strong>: <em>równe</em> oznacza datę i czas rejestracji."
|
539 |
+
|
540 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:659
|
541 |
+
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"
|
542 |
+
msgstr "Dla <strong>avatara</strong>: możesz wgrać domyślny obrazek wstawiając URL do <em>wartość</em>; \"min, dokładny i max rozmiar\" są w KB; <em>równe</em> oznacza maksymalny rozmiar w pikselach (wysokość i szerokość) dla miniaturki i będzie ustawiony automatycznie na 512 pikseli."
|
543 |
+
|
544 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
|
545 |
+
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"
|
546 |
+
msgstr "Dla <strong>Pliku</strong>: możesz wgrać plik domyślny podająć URL w polu <em>Wartość</em>; 'min,dokładny,max rozmiar' podane są w KB; w polu <em>równe</em> można podać dopuszczalne rozszerzenia, np.: zip,pdf,doc"
|
547 |
+
|
548 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
549 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
550 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
551 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
552 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1470
|
553 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1471
|
554 |
+
msgid "Name"
|
555 |
+
msgstr "Nazwa"
|
556 |
+
|
557 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
559 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
560 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1094
|
561 |
+
msgid "Value"
|
562 |
+
msgstr "Wartość"
|
563 |
+
|
564 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
|
565 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
|
567 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
568 |
+
msgid "Type"
|
569 |
+
msgstr "Typ"
|
570 |
+
|
571 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
572 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
573 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
575 |
+
msgid "Label"
|
576 |
+
msgstr "Etykieta"
|
577 |
+
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:669
|
579 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
|
580 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:850
|
581 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
582 |
+
msgid "Description"
|
583 |
+
msgstr "Opis"
|
584 |
+
|
585 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:851
|
587 |
+
msgid "Rules"
|
588 |
+
msgstr "Reguły"
|
589 |
+
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:671
|
591 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:852
|
592 |
+
msgid "Actions"
|
593 |
+
msgstr "Działania"
|
594 |
+
|
595 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
|
596 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1113
|
597 |
+
msgid "Fieldset"
|
598 |
+
msgstr "Grupa pól"
|
599 |
+
|
600 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:713
|
601 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1136
|
602 |
+
msgid "Can be empty"
|
603 |
+
msgstr "Może być puste"
|
604 |
+
|
605 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
606 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1137
|
607 |
+
msgid "Check for E-mail syntax"
|
608 |
+
msgstr "Sprawdzaj poprawność adresu email"
|
609 |
+
|
610 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
|
611 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
|
612 |
+
msgid "Can be modified"
|
613 |
+
msgstr "Może być zmieniane"
|
614 |
+
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:718
|
616 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
|
617 |
+
msgid "Can be modified only if empty"
|
618 |
+
msgstr "Może być zmienione tylko jeśli jest puste"
|
619 |
+
|
620 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
|
621 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1142
|
622 |
+
msgid "Can be modified only by admin"
|
623 |
+
msgstr "Może być modyfikowane tylko przez administratora"
|
624 |
+
|
625 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:720
|
626 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
|
627 |
+
msgid "Can be modified only by admin or if empty"
|
628 |
+
msgstr "Może być modyfikowane tylko przez administratora jeśli jest puste"
|
629 |
+
|
630 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:721
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1144
|
632 |
+
msgid "Cannot be modified"
|
633 |
+
msgstr "Nie może być zmieniane"
|
634 |
+
|
635 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
636 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
|
637 |
+
msgid "Should be equal TO"
|
638 |
+
msgstr "Powinno być równe"
|
639 |
+
|
640 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
|
641 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1151
|
642 |
+
msgid "Case sensitive"
|
643 |
+
msgstr "Rozróżnia wielkość liter"
|
644 |
+
|
645 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:734
|
646 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
647 |
+
msgid "Regular Expression"
|
648 |
+
msgstr "Wyrażenie regularne"
|
649 |
+
|
650 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:737
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1157
|
652 |
+
msgid "Show the field in the registration"
|
653 |
+
msgstr "Pokaż pole podczas rejestracji"
|
654 |
+
|
655 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:740
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1160
|
657 |
+
msgid "Show the field in User's profile"
|
658 |
+
msgstr "Pokaż pole w profilu użytkownika"
|
659 |
+
|
660 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1169
|
662 |
+
msgid "Show the field in A&U Extended menu"
|
663 |
+
msgstr "Pokaż pole na rozszerzonej liście użytkowników"
|
664 |
+
|
665 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:746
|
666 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1172
|
667 |
+
msgid "Show the field in the search engine"
|
668 |
+
msgstr "Pokaż pole w profilu użytkownika"
|
669 |
+
|
670 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
|
671 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1175
|
672 |
+
msgid "Show the field in the blog"
|
673 |
+
msgstr "Pokaż pole na blogu"
|
674 |
+
|
675 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:752
|
676 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
677 |
+
msgid "Show the field if the role is at least:"
|
678 |
+
msgstr "Pokaż pole jeżeli rolą użytkownika jest przynajmniej:"
|
679 |
+
|
680 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:754
|
681 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1180
|
682 |
+
msgid "Anonymous"
|
683 |
+
msgstr "Anonim"
|
684 |
+
|
685 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
|
686 |
+
msgid "Clear"
|
687 |
+
msgstr "Wyczyść"
|
688 |
+
|
689 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:813
|
690 |
+
msgid "Invert selection"
|
691 |
+
msgstr "Odwróć wybór"
|
692 |
+
|
693 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:814
|
694 |
+
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
695 |
+
msgstr "Czy na pewno chcesz wykasować pola i wszystkie dane wprowadzone w nie przez użytkowników"
|
696 |
+
|
697 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:820
|
698 |
+
msgid "WordPress Fields"
|
699 |
+
msgstr "Pola Wordpressa"
|
700 |
+
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
|
702 |
+
msgid "None!"
|
703 |
+
msgstr "Brak!"
|
704 |
+
|
705 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
|
706 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1079
|
707 |
+
msgid "Order"
|
708 |
+
msgstr "Kolejność"
|
709 |
+
|
710 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1191
|
711 |
+
msgid "Reset"
|
712 |
+
msgstr "Wyczyść"
|
713 |
+
|
714 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
|
715 |
+
msgid "select"
|
716 |
+
msgstr "- Wybierz -"
|
717 |
+
|
718 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1345
|
719 |
+
#, php-format
|
720 |
+
msgid "Users Matching \"%s\""
|
721 |
+
msgstr "Użytkownicy pasujący do wzorca \"%s\""
|
722 |
+
|
723 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1349
|
724 |
+
msgid "Users Extended List"
|
725 |
+
msgstr "Rozszerzona lista użytkowników"
|
726 |
+
|
727 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1351
|
728 |
+
msgid "Authors & Users Extended List"
|
729 |
+
msgstr "Rozszerzona lista użytkowników i autorów"
|
730 |
+
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1403
|
732 |
+
msgid "Search Users"
|
733 |
+
msgstr "Szukaj użytkowników"
|
734 |
+
|
735 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1429
|
736 |
+
msgid "« Back to All Users"
|
737 |
+
msgstr "« Powrót do wszystkich"
|
738 |
+
|
739 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1436
|
740 |
+
msgid "Users per page"
|
741 |
+
msgstr "Użytkowników na stronie"
|
742 |
+
|
743 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1451
|
744 |
+
msgid "Apply"
|
745 |
+
msgstr "Zastosuj"
|
746 |
+
|
747 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1465
|
748 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1466
|
749 |
+
msgid "Username"
|
750 |
+
msgstr "Nazwa użytkownika"
|
751 |
+
|
752 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1475
|
753 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
|
754 |
+
msgid "E-mail"
|
755 |
+
msgstr "E-mail"
|
756 |
+
|
757 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1480
|
758 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
|
759 |
+
msgid "Role"
|
760 |
+
msgstr "Rola"
|
761 |
+
|
762 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
|
763 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
|
764 |
+
msgid "Posts"
|
765 |
+
msgstr "Wpisy"
|
766 |
+
|
767 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1598
|
768 |
+
msgid "View posts by this author"
|
769 |
+
msgstr "Zobacz wpisy tego autora"
|
770 |
+
|
771 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1629
|
772 |
+
#, php-format
|
773 |
+
msgid "e-mail: %s"
|
774 |
+
msgstr "e-mail: %s"
|
775 |
+
|
776 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:327
|
777 |
+
msgid "no fieldset"
|
778 |
+
msgstr "brak grup pól"
|
779 |
+
|
780 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
781 |
+
#, php-format
|
782 |
+
msgid "File '%s' doesn't exist?"
|
783 |
+
msgstr "Plik '%s' nie istnieje?"
|
784 |
+
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
786 |
+
msgid "The GD image library is not installed."
|
787 |
+
msgstr "Biblioteka GD nie jest zainstalowana."
|
788 |
+
|
789 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
790 |
+
#, php-format
|
791 |
+
msgid "File '%s' is not an image."
|
792 |
+
msgstr "Plik '%s' musi być obrazkiem"
|
793 |
+
|
794 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:354
|
795 |
+
msgid "hasn’t a correct email syntax."
|
796 |
+
msgstr "nie jest prawidłowym adresem email."
|
797 |
+
|
798 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:359
|
799 |
+
msgid "couldn’t be empty."
|
800 |
+
msgstr "nie może być pusty"
|
801 |
+
|
802 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:379
|
803 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:388
|
804 |
+
msgid "isn’t correct"
|
805 |
+
msgstr "jest nieprawidłowy"
|
806 |
+
|
807 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:385
|
808 |
+
msgid "YES"
|
809 |
+
msgstr "TAK"
|
810 |
+
|
811 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:385
|
812 |
+
msgid "NO"
|
813 |
+
msgstr "NIE"
|
814 |
+
|
815 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:390
|
816 |
+
msgid "should be"
|
817 |
+
msgstr "powinien być"
|
818 |
+
|
819 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:399
|
820 |
+
msgid "should be an image."
|
821 |
+
msgstr "powinien być obrazkiem."
|
822 |
+
|
823 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:410
|
824 |
+
msgid "couldn’t have size less than"
|
825 |
+
msgstr "nie może być mniejszy niż"
|
826 |
+
|
827 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:416
|
828 |
+
msgid "couldn’t have length less than"
|
829 |
+
msgstr "nie może być krótszy niż"
|
830 |
+
|
831 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:428
|
832 |
+
msgid "couldn’t have size different than"
|
833 |
+
msgstr "musi mieć rozmiar"
|
834 |
+
|
835 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:434
|
836 |
+
msgid "couldn’t have length different than"
|
837 |
+
msgstr "musi mieć długość"
|
838 |
+
|
839 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:446
|
840 |
+
msgid "couldn’t have size more than"
|
841 |
+
msgstr "nie może być większy niż"
|
842 |
+
|
843 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
|
844 |
+
msgid "couldn’t have length more than"
|
845 |
+
msgstr "nie może być dłuższy niż"
|
846 |
+
|
847 |
+
#, fuzzy
|
848 |
+
#~ msgid ""
|
849 |
+
#~ "<strong>Note:</strong> this website let you personalize your password; "
|
850 |
+
#~ "after activating the user/blog will be displayed another password, do not "
|
851 |
+
#~ "care about that!"
|
852 |
+
#~ msgstr ""
|
853 |
+
#~ "<strong>Anm.:</strong> Diese Webseite lässt Sie Ihr Passwort frei wählen. "
|
854 |
+
#~ "Nach der Registrierung erhalten Sie eine E-Mail mit einem anderen "
|
855 |
+
#~ "Passwort. Bitte löschen Sie diese ungesehen."
|
856 |
+
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Website link: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra
|
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar
|
6 |
Requires at least: 2.6
|
7 |
Tested up to: 2.9
|
8 |
-
Stable tag: 1.5.
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
@@ -98,25 +98,24 @@ Wordpress MU unique registration:
|
|
98 |
|
99 |
= I have a lot of questions and I want support where can I go? =
|
100 |
|
101 |
-
http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
102 |
|
103 |
== Installation ==
|
104 |
|
105 |
= WordPress: =
|
106 |
-
|
107 |
|
108 |
= WordPress MU: =
|
109 |
-
|
110 |
|
111 |
-
|
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 |
-
|
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 |
|
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.1
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
98 |
|
99 |
= I have a lot of questions and I want support where can I go? =
|
100 |
|
101 |
+
http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/faq-and-comments/
|
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 WordPress MU.
|
|
|
119 |
* unpack the package under 'plugins' directory; BE sure that cimy_uef_mu_activation.php is installed under 'mu-plugins' directory
|
120 |
* then every single blog will have it under "Plugins" section
|
121 |
|