Cimy User Extra Fields - Version 2.6.4

Version Description

Download this release

Release Info

Developer Cimmo
Plugin Icon wp plugin Cimy User Extra Fields
Version 2.6.4
Comparing to
See all releases

Code changes from version 2.6.3 to 2.6.4

README_OFFICIAL.txt CHANGED
@@ -631,6 +631,13 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
631
 
632
 
633
  CHANGELOG:
 
 
 
 
 
 
 
634
  v2.6.3 - 03/10/2014
635
  - Fixed the upload of files when 'Form confirmation' is enabled (thanks to Max)
636
  - Fixed date range was not going beyond -/+10 years (thanks to LH)
631
 
632
 
633
  CHANGELOG:
634
+ v2.6.4 - 31/12/2014
635
+ - Fixed a DoS security issue on file, avatar and picture Extra Fields where a blog's user can delete random server's files
636
+ All versions between v0.9.5 and v2.6.3 (included) are vulnerable (credit to Sébastien Payet)
637
+ - Fixed a DoS security issue on file, avatar and picture Extra Fields where user can 'hide' multiple files on the server
638
+ All versions between v0.9.5 and v2.6.3 (included) are vulnerable (credit to Sébastien Payet)
639
+ - Added Hungarian (Balázs Németh)
640
+
641
  v2.6.3 - 03/10/2014
642
  - Fixed the upload of files when 'Form confirmation' is enabled (thanks to Max)
643
  - Fixed date range was not going beyond -/+10 years (thanks to LH)
cimy_uef_profile.php CHANGED
@@ -48,8 +48,6 @@ function cimy_extract_ExtraFields() {
48
  cimy_insert_ExtraFields_if_not_exist($get_user_id, $field_id);
49
  }
50
 
51
- // $ef_db = $wpdb->get_results("SELECT FIELD_ID, VALUE FROM ".$wpdb_data_table." WHERE USER_ID = ".$get_user_id, ARRAY_A);
52
-
53
  $radio_checked = array();
54
  $current_fieldset = -1;
55
  $tiny_mce_objects = "";
@@ -96,10 +94,6 @@ function cimy_extract_ExtraFields() {
96
  continue;
97
  }
98
 
99
- // foreach ($ef_db as $d_field) {
100
- // if ($d_field['FIELD_ID'] == $field_id)
101
- // $value = $d_field['VALUE'];
102
- // }
103
  $value = $wpdb->get_var($wpdb->prepare("SELECT VALUE FROM ".$wpdb_data_table." WHERE USER_ID=%d AND FIELD_ID=%d", $get_user_id, $field_id));
104
  $old_value = $value;
105
 
@@ -420,9 +414,6 @@ function cimy_extract_ExtraFields() {
420
  else {
421
  // take the "can be modified" rule just set before
422
  $dis_delete_img = $obj_disabled;
423
-
424
- // echo '<input type="hidden" name="'.$input_name.'_oldfile" value="'.basename($value).'" />';
425
- // echo "\n\t\t";
426
  }
427
 
428
  if ((($type == "picture") || ($type == "avatar")) && ((empty($rules["equal_to"])) || (!empty($advanced_options["no-thumb"])))) {
@@ -587,7 +578,13 @@ function cimy_update_ExtraFields() {
587
  continue;
588
  }
589
 
590
- $prev_value = esc_sql(stripslashes($_POST[$input_name."_".$field_id."_prev_value"]));
 
 
 
 
 
 
591
  if (cimy_uef_is_field_disabled($type, $rules['edit'], $prev_value))
592
  continue;
593
 
@@ -662,12 +659,7 @@ function cimy_update_ExtraFields() {
662
  else
663
  $delete_file = false;
664
 
665
- if (isset($_POST[$input_name."_".$field_id."_prev_value"]))
666
- $old_file = stripslashes($_POST[$input_name."_".$field_id."_prev_value"]);
667
- else
668
- $old_file = false;
669
-
670
- $field_value = cimy_manage_upload($input_name, $user_login, $rules, $old_file, $delete_file, $type, (!empty($advanced_options["filename"])) ? $advanced_options["filename"] : "");
671
 
672
  if ((!empty($field_value)) || ($delete_file)) {
673
  if ($i > 0)
@@ -684,11 +676,11 @@ function cimy_update_ExtraFields() {
684
  $query.= $value;
685
  }
686
  else {
687
- $prev_value = $value;
688
-
689
- $file_on_server = cimy_uef_get_dir_or_filename($user_login, $old_file, false);
690
  if (($type == "picture") || ($type == "avatar"))
691
  cimy_uef_crop_image($file_on_server, $field_id_data);
 
 
692
  }
693
  }
694
 
@@ -710,8 +702,7 @@ function cimy_update_ExtraFields() {
710
  $query.= " WHEN ".$field_id." THEN ";
711
  $query.= $value;
712
  }
713
-
714
- if ($type == 'dropdown-multi') {
715
  // if can be editable then write ''
716
  // there is no way to understand if was YES or NO previously
717
  // without adding other hidden inputs so write always
48
  cimy_insert_ExtraFields_if_not_exist($get_user_id, $field_id);
49
  }
50
 
 
 
51
  $radio_checked = array();
52
  $current_fieldset = -1;
53
  $tiny_mce_objects = "";
94
  continue;
95
  }
96
 
 
 
 
 
97
  $value = $wpdb->get_var($wpdb->prepare("SELECT VALUE FROM ".$wpdb_data_table." WHERE USER_ID=%d AND FIELD_ID=%d", $get_user_id, $field_id));
98
  $old_value = $value;
99
 
414
  else {
415
  // take the "can be modified" rule just set before
416
  $dis_delete_img = $obj_disabled;
 
 
 
417
  }
418
 
419
  if ((($type == "picture") || ($type == "avatar")) && ((empty($rules["equal_to"])) || (!empty($advanced_options["no-thumb"])))) {
578
  continue;
579
  }
580
 
581
+ $prev_value = $wpdb->get_var($wpdb->prepare("SELECT VALUE FROM ".$wpdb_data_table." WHERE USER_ID=%d AND FIELD_ID=%d", $get_user_id, $field_id));
582
+ if (is_null($prev_value))
583
+ $prev_value = "";
584
+
585
+ if (in_array($type, $cimy_uef_file_types)) {
586
+ $prev_value = basename($prev_value);
587
+ }
588
  if (cimy_uef_is_field_disabled($type, $rules['edit'], $prev_value))
589
  continue;
590
 
659
  else
660
  $delete_file = false;
661
 
662
+ $field_value = cimy_manage_upload($input_name, $user_login, $rules, empty($prev_value) ? false : $prev_value, $delete_file, $type, (!empty($advanced_options["filename"])) ? $advanced_options["filename"] : "");
 
 
 
 
 
663
 
664
  if ((!empty($field_value)) || ($delete_file)) {
665
  if ($i > 0)
676
  $query.= $value;
677
  }
678
  else {
679
+ $file_on_server = cimy_uef_get_dir_or_filename($user_login, $prev_value, false);
 
 
680
  if (($type == "picture") || ($type == "avatar"))
681
  cimy_uef_crop_image($file_on_server, $field_id_data);
682
+
683
+ $prev_value = $value;
684
  }
685
  }
686
 
702
  $query.= " WHEN ".$field_id." THEN ";
703
  $query.= $value;
704
  }
705
+ else if ($type == 'dropdown-multi') {
 
706
  // if can be editable then write ''
707
  // there is no way to understand if was YES or NO previously
708
  // without adding other hidden inputs so write always
cimy_user_extra_fields.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Cimy User Extra Fields
4
  Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
5
  Description: Add some useful fields to registration and user's info
6
- Version: 2.6.3
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  License: GPL2
@@ -162,7 +162,7 @@ add_action('admin_init', 'cimy_uef_admin_init');
162
  add_action('init', 'cimy_uef_init');
163
 
164
  $cimy_uef_name = "Cimy User Extra Fields";
165
- $cimy_uef_version = "2.6.3";
166
  $cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
167
  $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
168
 
3
  Plugin Name: Cimy User Extra Fields
4
  Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
5
  Description: Add some useful fields to registration and user's info
6
+ Version: 2.6.4
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  License: GPL2
162
  add_action('init', 'cimy_uef_init');
163
 
164
  $cimy_uef_name = "Cimy User Extra Fields";
165
+ $cimy_uef_version = "2.6.4";
166
  $cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
167
  $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
168
 
langs/cimy_uef-hu_HU.mo ADDED
Binary file
langs/cimy_uef-hu_HU.po ADDED
@@ -0,0 +1,1213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Cimy User Extra Fields\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-12-29 17:53-0800\n"
6
+ "PO-Revision-Date: 2014-12-29 17:53-0800\n"
7
+ "Last-Translator: Németh Balázs <nb0000@gmail.com>\n"
8
+ "Language-Team: Németh Balázs <nb0000@gmail.com>\n"
9
+ "Language: hu\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.6.9\n"
18
+ "X-Poedit-Language: Hungarian\n"
19
+ "X-Poedit-Country: HUNGARY\n"
20
+ "X-Poedit-SearchPath-0: ..\n"
21
+
22
+ #: ../cimy_uef_register.php:481
23
+ #: ../cimy_uef_register.php:485
24
+ #: ../cimy_uef_register.php:499
25
+ #: ../cimy_uef_register.php:519
26
+ #: ../cimy_uef_register.php:531
27
+ #: ../cimy_uef_register.php:544
28
+ #: ../cimy_uef_register.php:555
29
+ #: ../cimy_uef_register.php:565
30
+ #: ../cimy_uef_register.php:570
31
+ #: ../cimy_uef_register.php:581
32
+ #: ../cimy_uef_register.php:586
33
+ #: ../cimy_uef_register.php:597
34
+ #: ../cimy_uef_register.php:602
35
+ #: ../cimy_uef_register.php:644
36
+ #: ../cimy_uef_register.php:653
37
+ #: ../cimy_uef_admin.php:1112
38
+ msgid "ERROR"
39
+ msgstr "HIBA"
40
+
41
+ #: ../cimy_uef_register.php:481
42
+ msgid "does not match."
43
+ msgstr "nem egyezik."
44
+
45
+ #: ../cimy_uef_register.php:485
46
+ msgid "hasn&#8217;t a correct email syntax."
47
+ msgstr "nem szabványos email formátumú."
48
+
49
+ #: ../cimy_uef_register.php:499
50
+ msgid "couldn&#8217;t be empty."
51
+ msgstr "nem lehet üres."
52
+
53
+ #: ../cimy_uef_register.php:518
54
+ #: ../cimy_uef_register.php:527
55
+ msgid "isn&#8217;t correct"
56
+ msgstr "nem helyes"
57
+
58
+ #: ../cimy_uef_register.php:524
59
+ #: ../cimy_uef_register.php:1030
60
+ #: ../cimy_uef_register.php:1033
61
+ msgid "YES"
62
+ msgstr "IGEN"
63
+
64
+ #: ../cimy_uef_register.php:524
65
+ #: ../cimy_uef_register.php:1030
66
+ #: ../cimy_uef_register.php:1033
67
+ msgid "NO"
68
+ msgstr "NEM"
69
+
70
+ #: ../cimy_uef_register.php:529
71
+ msgid "should be"
72
+ msgstr "legyen"
73
+
74
+ #: ../cimy_uef_register.php:544
75
+ msgid "should be an image."
76
+ msgstr "kép kell, hogy legyen."
77
+
78
+ #: ../cimy_uef_register.php:555
79
+ msgid "does not accept this file type."
80
+ msgstr "nem fogadja el ezt a fájltípust."
81
+
82
+ #: ../cimy_uef_register.php:565
83
+ msgid "couldn&#8217;t have size less than"
84
+ msgstr "mérete nem lehet kisebb, mint"
85
+
86
+ #: ../cimy_uef_register.php:570
87
+ msgid "couldn&#8217;t have length less than"
88
+ msgstr "hossza nem lehet kisebb, mint"
89
+
90
+ #: ../cimy_uef_register.php:581
91
+ msgid "couldn&#8217;t have size different than"
92
+ msgstr "mérete nem lehet más, mint"
93
+
94
+ #: ../cimy_uef_register.php:586
95
+ msgid "couldn&#8217;t have length different than"
96
+ msgstr "hossza nem lehet más, mint"
97
+
98
+ #: ../cimy_uef_register.php:597
99
+ msgid "couldn&#8217;t have size more than"
100
+ msgstr "mérete nem lehet nagyobb, mint"
101
+
102
+ #: ../cimy_uef_register.php:602
103
+ msgid "couldn&#8217;t have length more than"
104
+ msgstr "hossza nem lehet nagyobb, mint"
105
+
106
+ #: ../cimy_uef_register.php:644
107
+ #: ../cimy_uef_register.php:653
108
+ msgid "Typed code is not correct."
109
+ msgstr "A megadott kód nem megfelelő."
110
+
111
+ #: ../cimy_uef_register.php:723
112
+ #: ../cimy_uef_admin.php:1534
113
+ #: ../cimy_uef_admin.php:1535
114
+ #: ../cimy_user_extra_fields.php:196
115
+ msgid "Username"
116
+ msgstr "Felhasználónév"
117
+
118
+ #: ../cimy_uef_register.php:750
119
+ #: ../cimy_uef_admin.php:1544
120
+ #: ../cimy_uef_admin.php:1545
121
+ msgid "E-mail"
122
+ msgstr "E-mail"
123
+
124
+ #: ../cimy_uef_register.php:1004
125
+ #: ../cimy_uef_profile.php:304
126
+ msgid "Please upload a file with one of the following extensions"
127
+ msgstr "Kérjük, töltsön fel egy fájlt a következő kiterjesztések egyikével"
128
+
129
+ #: ../cimy_uef_register.php:1010
130
+ #: ../cimy_uef_profile.php:310
131
+ #: ../cimy_uef_options.php:282
132
+ msgid "Please upload an image with one of the following extensions"
133
+ msgstr "Kérjük, töltsön fel egy képet a következő kiterjesztések egyikével"
134
+
135
+ #: ../cimy_uef_register.php:1193
136
+ msgid "Strength indicator"
137
+ msgstr "Erősség jelző"
138
+
139
+ #: ../cimy_uef_register.php:1194
140
+ msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
141
+ msgstr "Megjegyzés: a jelszó álljon legalább 7 karakterből. Legyen benn kicsi és nagy betű, szám és szimbólum (! ? $ ^ &amp;) is."
142
+
143
+ #: ../cimy_uef_register.php:1233
144
+ msgid "Change image"
145
+ msgstr "Kép módosítása"
146
+
147
+ #: ../cimy_uef_register.php:1236
148
+ msgid "Insert the code:"
149
+ msgstr "Kód beszúrása:"
150
+
151
+ #: ../cimy_uef_register.php:1308
152
+ #: ../cimy_uef_register.php:1310
153
+ msgid "Confirm your registration"
154
+ msgstr "Regisztráció megerősítése"
155
+
156
+ #: ../cimy_uef_register.php:1316
157
+ msgid "A password will be e-mailed to you."
158
+ msgstr "A jelszó levélben lesz elküldve."
159
+
160
+ #: ../cimy_uef_register.php:1324
161
+ msgid "&larr; Back"
162
+ msgstr "&larr; vissza"
163
+
164
+ #: ../cimy_uef_admin.php:17
165
+ msgid "Add field"
166
+ msgstr "Mező létrehozása"
167
+
168
+ #: ../cimy_uef_admin.php:18
169
+ msgid "Update field"
170
+ msgstr "Mező frissítése"
171
+
172
+ #: ../cimy_uef_admin.php:19
173
+ msgid "Delete field"
174
+ msgstr "Mező törlése"
175
+
176
+ #: ../cimy_uef_admin.php:20
177
+ msgid "Delete selected fields"
178
+ msgstr "Kijelölt mezők törlése"
179
+
180
+ #: ../cimy_uef_admin.php:21
181
+ msgid "Change order"
182
+ msgstr "Sorrend módosítása"
183
+
184
+ #: ../cimy_uef_admin.php:30
185
+ #: ../cimy_uef_admin.php:916
186
+ msgid "Min length"
187
+ msgstr "Min. hossz"
188
+
189
+ #: ../cimy_uef_admin.php:31
190
+ #: ../cimy_uef_admin.php:917
191
+ msgid "Exact length"
192
+ msgstr "Pontos hossz"
193
+
194
+ #: ../cimy_uef_admin.php:32
195
+ #: ../cimy_uef_admin.php:918
196
+ msgid "Max length"
197
+ msgstr "Max. hossz"
198
+
199
+ #: ../cimy_uef_admin.php:33
200
+ msgid "Exact or Max length"
201
+ msgstr "Pontos vagy Max. hossz"
202
+
203
+ #: ../cimy_uef_admin.php:133
204
+ #: ../cimy_uef_init.php:22
205
+ msgid "Fields"
206
+ msgstr "Mezők"
207
+
208
+ #: ../cimy_uef_admin.php:133
209
+ msgid "changed to"
210
+ msgstr "módosítva erre"
211
+
212
+ #: ../cimy_uef_admin.php:136
213
+ msgid "You cannot give an order that misses some numbers"
214
+ msgstr "Nem lehet hiányos sorrendet megadni."
215
+
216
+ #: ../cimy_uef_admin.php:139
217
+ #: ../cimy_uef_admin.php:214
218
+ msgid "Nothing selected"
219
+ msgstr "Semmi sincs kiválasztva"
220
+
221
+ #: ../cimy_uef_admin.php:211
222
+ msgid "Field(s)"
223
+ msgstr "Mező(k)"
224
+
225
+ #: ../cimy_uef_admin.php:211
226
+ msgid "deleted correctly"
227
+ msgstr "helyesen törölve"
228
+
229
+ #: ../cimy_uef_admin.php:245
230
+ #: ../cimy_uef_admin.php:898
231
+ msgid "Min size"
232
+ msgstr "Min méret"
233
+
234
+ #: ../cimy_uef_admin.php:246
235
+ #: ../cimy_uef_admin.php:899
236
+ msgid "Exact size"
237
+ msgstr "Pontos méret"
238
+
239
+ #: ../cimy_uef_admin.php:247
240
+ #: ../cimy_uef_admin.php:900
241
+ msgid "Max size"
242
+ msgstr "Max méret"
243
+
244
+ #: ../cimy_uef_admin.php:249
245
+ msgid "Exact or Max size"
246
+ msgstr "Pontos vagy Max méret"
247
+
248
+ #: ../cimy_uef_admin.php:252
249
+ #: ../cimy_uef_admin.php:907
250
+ msgid "Min date"
251
+ msgstr "Min dátum"
252
+
253
+ #: ../cimy_uef_admin.php:253
254
+ #: ../cimy_uef_admin.php:908
255
+ msgid "Exact date"
256
+ msgstr "Pontos dátum"
257
+
258
+ #: ../cimy_uef_admin.php:254
259
+ #: ../cimy_uef_admin.php:909
260
+ msgid "Max date"
261
+ msgstr "Max dátum"
262
+
263
+ #: ../cimy_uef_admin.php:315
264
+ msgid "Name not specified"
265
+ msgstr "Név nincs megadva"
266
+
267
+ #: ../cimy_uef_admin.php:317
268
+ msgid "Name cannot contains spaces"
269
+ msgstr "A névben nem lehet szóköz"
270
+
271
+ #: ../cimy_uef_admin.php:320
272
+ msgid "Label not specified"
273
+ msgstr "Címke nincs megadva"
274
+
275
+ #: ../cimy_uef_admin.php:325
276
+ msgid "not selected (with this type is necessary)"
277
+ msgstr "Nincs kiválasztva (ennél a típusnál kötelező)"
278
+
279
+ #: ../cimy_uef_admin.php:331
280
+ msgid "If you select"
281
+ msgstr "Ha ezt választod:"
282
+
283
+ #: ../cimy_uef_admin.php:331
284
+ msgid "you cannot select Min or Max"
285
+ msgstr "akkor nem lehet Min vagy Max"
286
+
287
+ #: ../cimy_uef_admin.php:337
288
+ #: ../cimy_uef_admin.php:342
289
+ #: ../cimy_uef_admin.php:347
290
+ msgid "should be in the range of"
291
+ msgstr "ebben az intervallumban kéne lennie:"
292
+
293
+ #: ../cimy_uef_admin.php:358
294
+ msgid "Equal TO not specified"
295
+ msgstr "„Legyen egyenlő ezzel” nincs megadva"
296
+
297
+ #: ../cimy_uef_admin.php:361
298
+ msgid "With checkbox type Equal TO can only be"
299
+ msgstr "Jelölőnégyzet típusnál a „Legyen egyenlő ezzel” csak ez lehet:"
300
+
301
+ #: ../cimy_uef_admin.php:364
302
+ msgid "With radio type Equal TO can only be"
303
+ msgstr "Rádió típusnál a „Legyen egyenlő ezzel” csak ez lehet:"
304
+
305
+ #: ../cimy_uef_admin.php:380
306
+ msgid "With checkbox type Value can only be"
307
+ msgstr "Jelölőnégyzet típusnál az „Érték” csak ez lehet:"
308
+
309
+ #: ../cimy_uef_admin.php:383
310
+ msgid "With radio type Value can only be"
311
+ msgstr "Rádió típusnál az „Érték” csak ez lehet:"
312
+
313
+ #: ../cimy_uef_admin.php:439
314
+ msgid "Field inserted correctly"
315
+ msgstr "Mező sikeresen beillesztve"
316
+
317
+ #: ../cimy_uef_admin.php:441
318
+ msgid "Field #"
319
+ msgstr "Mező #"
320
+
321
+ #: ../cimy_uef_admin.php:441
322
+ msgid "updated correctly"
323
+ msgstr "sikeresen frissítve"
324
+
325
+ #: ../cimy_uef_admin.php:453
326
+ msgid "Name inserted is just in the database, change to another one"
327
+ msgstr "A megadott név már szerepel az adatbázisban, meg kell változtatni"
328
+
329
+ #: ../cimy_uef_admin.php:468
330
+ #: ../cimy_uef_options.php:367
331
+ msgid "Add a new Field"
332
+ msgstr "Új mező létrehozása"
333
+
334
+ #: ../cimy_uef_admin.php:586
335
+ 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."
336
+ msgstr "Egy új mező létrehozásához meg kell adni a nevet, típust és címkét, az érték és a leírás opcionális. Felhasználó regisztrációja során a szabályok alkalmazva lesznek."
337
+
338
+ #: ../cimy_uef_admin.php:588
339
+ 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'"
340
+ msgstr "A <strong>rádió</strong> és <strong>jelölőnégyzet</strong> típusnál az <em>Érték</em> és <em>Legyen egyenlő ezzel</em> csak 'Yes' és 'No' lehet, amelyek 'bejelölve' és 'nem bejelölve' jelentéssel bírnak."
341
+
342
+ #: ../cimy_uef_admin.php:589
343
+ msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
344
+ msgstr "A <strong>legördülő</strong> típusnál minden opciót fel kell sorolni, például: címke/elem1,elem2,elem3"
345
+
346
+ #: ../cimy_uef_admin.php:590
347
+ 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"
348
+ msgstr "A <strong>kép</strong> típusnál előre lehet tölteni egy képet, az URLjét megadva <em>Érték</em>nek; A „min,pontos,max méret” KiB-ben értendő; <em>Legyen egyenlő ezzel</em> jelentése max. képpont méret (szélesség vagy magasság)"
349
+
350
+ #: ../cimy_uef_admin.php:591
351
+ 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)"
352
+ msgstr "A <strong>kép-url</strong> típusnál előre lehet tölteni egy képet, az URLjét megadva <em>Érték</em>nek; <em>Legyen egyenlő ezzel</em> jelentése max. képpont méret (szélesség vagy magasság)"
353
+
354
+ #: ../cimy_uef_admin.php:592
355
+ msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
356
+ msgstr "A <strong>regisztráció-dátum</strong> típusnál a <em>Legyen egyenlő ezzel</em> jelentése dátum és idő formátum"
357
+
358
+ #: ../cimy_uef_admin.php:593
359
+ 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"
360
+ msgstr "Az <strong>avatár</strong> típusnál előre lehet tölteni egy képet, az URLjét megadva <em>Érték</em>nek; 'min,pontos,max méret' KiB; <em>Legyen egyenő ezzel</em> automatikusan 512 képontra lesz állítva"
361
+
362
+ #: ../cimy_uef_admin.php:594
363
+ 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"
364
+ msgstr "A <strong>fájl</strong> típusnál előre ki lehet választani egy fájlt, az urljét megadva <em>Érték</em>nek; 'min,pontos,max méret' KiB; A <em>Legyen egyenlő ezzel</em> mezőben megadhatók az elfogadott kiterjesztések vesszővel elválasztva, például: zip,pdf,doc"
365
+
366
+ #: ../cimy_uef_admin.php:595
367
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
368
+ msgstr "A <strong>dátum</strong> típusnál előre megadható egy dátum az <em>Érték</em> mezőben; A 'min dátum' lehet relatív: -1d, -1m, -1y vagy adott dátum; 'max dátum' lehet relatív: +1d, +1m, +1y vagy adott dátum; A <em>Legyen egyenlő ezzel</em> lehet adott dátum"
369
+
370
+ #: ../cimy_uef_admin.php:602
371
+ #: ../cimy_uef_admin.php:612
372
+ #: ../cimy_uef_admin.php:834
373
+ #: ../cimy_uef_admin.php:942
374
+ #: ../cimy_uef_admin.php:1539
375
+ #: ../cimy_uef_admin.php:1540
376
+ msgid "Name"
377
+ msgstr "Név"
378
+
379
+ #: ../cimy_uef_admin.php:602
380
+ #: ../cimy_uef_admin.php:613
381
+ #: ../cimy_uef_admin.php:834
382
+ #: ../cimy_uef_admin.php:945
383
+ #: ../cimy_uef_admin.php:1850
384
+ #: ../cimy_uef_admin.php:1855
385
+ msgid "Value"
386
+ msgstr "Érték"
387
+
388
+ #: ../cimy_uef_admin.php:603
389
+ #: ../cimy_uef_admin.php:616
390
+ #: ../cimy_uef_admin.php:834
391
+ #: ../cimy_uef_admin.php:948
392
+ msgid "Type"
393
+ msgstr "Típus"
394
+
395
+ #: ../cimy_uef_admin.php:604
396
+ #: ../cimy_uef_admin.php:632
397
+ #: ../cimy_uef_admin.php:835
398
+ #: ../cimy_uef_admin.php:965
399
+ msgid "Label"
400
+ msgstr "Címke"
401
+
402
+ #: ../cimy_uef_admin.php:604
403
+ #: ../cimy_uef_admin.php:633
404
+ #: ../cimy_uef_admin.php:835
405
+ #: ../cimy_uef_admin.php:968
406
+ msgid "Description"
407
+ msgstr "Leírás"
408
+
409
+ #: ../cimy_uef_admin.php:605
410
+ #: ../cimy_uef_admin.php:836
411
+ msgid "Rules"
412
+ msgstr "Szabályok"
413
+
414
+ #: ../cimy_uef_admin.php:606
415
+ #: ../cimy_uef_admin.php:837
416
+ msgid "Actions"
417
+ msgstr "Műveletek"
418
+
419
+ #: ../cimy_uef_admin.php:627
420
+ #: ../cimy_uef_admin.php:959
421
+ #: ../cimy_uef_admin.php:1285
422
+ #: ../cimy_uef_admin.php:1376
423
+ msgid "Fieldset"
424
+ msgstr "Mezőcsoport"
425
+
426
+ #: ../cimy_uef_admin.php:649
427
+ #: ../cimy_uef_admin.php:986
428
+ msgid "Can be empty"
429
+ msgstr "Lehet üres"
430
+
431
+ #: ../cimy_uef_admin.php:651
432
+ #: ../cimy_uef_admin.php:988
433
+ msgid "Check for E-mail syntax"
434
+ msgstr "Email formátum ellenőrzése"
435
+
436
+ #: ../cimy_uef_admin.php:654
437
+ #: ../cimy_uef_admin.php:991
438
+ msgid "Can be modified"
439
+ msgstr "Módosítható"
440
+
441
+ #: ../cimy_uef_admin.php:655
442
+ #: ../cimy_uef_admin.php:992
443
+ msgid "Can be modified only if empty"
444
+ msgstr "Csak akkor módosítható, ha üres"
445
+
446
+ #: ../cimy_uef_admin.php:656
447
+ #: ../cimy_uef_admin.php:993
448
+ msgid "Can be modified only by admin"
449
+ msgstr "Csak adminisztrátor módosíthatja"
450
+
451
+ #: ../cimy_uef_admin.php:657
452
+ #: ../cimy_uef_admin.php:994
453
+ msgid "Can be modified only by admin or if empty"
454
+ msgstr "Csak adminisztrátor módosíthatja, vagy más is ha üres"
455
+
456
+ #: ../cimy_uef_admin.php:658
457
+ #: ../cimy_uef_admin.php:995
458
+ msgid "Cannot be modified"
459
+ msgstr "Nem módosítható"
460
+
461
+ #: ../cimy_uef_admin.php:663
462
+ #: ../cimy_uef_admin.php:1001
463
+ msgid "Should be equal TO"
464
+ msgstr "Legyen egyenlő ezzel"
465
+
466
+ #: ../cimy_uef_admin.php:666
467
+ #: ../cimy_uef_admin.php:1004
468
+ msgid "Case sensitive"
469
+ msgstr "Betűméret számít"
470
+
471
+ #: ../cimy_uef_admin.php:670
472
+ #: ../cimy_uef_admin.php:1007
473
+ msgid "Regular Expression"
474
+ msgstr "Reguláris kifejezés"
475
+
476
+ #: ../cimy_uef_admin.php:674
477
+ #: ../cimy_uef_admin.php:1013
478
+ msgid "Show the field in the registration"
479
+ msgstr "Mező megjelenítése regisztrációnál"
480
+
481
+ #: ../cimy_uef_admin.php:678
482
+ #: ../cimy_uef_admin.php:1017
483
+ msgid "Show the field in User's profile"
484
+ msgstr "Mező megjelenítése a felhasználó profiljánál"
485
+
486
+ #: ../cimy_uef_admin.php:682
487
+ #: ../cimy_uef_admin.php:1027
488
+ msgid "Show the field in Users Extended section"
489
+ msgstr "Mező megjelenítése a Felhasználó kibővítése részen"
490
+
491
+ #: ../cimy_uef_admin.php:686
492
+ #: ../cimy_uef_admin.php:1031
493
+ msgid "Show the field in the search engine"
494
+ msgstr "Mező megjelenítése a kereső motorban"
495
+
496
+ #: ../cimy_uef_admin.php:690
497
+ #: ../cimy_uef_admin.php:1035
498
+ msgid "Show the field in the blog"
499
+ msgstr "Mező megjelenítése a blogon"
500
+
501
+ #: ../cimy_uef_admin.php:693
502
+ #: ../cimy_uef_admin.php:1038
503
+ msgid "Show the field if the role is at least:"
504
+ msgstr "Mező megjelenítése, ha a szerepkör legalább:"
505
+
506
+ #: ../cimy_uef_admin.php:695
507
+ #: ../cimy_uef_admin.php:1040
508
+ msgid "Anonymous"
509
+ msgstr "Névtelen"
510
+
511
+ #: ../cimy_uef_admin.php:701
512
+ #: ../cimy_uef_admin.php:1046
513
+ msgid "User has 'view_cimy_extra_fields' capability"
514
+ msgstr "Felhasználónak van 'view_cimy_extra_fields' képessége"
515
+
516
+ #: ../cimy_uef_admin.php:707
517
+ #: ../cimy_uef_admin.php:1055
518
+ msgid "Send an email to the admin if the user changes its value"
519
+ msgstr "Email küldése az admisztrátornak, ha a felhasználó módosítja az értékét"
520
+
521
+ #: ../cimy_uef_admin.php:709
522
+ #: ../cimy_uef_admin.php:1060
523
+ msgid "Advanced options"
524
+ msgstr "Haladó beállítások"
525
+
526
+ #: ../cimy_uef_admin.php:714
527
+ msgid "Clear"
528
+ msgstr "Törlés"
529
+
530
+ #: ../cimy_uef_admin.php:798
531
+ msgid "Invert selection"
532
+ msgstr "Kijelölés megfordítása"
533
+
534
+ #: ../cimy_uef_admin.php:799
535
+ msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
536
+ msgstr "Biztosan törölni szeretné a kijelölt mezőket, és minden felhasználók által ezekben megadott adatot?"
537
+
538
+ #: ../cimy_uef_admin.php:805
539
+ msgid "WordPress Fields"
540
+ msgstr "WordPress mezők"
541
+
542
+ #: ../cimy_uef_admin.php:807
543
+ #: ../cimy_uef_admin.php:1850
544
+ #: ../cimy_uef_admin.php:1855
545
+ #: ../cimy_uef_options.php:367
546
+ #: ../cimy_uef_db.php:115
547
+ #: ../cimy_uef_db.php:369
548
+ msgid "Extra Fields"
549
+ msgstr "Extra mezők"
550
+
551
+ #: ../cimy_uef_admin.php:818
552
+ msgid "None!"
553
+ msgstr "Nincs!"
554
+
555
+ #: ../cimy_uef_admin.php:833
556
+ #: ../cimy_uef_admin.php:930
557
+ msgid "Order"
558
+ msgstr "Sorrend"
559
+
560
+ #: ../cimy_uef_admin.php:1064
561
+ msgid "Reset"
562
+ msgstr "Alapra"
563
+
564
+ #: ../cimy_uef_admin.php:1130
565
+ #: ../cimy_uef_options.php:391
566
+ msgid "SUCCESSFUL"
567
+ msgstr "SIKERES"
568
+
569
+ #: ../cimy_uef_admin.php:1149
570
+ #: ../cimy_uef_admin.php:1877
571
+ msgid "select"
572
+ msgstr "válasszon"
573
+
574
+ #: ../cimy_uef_admin.php:1289
575
+ #: ../cimy_uef_admin.php:1380
576
+ msgid "Users per page"
577
+ msgstr "Felhasználó/oldal"
578
+
579
+ #: ../cimy_uef_admin.php:1291
580
+ #: ../cimy_uef_admin.php:1382
581
+ msgid "Apply"
582
+ msgstr "Alkalmaz"
583
+
584
+ #: ../cimy_uef_admin.php:1456
585
+ #: ../cimy_uef_init.php:23
586
+ #: ../cimy_uef_init.php:31
587
+ #: ../cimy_uef_init.php:36
588
+ msgid "Users Extended"
589
+ msgstr "Cimy nézet"
590
+
591
+ #: ../cimy_uef_admin.php:1464
592
+ #, php-format
593
+ msgid "Search results for &#8220;%s&#8221;"
594
+ msgstr "Keresési eredmények - „%s”"
595
+
596
+ #: ../cimy_uef_admin.php:1502
597
+ #, php-format
598
+ msgid "%1$s <span class=\"count\">(%2$s)</span>"
599
+ msgstr "%1$s <span class=\"count\">(%2$s)</span>"
600
+
601
+ #: ../cimy_uef_admin.php:1511
602
+ msgid "Search Users"
603
+ msgstr "Felhasználók keresése"
604
+
605
+ #: ../cimy_uef_admin.php:1549
606
+ #: ../cimy_uef_admin.php:1550
607
+ msgid "Role"
608
+ msgstr "Szerepkör"
609
+
610
+ #: ../cimy_uef_admin.php:1554
611
+ #: ../cimy_uef_admin.php:1555
612
+ #: ../cimy_user_extra_fields.php:328
613
+ msgid "Website"
614
+ msgstr "Weboldal"
615
+
616
+ #: ../cimy_uef_admin.php:1559
617
+ #: ../cimy_uef_admin.php:1560
618
+ msgid "Posts"
619
+ msgstr "Bejegyzések"
620
+
621
+ #: ../cimy_uef_admin.php:1683
622
+ msgid "View posts by this author"
623
+ msgstr "A szerző bejegyzései"
624
+
625
+ #: ../cimy_uef_admin.php:1708
626
+ msgid "Super Admin"
627
+ msgstr "Szuper-admin"
628
+
629
+ #: ../cimy_uef_admin.php:1719
630
+ #, php-format
631
+ msgid "e-mail: %s"
632
+ msgstr "E-mail: %s"
633
+
634
+ #: ../cimy_uef_admin.php:1830
635
+ msgid "Change"
636
+ msgstr "Módosít"
637
+
638
+ #: ../cimy_uef_admin.php:1846
639
+ msgid "Update selected users"
640
+ msgstr "Kiválasztott felhasználók frissítése"
641
+
642
+ #: ../cimy_uef_admin.php:1867
643
+ msgid "Update"
644
+ msgstr "Frissítés"
645
+
646
+ #: ../cimy_uef_admin.php:1882
647
+ msgid "OK"
648
+ msgstr "OK"
649
+
650
+ #: ../cimy_uef_admin.php:1883
651
+ msgid "Cancel"
652
+ msgstr "Mégsem"
653
+
654
+ #: ../cimy_uef_email_handler.php:45
655
+ #, php-format
656
+ msgid "New user registration on your site %s:"
657
+ msgstr "Új felhasználó regisztrált a weboldalon %s:"
658
+
659
+ #: ../cimy_uef_email_handler.php:46
660
+ #: ../cimy_uef_email_handler.php:243
661
+ #: ../cimy_uef_db.php:214
662
+ #: ../cimy_uef_db.php:364
663
+ #, php-format
664
+ msgid "Username: %s"
665
+ msgstr "Felhasználónév: %s"
666
+
667
+ #: ../cimy_uef_email_handler.php:47
668
+ #, php-format
669
+ msgid "E-mail: %s"
670
+ msgstr "Email: %s"
671
+
672
+ #: ../cimy_uef_email_handler.php:52
673
+ #, php-format
674
+ msgid "[%s] New User Registration"
675
+ msgstr "[%s] új felhasználó regisztrált"
676
+
677
+ #: ../cimy_uef_email_handler.php:64
678
+ #, php-format
679
+ msgid "[%s] Your username and password"
680
+ msgstr "[%s] A felhasználóneve és jelszava"
681
+
682
+ #: ../cimy_uef_email_handler.php:105
683
+ #: ../cimy_uef_email_handler.php:118
684
+ #: ../cimy_uef_email_handler.php:131
685
+ #: ../cimy_uef_email_handler.php:137
686
+ #, php-format
687
+ msgid "%s: %s"
688
+ msgstr "%s: %s"
689
+
690
+ #: ../cimy_uef_email_handler.php:211
691
+ #, php-format
692
+ msgid ""
693
+ "To activate your user, please click the following link:\n"
694
+ "\n"
695
+ "%s\n"
696
+ "\n"
697
+ "After you activate, you will receive *another email* with your login.\n"
698
+ "\n"
699
+ msgstr ""
700
+ "A felhasználó aktiválásához, kattintson a következő linkre:\n"
701
+ "\n"
702
+ "%s\n"
703
+ "\n"
704
+ "Aktiválás után, kapni fog *még egy emailt* a belépési adataival.\n"
705
+ "\n"
706
+
707
+ #: ../cimy_uef_email_handler.php:215
708
+ #, php-format
709
+ msgid "[%1$s] Activate %2$s"
710
+ msgstr "[%1$s] Aktivál %2$s"
711
+
712
+ #: ../cimy_uef_email_handler.php:234
713
+ #: ../cimy_uef_email_handler.php:243
714
+ msgid "Your account is now active!"
715
+ msgstr "A fiókja mostantól aktív."
716
+
717
+ #: ../cimy_uef_email_handler.php:235
718
+ #, php-format
719
+ msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
720
+ msgstr "A weboldal <a href=\"%1$s\">%2$s</a> címen aktív. Beléphez a választott felhasználónével „%3$s”. Jelszavát elküldtük emailben %4$s címre. Ha nem kapta meg, kérjük, nézze meg a spam mappában is. Ha így se kapja meg az emailt egy órán belül, akkor <a href=\"%5$s\">módosíthatja jelszavát</a></p>."
721
+
722
+ #: ../cimy_uef_email_handler.php:237
723
+ msgid "An error occurred during the activation"
724
+ msgstr "Hiba történt az aktiváció során."
725
+
726
+ #: ../cimy_uef_email_handler.php:243
727
+ #: ../cimy_uef_db.php:215
728
+ #: ../cimy_uef_db.php:365
729
+ #, php-format
730
+ msgid "Password: %s"
731
+ msgstr "Jelszó: %s"
732
+
733
+ #: ../cimy_uef_email_handler.php:257
734
+ msgid "Invalid activation key."
735
+ msgstr "Érvénytelen aktivációs kulcs."
736
+
737
+ #: ../cimy_uef_email_handler.php:260
738
+ msgid "The site is already active."
739
+ msgstr "Ez az oldal már aktív."
740
+
741
+ #: ../cimy_uef_email_handler.php:283
742
+ msgid "Could not create user"
743
+ msgstr "Nem sikerült a felhasználó létrehozása"
744
+
745
+ #: ../cimy_uef_email_handler.php:295
746
+ msgid "That username is already activated."
747
+ msgstr "Ez a felhasználónév már aktív."
748
+
749
+ #: ../cimy_uef_email_handler.php:315
750
+ msgid "That username is currently reserved but may be available in a couple of days."
751
+ msgstr "Ez a felhasználónév jelenleg foglalt, de pár nap múlva elérhető lehet."
752
+
753
+ #: ../cimy_uef_email_handler.php:318
754
+ msgid "username and email used"
755
+ msgstr "felhasználónév és email használva"
756
+
757
+ #: ../cimy_uef_email_handler.php:328
758
+ msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
759
+ msgstr "Ez az emailcím már foglalt. Kérem, nézze meg a bejövő levelei közt az aktivációs emailt. pár nap múlva szabaddá válik, ha nem csinál semmit."
760
+
761
+ #: ../cimy_uef_profile.php:138
762
+ msgid "(required)"
763
+ msgstr "(szükséges)"
764
+
765
+ #: ../cimy_uef_profile.php:445
766
+ msgid "Delete the file"
767
+ msgstr "Fájl törlése"
768
+
769
+ #: ../cimy_uef_profile.php:446
770
+ msgid "Update the file"
771
+ msgstr "Fájl feltöltése"
772
+
773
+ #: ../cimy_uef_profile.php:449
774
+ #: ../cimy_uef_options.php:545
775
+ msgid "Delete the picture"
776
+ msgstr "Kép törlése"
777
+
778
+ #: ../cimy_uef_profile.php:450
779
+ msgid "Update the picture"
780
+ msgstr "Kép feltöltése"
781
+
782
+ #: ../cimy_uef_profile.php:470
783
+ msgid "Picture URL:"
784
+ msgstr "Kép URL:"
785
+
786
+ #: ../cimy_uef_profile.php:723
787
+ #, php-format
788
+ msgid "%s previous value: %s new value: %s"
789
+ msgstr "%s előző értéke: „%s”, új értéke: „%s”"
790
+
791
+ #: ../cimy_uef_profile.php:738
792
+ #, php-format
793
+ msgid "%s (%s) has changed one or more fields"
794
+ msgstr "%s (%s) módosított egy vagy több mező értékén"
795
+
796
+ #: ../cimy_uef_init.php:21
797
+ #: ../cimy_uef_options.php:364
798
+ #: ../cimy_uef_options.php:559
799
+ msgid "Options"
800
+ msgstr "Beállítások"
801
+
802
+ #: ../cimy_uef_options.php:52
803
+ msgid "WordPress Fields table emptied"
804
+ msgstr "WordPress mezők tábla kiürítve"
805
+
806
+ #: ../cimy_uef_options.php:57
807
+ msgid "WordPress Fields table deleted"
808
+ msgstr "WordPress mezők tábla törölve"
809
+
810
+ #: ../cimy_uef_options.php:66
811
+ msgid "Extra Fields table emptied"
812
+ msgstr "Extra mezők tábla kiürítve"
813
+
814
+ #: ../cimy_uef_options.php:71
815
+ msgid "Extra Fields table deleted"
816
+ msgstr "Extra mezők tábla törölve"
817
+
818
+ #: ../cimy_uef_options.php:80
819
+ msgid "Users Data table emptied"
820
+ msgstr "Felhasználók adat tábla kiürítve"
821
+
822
+ #: ../cimy_uef_options.php:85
823
+ msgid "Users Data table deleted"
824
+ msgstr "Felhasználók adat tábla törölve"
825
+
826
+ #: ../cimy_uef_options.php:96
827
+ msgid "Options set to default values"
828
+ msgstr "Opciók visszaállítva alapra"
829
+
830
+ #: ../cimy_uef_options.php:102
831
+ msgid "Options deleted"
832
+ msgstr "Opciók törölve"
833
+
834
+ #: ../cimy_uef_options.php:256
835
+ msgid "Options changed"
836
+ msgstr "Opciók módosítva"
837
+
838
+ #: ../cimy_uef_options.php:355
839
+ msgid "This operation will create/update all missing tables/options, do you want to proceed?"
840
+ msgstr "Ez a művelet létrehozza/frissíti az összes hiányzó táblát/opciót, folytatja?"
841
+
842
+ #: ../cimy_uef_options.php:373
843
+ msgid "Support the Cimy Project"
844
+ msgstr "Támogassa a Cimy projektet"
845
+
846
+ #: ../cimy_uef_options.php:381
847
+ msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
848
+ msgstr "Ez a bővítmény sok órányi fejlesztés eredménye. Új képességek, WordPress verziókövetés, hibajavítások. Ha megspóroltam Önnek némi időt, akkor kérem támogasson!"
849
+
850
+ #: ../cimy_uef_options.php:405
851
+ #: ../cimy_uef_options.php:799
852
+ msgid "Save Changes"
853
+ msgstr "Módosítások mentése"
854
+
855
+ #: ../cimy_uef_options.php:406
856
+ msgid "General"
857
+ msgstr "Általános"
858
+
859
+ #: ../cimy_uef_options.php:414
860
+ msgid "installed is"
861
+ msgstr "telepítve:"
862
+
863
+ #: ../cimy_uef_options.php:418
864
+ msgid "OPTIONS DELETED!"
865
+ msgstr "OPCIÓK TÖRÖLVE!"
866
+
867
+ #: ../cimy_uef_options.php:421
868
+ #: ../cimy_uef_options.php:426
869
+ msgid "Fix the problem"
870
+ msgstr "Probléma javítása"
871
+
872
+ #: ../cimy_uef_options.php:424
873
+ msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
874
+ msgstr "VERZIÓK ELTÉRNEK! Ez azért van, mert frissítés után nem lett ki- és bekapcsolva a bővítmény. Ez problémákat okozhat..."
875
+
876
+ #: ../cimy_uef_options.php:432
877
+ msgid "Picture/Avatar upload"
878
+ msgstr "Kép/avatár feltöltés"
879
+
880
+ #: ../cimy_uef_options.php:436
881
+ msgid "is created and writable"
882
+ msgstr "létezik és írható"
883
+
884
+ #: ../cimy_uef_options.php:438
885
+ msgid "is NOT created or webserver does NOT have permission to write on it"
886
+ msgstr "NEM létezik vagy NEM írható"
887
+
888
+ #: ../cimy_uef_options.php:445
889
+ msgid "Show all fields in the welcome email"
890
+ msgstr "Minden mező legyen benn az üdvözlő emailben"
891
+
892
+ #: ../cimy_uef_options.php:449
893
+ msgid "the email sent to the admin and to the user upon registration will have all fields"
894
+ msgstr "Az adminisztrátornak és a felhasználónak regisztrációkor küldött levél tartalmazza az összes mezőt."
895
+
896
+ #: ../cimy_uef_options.php:457
897
+ msgid "Enable email confirmation"
898
+ msgstr "Emailcím megerősítése"
899
+
900
+ #: ../cimy_uef_options.php:461
901
+ msgid "user that registers should confirm its email address via a link click"
902
+ msgstr "A regisztráló felhasználóknak meg kell erősíteniük a címüket, az emailben kiküldött linkre kattintva."
903
+
904
+ #: ../cimy_uef_options.php:463
905
+ msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
906
+ msgstr "<strong>Megjegyzés:</strong> ezen opció használata esetén a regisztrációs űrlapon le lesznek tiltva a feltöltő mezők: fájl, kép, avatár."
907
+
908
+ #: ../cimy_uef_options.php:470
909
+ msgid "Enable form confirmation"
910
+ msgstr "Űrlap elküldésének megerősítése"
911
+
912
+ #: ../cimy_uef_options.php:474
913
+ msgid "a summary of the registration form will be presented to the user"
914
+ msgstr "A regisztrációs űrlap elküldése előtt a felhasználó átnézheti a megadott adatokat."
915
+
916
+ #: ../cimy_uef_options.php:480
917
+ msgid "Customize welcome email sent to the new user"
918
+ msgstr "Regisztrációs üdvözlő levél testreszabása"
919
+
920
+ #: ../cimy_uef_options.php:484
921
+ msgid "if you change or remove the placeholders then the email won't have the correct information"
922
+ msgstr "Ha módosítja vagy eltávolítja a helyörzőket (USERNAME, PASSWORD, LOGINLINK), akkor ezek az adatok nem lesznek benne az emailben."
923
+
924
+ #: ../cimy_uef_options.php:490
925
+ msgid "Redirect to the source"
926
+ msgstr "Átirányítás a kiindulási helyre"
927
+
928
+ #: ../cimy_uef_options.php:494
929
+ msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
930
+ msgstr "A regisztráció (vagy megerősítés) után a felhasználó átirányításra kerül a regisztrációs linket kartalmazó oldalra."
931
+
932
+ #: ../cimy_uef_options.php:502
933
+ msgid "No captcha"
934
+ msgstr "Nem kell captcha"
935
+
936
+ #: ../cimy_uef_options.php:510
937
+ msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
938
+ msgstr "Legyen <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
939
+
940
+ #: ../cimy_uef_options.php:514
941
+ msgid "Public KEY"
942
+ msgstr "Nyilvános kulcs"
943
+
944
+ #: ../cimy_uef_options.php:518
945
+ msgid "Private KEY"
946
+ msgstr "Titkos kulcs"
947
+
948
+ #: ../cimy_uef_options.php:526
949
+ msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
950
+ msgstr "Legyen <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
951
+
952
+ #: ../cimy_uef_options.php:529
953
+ msgid "This captcha is probably weaker, but is easier for users"
954
+ msgstr "Ezt könnyebb kitalálni a robotoknak, de az embereknek is."
955
+
956
+ #: ../cimy_uef_options.php:533
957
+ #, php-format
958
+ msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
959
+ msgstr "<strong>FIGYELEM: ehhez captcha-hoz töltse le <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">ezt a csomagot</a> és csomagolja ki ide: %s</strong>"
960
+
961
+ #: ../cimy_uef_options.php:540
962
+ msgid "Change login/registration page logo"
963
+ msgstr "Belépés/regisztrációs oldali logó cseréje"
964
+
965
+ #: ../cimy_uef_options.php:548
966
+ msgid "Maximum recommended logo width is 328px, but any height should work."
967
+ msgstr "A maximális ajánlott szélesség 328px, a magasság nem számít."
968
+
969
+ #: ../cimy_uef_options.php:554
970
+ msgid "Database"
971
+ msgstr "Adatbázis"
972
+
973
+ #: ../cimy_uef_options.php:566
974
+ #: ../cimy_uef_options.php:586
975
+ #: ../cimy_uef_options.php:606
976
+ #: ../cimy_uef_options.php:626
977
+ msgid "select action"
978
+ msgstr "válasszon műveletet"
979
+
980
+ #: ../cimy_uef_options.php:567
981
+ msgid "Default values"
982
+ msgstr "Alapértékek"
983
+
984
+ #: ../cimy_uef_options.php:568
985
+ #: ../cimy_uef_options.php:588
986
+ #: ../cimy_uef_options.php:608
987
+ #: ../cimy_uef_options.php:628
988
+ msgid "Delete"
989
+ msgstr "Törlés"
990
+
991
+ #: ../cimy_uef_options.php:572
992
+ #: ../cimy_uef_options.php:592
993
+ #: ../cimy_uef_options.php:612
994
+ #: ../cimy_uef_options.php:633
995
+ msgid "NOT PRESENT"
996
+ msgstr "NEM LÉTEZIK"
997
+
998
+ #: ../cimy_uef_options.php:579
999
+ msgid "WordPress Fields table"
1000
+ msgstr "WordPress mezők tábla"
1001
+
1002
+ #: ../cimy_uef_options.php:587
1003
+ #: ../cimy_uef_options.php:607
1004
+ #: ../cimy_uef_options.php:627
1005
+ msgid "Empty"
1006
+ msgstr "Kiürít"
1007
+
1008
+ #: ../cimy_uef_options.php:599
1009
+ msgid "Extra Fields table"
1010
+ msgstr "Extra mezők tábla"
1011
+
1012
+ #: ../cimy_uef_options.php:619
1013
+ msgid "Users Data table"
1014
+ msgstr "Felhasználói adatok tábla"
1015
+
1016
+ #: ../cimy_uef_options.php:630
1017
+ msgid "all data inserted by users in all and only extra fields"
1018
+ msgstr "minden felhasználók által felvitt adat az extra mezőknél"
1019
+
1020
+ #: ../cimy_uef_options.php:640
1021
+ msgid "Force tables creation"
1022
+ msgstr "Tábla létrehozás mindenképpen"
1023
+
1024
+ #: ../cimy_uef_options.php:644
1025
+ msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
1026
+ msgstr "Azonos a bővítmény ki- és bekapcsolásával. Semilyen más művelet nem lesz végrehajtva."
1027
+
1028
+ #: ../cimy_uef_options.php:650
1029
+ msgid "User Profile"
1030
+ msgstr "Felhasználói profil"
1031
+
1032
+ #: ../cimy_uef_options.php:653
1033
+ msgid "Extra Fields section title"
1034
+ msgstr "Extra mezők rész címe"
1035
+
1036
+ #: ../cimy_uef_options.php:657
1037
+ msgid "Fieldset's titles, separates with comma"
1038
+ msgstr "Mezőcsoport címek, vesszővel elválasztva"
1039
+
1040
+ #: ../cimy_uef_options.php:657
1041
+ msgid "example: title1,title2,title3"
1042
+ msgstr "Példa: cím 1, cím 2, cím 3"
1043
+
1044
+ #: ../cimy_uef_options.php:658
1045
+ msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
1046
+ msgstr "<strong>Megjegyzés:</strong> sorrend módosításkor és mezőcsoport törléskor, esetleg újra be kell sorolni az extra mezőket a mezőcsoportokba."
1047
+
1048
+ #: ../cimy_uef_options.php:663
1049
+ msgid "Authors &amp; Users Extended"
1050
+ msgstr "Szerzők és felhasználók kiegészítése"
1051
+
1052
+ #: ../cimy_uef_options.php:668
1053
+ msgid "Hide username field"
1054
+ msgstr "Felhasználónév mező elrejtése"
1055
+
1056
+ #: ../cimy_uef_options.php:675
1057
+ msgid "Hide name field"
1058
+ msgstr "Név mező elrejtése"
1059
+
1060
+ #: ../cimy_uef_options.php:682
1061
+ msgid "Hide email field"
1062
+ msgstr "Email mező elrejtése"
1063
+
1064
+ #: ../cimy_uef_options.php:689
1065
+ msgid "Hide role field"
1066
+ msgstr "Szerepkör mező elrejtése"
1067
+
1068
+ #: ../cimy_uef_options.php:696
1069
+ msgid "Hide website field"
1070
+ msgstr "Weboldal mező elrejtése"
1071
+
1072
+ #: ../cimy_uef_options.php:703
1073
+ msgid "Hide n. posts field"
1074
+ msgstr "n. bejegyzés mező elrejtése"
1075
+
1076
+ #: ../cimy_uef_options.php:709
1077
+ msgid "WordPress hidden fields"
1078
+ msgstr "WordPress rejtett mezők"
1079
+
1080
+ #: ../cimy_uef_options.php:715
1081
+ msgid "Show username"
1082
+ msgstr "Felhasználónév megjelenítése"
1083
+
1084
+ #: ../cimy_uef_options.php:717
1085
+ msgid "when unchecked the email address will be used as username"
1086
+ msgstr "Ha nincs bejelölve, akkor az emailcím lesz felhasználónévnek használva."
1087
+
1088
+ #: ../cimy_uef_options.php:723
1089
+ msgid "Show password"
1090
+ msgstr "Jelszó megjelenítése"
1091
+
1092
+ #: ../cimy_uef_options.php:730
1093
+ msgid "Show confirmation password"
1094
+ msgstr "Jelszó mégegyszer megjelenítése"
1095
+
1096
+ #: ../cimy_uef_options.php:737
1097
+ msgid "Show password strength meter"
1098
+ msgstr "Jelszó erősség mérő megjelenítése"
1099
+
1100
+ #: ../cimy_uef_options.php:744
1101
+ msgid "Show first name"
1102
+ msgstr "Keresztnév megjelenítése"
1103
+
1104
+ #: ../cimy_uef_options.php:751
1105
+ msgid "Show last name"
1106
+ msgstr "Családnév megjelenítése"
1107
+
1108
+ #: ../cimy_uef_options.php:758
1109
+ msgid "Show nickname"
1110
+ msgstr "Becenév megjelenítése"
1111
+
1112
+ #: ../cimy_uef_options.php:765
1113
+ msgid "Show website"
1114
+ msgstr "Weboldal megjelenítése"
1115
+
1116
+ #: ../cimy_uef_options.php:772
1117
+ msgid "Show AIM"
1118
+ msgstr "AIM megjelenítése"
1119
+
1120
+ #: ../cimy_uef_options.php:779
1121
+ msgid "Show Yahoo IM"
1122
+ msgstr "Yahoo IM megjelenítése"
1123
+
1124
+ #: ../cimy_uef_options.php:786
1125
+ msgid "Show Jabber / Google Talk"
1126
+ msgstr "Jabber / Google Talk megjelenítése"
1127
+
1128
+ #: ../cimy_uef_options.php:793
1129
+ msgid "Show Biographical Info"
1130
+ msgstr "Életrajz megjelenítése"
1131
+
1132
+ #: ../cimy_uef_missing_functions.php:16
1133
+ #, php-format
1134
+ msgid "File '%s' doesn't exist?"
1135
+ msgstr "A fájl '%s' nem létezik?"
1136
+
1137
+ #: ../cimy_uef_missing_functions.php:19
1138
+ msgid "The GD image library is not installed."
1139
+ msgstr "A GD kép könyvtár nincs telepítve."
1140
+
1141
+ #: ../cimy_uef_missing_functions.php:26
1142
+ #, php-format
1143
+ msgid "File '%s' is not an image."
1144
+ msgstr "A fájl '%s' nem kép."
1145
+
1146
+ #: ../cimy_uef_db.php:207
1147
+ 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!"
1148
+ msgstr "<strong>Megjegyzés:</strong> ez a weboldal engedi a jelszó módosítását; a regisztráció után kap egy e-mailt egy másik jelszóval, ne is törődjön vele!"
1149
+
1150
+ #: ../cimy_user_extra_fields.php:218
1151
+ msgid "Password"
1152
+ msgstr "Jelszó"
1153
+
1154
+ #: ../cimy_user_extra_fields.php:240
1155
+ msgid "Password confirmation"
1156
+ msgstr "Jelszó még egyszer"
1157
+
1158
+ #: ../cimy_user_extra_fields.php:262
1159
+ msgid "First name"
1160
+ msgstr "Utónév"
1161
+
1162
+ #: ../cimy_user_extra_fields.php:284
1163
+ msgid "Last name"
1164
+ msgstr "Vezetéknév"
1165
+
1166
+ #: ../cimy_user_extra_fields.php:306
1167
+ msgid "Nickname"
1168
+ msgstr "Becenév"
1169
+
1170
+ #: ../cimy_user_extra_fields.php:350
1171
+ msgid "AIM"
1172
+ msgstr "AIM"
1173
+
1174
+ #: ../cimy_user_extra_fields.php:372
1175
+ msgid "Yahoo IM"
1176
+ msgstr "Yahoo IM"
1177
+
1178
+ #: ../cimy_user_extra_fields.php:394
1179
+ msgid "Jabber / Google Talk"
1180
+ msgstr "Jabber / Google Talk"
1181
+
1182
+ #: ../cimy_user_extra_fields.php:416
1183
+ msgid "Biographical Info"
1184
+ msgstr "Életrajzi infó"
1185
+
1186
+ #: ../cimy_uef_functions.php:429
1187
+ msgid "no fieldset"
1188
+ msgstr "nincs mezőcsoport"
1189
+
1190
+ #: ../cimy_uef_functions.php:433
1191
+ msgid "All"
1192
+ msgstr "Mind"
1193
+
1194
+ #: ../cimy_uef_functions.php:1033
1195
+ msgid "Done"
1196
+ msgstr "Kész"
1197
+
1198
+ #: ../cimy_uef_functions.php:1034
1199
+ msgid "&laquo; Previous"
1200
+ msgstr "&laquo; előző"
1201
+
1202
+ #: ../cimy_uef_functions.php:1035
1203
+ msgid "Next &raquo;"
1204
+ msgstr "következő &raquo;"
1205
+
1206
+ #: ../cimy_uef_functions.php:1036
1207
+ msgid "Today"
1208
+ msgstr "Ma"
1209
+
1210
+ #: ../cimy_uef_functions.php:1039
1211
+ msgid "Select Month"
1212
+ msgstr "Hónap választása"
1213
+
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, recaptcha, captcha
6
  Requires at least: 3.1
7
- Tested up to: 4.0
8
- Stable tag: 2.6.3
9
 
10
  Add some useful fields to registration and user's info
11
 
4
  Website link: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
5
  Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar, recaptcha, captcha
6
  Requires at least: 3.1
7
+ Tested up to: 4.1
8
+ Stable tag: 2.6.4
9
 
10
  Add some useful fields to registration and user's info
11