Cimy User Extra Fields - Version 2.3.8

Version Description

Download this release

Release Info

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

Code changes from version 2.3.7 to 2.3.8

README_OFFICIAL.txt CHANGED
@@ -619,6 +619,12 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
619
 
620
 
621
  CHANGELOG:
 
 
 
 
 
 
622
  v2.3.7 - 05/03/2012
623
  - Fixed image/file/avatar upload on profile edit when Theme My Login - Themed profile is in use (introduced with v2.3.0) (thanks to Giovanni Gonzalez)
624
  - Fixed fields were showed anyways in the form confirmation even if they were not showed in the registration
619
 
620
 
621
  CHANGELOG:
622
+ v2.3.8 - 30/07/2012
623
+ - Fixed security issue where any site with [file|avatar|picture] extra fields is vulnerable by a possible remote code execution vulnerability present in all versions of the plug-in probably since v0.9.5
624
+ see: secunia.com/advisories/49975/ ('thanks' to the kid 'Crim3R' that in the need of popularity thought that exposing thousands of users was a better idea rather than responsibly email me first)
625
+ - Fixed image extensions are now restricted to what WordPress allows
626
+ - Fixed plug-in PHP error for people that have 'plugins' directory with a different name/location (thanks to anmari)
627
+
628
  v2.3.7 - 05/03/2012
629
  - Fixed image/file/avatar upload on profile edit when Theme My Login - Themed profile is in use (introduced with v2.3.0) (thanks to Giovanni Gonzalez)
630
  - Fixed fields were showed anyways in the form confirmation even if they were not showed in the registration
cimy_uef_functions.php CHANGED
@@ -897,4 +897,15 @@ function cimy_manage_upload($input_name, $user_login, $rules, $old_file=false, $
897
  return $data;
898
  }
899
 
 
 
 
 
 
 
 
 
 
 
 
900
  ?>
897
  return $data;
898
  }
899
 
900
+ function cimy_uef_get_allowed_image_extensions() {
901
+ $all_ext = get_allowed_mime_types();
902
+ $image_ext = array();
903
+ if (empty($all_ext))
904
+ return $image_ext;
905
+ foreach ($all_ext as $key=>$value)
906
+ if (stristr($value, "image/") !== false)
907
+ $image_ext = array_merge($image_ext, explode('|', $key));
908
+ return $image_ext;
909
+ }
910
+
911
  ?>
cimy_uef_profile.php CHANGED
@@ -308,8 +308,8 @@ function cimy_extract_ExtraFields() {
308
  else {
309
  // if we do not escape then some translations can break
310
  $warning_msg = $wpdb->escape(__("Please upload an image with one of the following extensions", $cimy_uef_domain));
311
-
312
- $obj_style = ' onchange="uploadFile(\'your-profile\', \''.$unique_id.'\', \''.$warning_msg.'\', Array(\'gif\', \'png\', \'jpg\', \'jpeg\', \'tiff\'));"';
313
  }
314
 
315
  if (cimy_uef_is_field_disabled($type, $rules['edit'], $old_value))
308
  else {
309
  // if we do not escape then some translations can break
310
  $warning_msg = $wpdb->escape(__("Please upload an image with one of the following extensions", $cimy_uef_domain));
311
+ $allowed_exts = "'".implode("','", cimy_uef_get_allowed_image_extensions())."'";
312
+ $obj_style = ' onchange="uploadFile(\'your-profile\', \''.$unique_id.'\', \''.$warning_msg.'\', Array('.$allowed_exts.'));"';
313
  }
314
 
315
  if (cimy_uef_is_field_disabled($type, $rules['edit'], $old_value))
cimy_uef_register.php CHANGED
@@ -403,21 +403,21 @@ function cimy_registration_check($user_login, $user_email, $errors) {
403
  // confirmation page
404
  if ((!empty($_POST["register_confirmation"])) && ($_POST["register_confirmation"] == 2)) {
405
  $file_size = $_POST[$field_id_data."_size"];
406
- $file_type = $_POST[$field_id_data."_type"];
407
  $old_file = "";
408
  $del_old_file = "";
409
  }
410
  else if (!empty($_FILES[$input_name])) {
411
  // filesize in Byte transformed in KiloByte
412
  $file_size = $_FILES[$input_name]['size'] / 1024;
413
- $file_type = $_FILES[$input_name]['type'];
414
  $value = $_FILES[$input_name]['name'];
415
  $old_file = $from_profile ? $_POST[$input_name."_".$field_id."_prev_value"] : '';
416
  $del_old_file = $from_profile ? $_POST[$input_name."_del"] : '';
417
  }
418
  else {
419
  $file_size = 0;
420
- $file_type = "";
421
  $value = "";
422
  $old_file = $from_profile ? $_POST[$input_name."_".$field_id."_prev_value"] : '';
423
  $del_old_file = $from_profile ? $_POST[$input_name."_del"] : '';
@@ -493,10 +493,27 @@ function cimy_registration_check($user_login, $user_email, $errors) {
493
 
494
  // CHECK IF IT IS A REAL PICTURE
495
  if (in_array($type, $cimy_uef_file_images_types)) {
496
- if ((stristr($file_type, "image/") === false) && (!empty($value))) {
 
 
 
 
 
 
497
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('should be an image.', $cimy_uef_domain));
498
  }
499
  }
 
 
 
 
 
 
 
 
 
 
 
500
 
501
  // MIN LEN
502
  if (isset($rules['min_length'])) {
@@ -918,8 +935,8 @@ function cimy_registration_form($errors=null, $show_type=0) {
918
  else {
919
  // if we do not escape then some translations can break
920
  $warning_msg = esc_js(__("Please upload an image with one of the following extensions", $cimy_uef_domain));
921
-
922
- $obj_checked = ' onchange="uploadFile(\'registerform\', \''.$unique_id.'\', \''.$warning_msg.'\', Array(\'gif\', \'png\', \'jpg\', \'jpeg\', \'tiff\'));"';
923
  }
924
 
925
  $obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).' </label>';
403
  // confirmation page
404
  if ((!empty($_POST["register_confirmation"])) && ($_POST["register_confirmation"] == 2)) {
405
  $file_size = $_POST[$field_id_data."_size"];
406
+ $file_type1 = $_POST[$field_id_data."_type"]; // this can be faked!
407
  $old_file = "";
408
  $del_old_file = "";
409
  }
410
  else if (!empty($_FILES[$input_name])) {
411
  // filesize in Byte transformed in KiloByte
412
  $file_size = $_FILES[$input_name]['size'] / 1024;
413
+ $file_type1 = $_FILES[$input_name]['type']; // this can be faked!
414
  $value = $_FILES[$input_name]['name'];
415
  $old_file = $from_profile ? $_POST[$input_name."_".$field_id."_prev_value"] : '';
416
  $del_old_file = $from_profile ? $_POST[$input_name."_del"] : '';
417
  }
418
  else {
419
  $file_size = 0;
420
+ $file_type1 = "";
421
  $value = "";
422
  $old_file = $from_profile ? $_POST[$input_name."_".$field_id."_prev_value"] : '';
423
  $del_old_file = $from_profile ? $_POST[$input_name."_del"] : '';
493
 
494
  // CHECK IF IT IS A REAL PICTURE
495
  if (in_array($type, $cimy_uef_file_images_types)) {
496
+ $allowed_mime_types = get_allowed_mime_types();
497
+ $ret = wp_check_filetype($value, $allowed_mime_types);
498
+ $file_type2 = "";
499
+ if (!empty($ret['type']))
500
+ $file_type2 = $ret['type'];
501
+
502
+ if (((stristr($file_type1, "image/") === false) || (stristr($file_type2, "image/") === false)) && (!empty($value))) {
503
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('should be an image.', $cimy_uef_domain));
504
  }
505
  }
506
+ else if (in_array($type, $cimy_uef_file_types)) {
507
+ $allowed_mime_types = get_allowed_mime_types();
508
+ $ret = wp_check_filetype($value, $allowed_mime_types);
509
+ $file_type2 = "";
510
+ if (!empty($ret['type']))
511
+ $file_type2 = $ret['type'];
512
+
513
+ if (empty($file_type2) && !empty($value)) {
514
+ $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('does not accept this file type.', $cimy_uef_domain));
515
+ }
516
+ }
517
 
518
  // MIN LEN
519
  if (isset($rules['min_length'])) {
935
  else {
936
  // if we do not escape then some translations can break
937
  $warning_msg = esc_js(__("Please upload an image with one of the following extensions", $cimy_uef_domain));
938
+ $allowed_exts = "'".implode("','", cimy_uef_get_allowed_image_extensions())."'";
939
+ $obj_checked = ' onchange="uploadFile(\'registerform\', \''.$unique_id.'\', \''.$warning_msg.'\', Array('.$allowed_exts.'));"';
940
  }
941
 
942
  $obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).' </label>';
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.3.7
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  License: GPL2
@@ -137,25 +137,15 @@ $cuef_plugin_name = basename(__FILE__);
137
  $cuef_plugin_path = plugin_basename(dirname(__FILE__))."/";
138
  $cuef_upload_path = WP_CONTENT_DIR."/Cimy_User_Extra_Fields/";
139
  $cuef_upload_webpath = content_url("Cimy_User_Extra_Fields/");
140
-
141
- if (is_multisite()) {
142
- $cuef_plugin_path = "Cimy_User_Extra_Fields/";
143
- $cuef_plugin_dir = WP_CONTENT_DIR."/".$cimy_uef_plugins_dir."/";
144
-
145
- if (!is_dir($cuef_plugin_dir.$cuef_plugin_path))
146
- $cuef_plugin_path = "cimy-user-extra-fields/";
147
-
148
- $cuef_plugin_dir.= $cuef_plugin_path;
149
- }
150
- else {
151
- $cuef_plugin_dir = WP_CONTENT_DIR."/plugins/".$cuef_plugin_path;
152
- }
153
-
154
- // let's use plugins_url to build urls, take in account https too
155
  $cimy_uef_plugins_dirprefix = "";
156
  if ($cimy_uef_plugins_dir == "mu-plugins")
157
- $cimy_uef_plugins_dirprefix = $cuef_plugin_path;
 
 
158
 
 
159
  $cuef_css_webpath = plugins_url($cimy_uef_plugins_dirprefix."css", __FILE__);
160
  $cuef_js_webpath = plugins_url($cimy_uef_plugins_dirprefix."js", __FILE__);
161
  $cuef_securimage_webpath = plugins_url($cimy_uef_plugins_dirprefix."securimage", __FILE__);
@@ -172,7 +162,7 @@ require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
172
  add_action('admin_init', 'cimy_uef_admin_init');
173
 
174
  $cimy_uef_name = "Cimy User Extra Fields";
175
- $cimy_uef_version = "2.3.7";
176
  $cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
177
  $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
178
 
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.3.8
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  License: GPL2
137
  $cuef_plugin_path = plugin_basename(dirname(__FILE__))."/";
138
  $cuef_upload_path = WP_CONTENT_DIR."/Cimy_User_Extra_Fields/";
139
  $cuef_upload_webpath = content_url("Cimy_User_Extra_Fields/");
140
+ // this is more accurate to detect plug-in path, some people might even rename /plugins/
141
+ $cuef_plugin_dir = plugin_dir_path(__FILE__);
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  $cimy_uef_plugins_dirprefix = "";
143
  if ($cimy_uef_plugins_dir == "mu-plugins")
144
+ $cimy_uef_plugins_dirprefix = "cimy-user-extra-fields/";
145
+
146
+ $cuef_plugin_dir.= $cimy_uef_plugins_dirprefix;
147
 
148
+ // let's use plugins_url function to build urls, takes in account https too
149
  $cuef_css_webpath = plugins_url($cimy_uef_plugins_dirprefix."css", __FILE__);
150
  $cuef_js_webpath = plugins_url($cimy_uef_plugins_dirprefix."js", __FILE__);
151
  $cuef_securimage_webpath = plugins_url($cimy_uef_plugins_dirprefix."securimage", __FILE__);
162
  add_action('admin_init', 'cimy_uef_admin_init');
163
 
164
  $cimy_uef_name = "Cimy User Extra Fields";
165
+ $cimy_uef_version = "2.3.8";
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-be_BY.mo CHANGED
Binary file
langs/cimy_uef-be_BY.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-12-26 17:13+0300\n"
6
- "PO-Revision-Date: 2011-12-26 17:13+0300\n"
7
- "Last-Translator: \n"
8
  "Language-Team: Web Geeks\n"
9
  "Language: \n"
10
  "MIME-Version: 1.0\n"
@@ -17,6 +17,149 @@ msgstr ""
17
  "X-Poedit-Basepath: .\n"
18
  "X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
21
  msgid "Add field"
22
  msgstr "Дадаць поле"
@@ -38,17 +181,17 @@ msgid "Change order"
38
  msgstr "Змяніць парадак"
39
 
40
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
41
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:830
42
  msgid "Min length"
43
  msgstr "Мін даўжыня"
44
 
45
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
46
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:831
47
  msgid "Exact length"
48
  msgstr "Дакладная даўжыня"
49
 
50
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
51
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:832
52
  msgid "Max length"
53
  msgstr "Макс даўжыня"
54
 
@@ -83,17 +226,17 @@ msgid "deleted correctly"
83
  msgstr "выдалены правільна"
84
 
85
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
86
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
87
  msgid "Min size"
88
  msgstr "Мін памер"
89
 
90
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:239
91
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
92
  msgid "Exact size"
93
  msgstr "Дакладны памер"
94
 
95
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
96
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
97
  msgid "Max size"
98
  msgstr "Макс памер"
99
 
@@ -168,285 +311,267 @@ msgid "Name inserted is just in the database, change to another one"
168
  msgstr "Устаўляемае імя ўжо ёсць у БД, абярыце іншае"
169
 
170
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:423
171
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:353
172
  msgid "Add a new Field"
173
  msgstr "Дадаць новае поле"
174
 
175
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:535
176
  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."
177
  msgstr "Для дадання новага поля вам неабходна задаць імя, тып і пазнаку; значэнне і апісанне. Правілы ўжываюцца падчас рэгістрацыі карыстача."
178
 
179
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:537
180
  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'"
181
  msgstr "З <strong>перамыкачом(radio)</strong> і <strong>сцяжкамі(checkbox)</strong>: <em>Значэнне</em> і <em>роўна ЧАМУ</em> можа быць або 'Yes', або 'No' - гэта азначае 'абрана' ці 'не абрана'"
182
 
183
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:538
184
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
185
  msgstr "З <strong>выпадальным спісам(drop-down)</strong>: вы можаце дадаць усе опцыі ў пазнаку, напрыклад: пазнака/элемент1,элемент2,элемент3"
186
 
187
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:539
188
  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"
189
  msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
190
 
191
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:540
192
  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)"
193
  msgstr "З <strong>picture-url</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; <em>роўная ЧАМУ</em> мае на ўвазе max шырыню для прэв'ю (вышыня будзе ўсталявана прапарцыйна)"
194
 
195
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:541
196
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
197
  msgstr "З <strong>датай рэгістрацыі(registration-date)</strong>: <em>роўная ЧАМУ</em> мае на ўвазе фармат даты і часу"
198
 
199
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:542
200
  #, fuzzy
201
  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"
202
  msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
203
 
204
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:543
205
  #, fuzzy
206
  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"
207
  msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
208
 
209
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:550
210
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
211
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
212
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:855
213
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1422
214
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1423
215
  msgid "Name"
216
  msgstr "Імя"
217
 
218
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:550
219
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
220
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
221
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:858
222
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1734
223
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1739
224
  msgid "Value"
225
  msgstr "Значэнне"
226
 
227
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:551
228
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:564
229
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:761
230
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:861
231
  msgid "Type"
232
  msgstr "Тып"
233
 
234
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:552
235
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
236
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:762
237
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:878
238
  msgid "Label"
239
  msgstr "Пазнака"
240
 
241
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:552
242
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:581
243
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:762
244
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:881
245
  msgid "Description"
246
  msgstr "Апісанне"
247
 
248
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:553
249
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:763
250
  msgid "Rules"
251
  msgstr "Кіравала"
252
 
253
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
254
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:764
255
  msgid "Actions"
256
  msgstr "Дзеянні"
257
 
258
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:575
259
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
260
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1176
261
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1259
262
  #, fuzzy
263
  msgid "Fieldset"
264
  msgstr "Палі"
265
 
266
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
267
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
268
  msgid "Can be empty"
269
  msgstr "Можа быць пустым"
270
 
271
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
272
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:896
273
  msgid "Check for E-mail syntax"
274
  msgstr "Праверка сінтаксісу E-mail"
275
 
276
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
277
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
278
  msgid "Can be modified"
279
  msgstr "Можа быць зменена"
280
 
281
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:598
282
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
283
  msgid "Can be modified only if empty"
284
  msgstr "Можа быць зменена толькі калі пустое"
285
 
286
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
287
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
288
  msgid "Can be modified only by admin"
289
  msgstr "Можа быць зменена толькі адмінам"
290
 
291
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
292
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:902
293
  msgid "Can be modified only by admin or if empty"
294
  msgstr "Можа быць зменена толькі адмінам ці калі пустое"
295
 
296
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:601
297
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:903
298
  msgid "Cannot be modified"
299
  msgstr "Не можа быць зменена"
300
 
301
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
302
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
303
  msgid "Should be equal TO"
304
  msgstr "Долднадолжно быць роўна ЧАМУ"
305
 
306
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:607
307
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:910
308
  msgid "Case sensitive"
309
  msgstr "Чуствительность да рэгістра"
310
 
311
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:610
312
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
313
  msgid "Regular Expression"
314
  msgstr ""
315
 
316
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
317
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
318
  msgid "Show the field in the registration"
319
  msgstr "Паказваць поле пры рэгістрацыі"
320
 
321
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
322
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:920
323
  msgid "Show the field in User's profile"
324
  msgstr "Паказваць поле ў профілі карыстача"
325
 
326
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
327
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:929
328
  #, fuzzy
329
  msgid "Show the field in Users Extended section"
330
  msgstr "Паказваць поле ў меню A&amp;прасунутых П"
331
 
332
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
333
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:932
334
  #, fuzzy
335
  msgid "Show the field in the search engine"
336
  msgstr "Паказваць поле пры рэгістрацыі"
337
 
338
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
339
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:935
340
  #, fuzzy
341
  msgid "Show the field in the blog"
342
  msgstr "Паказваць поле пры рэгістрацыі"
343
 
344
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:628
345
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:938
346
  #, fuzzy
347
  msgid "Show the field if the role is at least:"
348
  msgstr "Паказваць поле пры рэгістрацыі"
349
 
350
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
351
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:940
352
  msgid "Anonymous"
353
  msgstr ""
354
 
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:636
356
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
357
  msgid "User has 'view_cimy_extra_fields' capability"
358
  msgstr ""
359
 
360
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
361
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
362
  msgid "Send an email to the admin if the user changes its value"
363
  msgstr ""
364
 
365
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:643
366
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
367
  #, fuzzy
368
  msgid "Advanced options"
369
  msgstr "Дзеянні"
370
 
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:648
372
  msgid "Clear"
373
  msgstr "Ачысціць"
374
 
375
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:725
376
  msgid "Invert selection"
377
  msgstr "Инветировать выбар"
378
 
379
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:726
380
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
381
  msgstr "Вы сапраўды жадаеце выдаліць поле(я) і дадзеныя ўстаўленыя ў іх карыстачамі?"
382
 
383
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:732
384
  msgid "WordPress Fields"
385
  msgstr "WordPress Fields"
386
 
387
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:734
388
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1734
389
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1739
 
390
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
391
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:335
392
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:353
393
  msgid "Extra Fields"
394
  msgstr "Extra Fields"
395
 
396
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:745
397
  msgid "None!"
398
  msgstr "Не!"
399
 
400
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:760
401
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:843
402
  msgid "Order"
403
  msgstr "Парадак"
404
 
405
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:963
406
  msgid "Reset"
407
  msgstr "Скід"
408
 
409
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1010
410
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:437
411
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:441
412
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:455
413
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:476
414
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:488
415
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:495
416
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:506
417
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
418
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
419
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:530
420
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
421
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:546
422
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
423
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
424
- msgid "ERROR"
425
- msgstr "ПАМЫЛКА"
426
-
427
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1028
428
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:377
429
  msgid "SUCCESSFUL"
430
  msgstr "ПАСПЯХОВА"
431
 
432
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1047
433
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1761
434
  #, fuzzy
435
  msgid "select"
436
  msgstr "Выдаліць"
437
 
438
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1180
439
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1263
440
  #, fuzzy
441
  msgid "Users per page"
442
  msgstr "Табліца дадзеных карыстачоў"
443
 
444
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1182
445
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1265
446
  msgid "Apply"
447
  msgstr ""
448
 
449
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1339
450
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
451
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
452
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
@@ -454,287 +579,86 @@ msgstr ""
454
  msgid "Users Extended"
455
  msgstr "Спіс Аўтараў і прасунутых карыстачоў"
456
 
457
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1347
458
  #, php-format
459
  msgid "Search results for &#8220;%s&#8221;"
460
  msgstr ""
461
 
462
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1385
463
  #, php-format
464
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
465
  msgstr ""
466
 
467
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1394
468
  msgid "Search Users"
469
  msgstr ""
470
 
471
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
472
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1418
473
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:661
474
- msgid "Username"
475
- msgstr "Імя карыстача"
476
-
477
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1427
478
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1428
479
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:664
480
- msgid "E-mail"
481
- msgstr "E-mail"
482
-
483
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1432
484
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1433
485
  #, fuzzy
486
  msgid "Role"
487
  msgstr "Кіравала"
488
 
489
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1437
490
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1438
491
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:303
492
  msgid "Website"
493
  msgstr "Адрас сайта"
494
 
495
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
496
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1443
497
  msgid "Posts"
498
  msgstr "Паведамленні"
499
 
500
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1567
501
  msgid "View posts by this author"
502
  msgstr "Прагледзець паведамленні гэтага аўтара"
503
 
504
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1592
505
  msgid "Super Admin"
506
  msgstr ""
507
 
508
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1603
509
  #, php-format
510
  msgid "e-mail: %s"
511
  msgstr "e-mail: %s"
512
 
513
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1714
514
  #, fuzzy
515
  msgid "Change"
516
  msgstr "Змяніць парадак"
517
 
518
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1730
519
  #, fuzzy
520
  msgid "Update selected users"
521
  msgstr "Выдаліць абраныя палі"
522
 
523
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1751
524
  #, fuzzy
525
  msgid "Update"
526
  msgstr "Абнавіць поле"
527
 
528
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1766
529
  msgid "OK"
530
  msgstr ""
531
 
532
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1767
533
  msgid "Cancel"
534
  msgstr ""
535
 
536
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
537
- 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!"
 
538
  msgstr ""
539
 
540
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
541
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:330
542
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
543
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
 
 
544
  #, fuzzy, php-format
545
  msgid "Username: %s"
546
  msgstr "Імя карыстача"
547
 
548
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
549
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:331
550
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
551
- #, php-format
552
- msgid "Password: %s"
553
- msgstr ""
554
-
555
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
556
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:350
557
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
558
- msgid "Options"
559
- msgstr "Налады"
560
-
561
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:429
562
- #, fuzzy
563
- msgid "no fieldset"
564
- msgstr "Пункты палёў"
565
-
566
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:433
567
- msgid "All"
568
- msgstr ""
569
-
570
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:203
571
- msgid "Password"
572
- msgstr ""
573
-
574
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:223
575
- msgid "Password confirmation"
576
- msgstr ""
577
-
578
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:243
579
- #, fuzzy
580
- msgid "First name"
581
- msgstr "Паказаць імя"
582
-
583
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:263
584
- #, fuzzy
585
- msgid "Last name"
586
- msgstr "Паказаць прозвішча"
587
-
588
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:283
589
- #, fuzzy
590
- msgid "Nickname"
591
- msgstr "Імя"
592
-
593
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:323
594
- msgid "AIM"
595
- msgstr ""
596
-
597
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:343
598
- #, fuzzy
599
- msgid "Yahoo IM"
600
- msgstr "Паказаць Yahoo IM"
601
-
602
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:363
603
- #, fuzzy
604
- msgid "Jabber / Google Talk"
605
- msgstr "Паказаць Jabber / Google Talk"
606
-
607
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:383
608
- msgid "Biographical Info"
609
- msgstr ""
610
-
611
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:437
612
- msgid "does not match."
613
- msgstr ""
614
-
615
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:441
616
- msgid "hasn&#8217;t a correct email syntax."
617
- msgstr "не дакладна ўведзены email."
618
-
619
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:455
620
- msgid "couldn&#8217;t be empty."
621
- msgstr "не можа быць пустым."
622
-
623
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:475
624
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:484
625
- msgid "isn&#8217;t correct"
626
- msgstr "не дакладна"
627
-
628
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:481
629
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:938
630
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:941
631
- msgid "YES"
632
- msgstr "ТАК"
633
-
634
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:481
635
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:938
636
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:941
637
- msgid "NO"
638
- msgstr "НЕ"
639
-
640
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:486
641
- msgid "should be"
642
- msgstr "павінна быць"
643
-
644
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:495
645
- msgid "should be an image."
646
- msgstr "павінен быць малюнак."
647
-
648
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:506
649
- msgid "couldn&#8217;t have size less than"
650
- msgstr "не можа мець памер "
651
-
652
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
653
- msgid "couldn&#8217;t have length less than"
654
- msgstr "не можа мець даўжыню "
655
-
656
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
657
- msgid "couldn&#8217;t have size different than"
658
- msgstr "не можа мець памер выдатны ад"
659
-
660
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:530
661
- msgid "couldn&#8217;t have length different than"
662
- msgstr "не можа мець даўжыню выдатную ад"
663
-
664
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:541
665
- msgid "couldn&#8217;t have size more than"
666
- msgstr "мае памер больш чым"
667
-
668
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:546
669
- msgid "couldn&#8217;t have length more than"
670
- msgstr "мае даўжыню больш чым"
671
-
672
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:587
673
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
674
- msgid "Typed code is not correct."
675
- msgstr ""
676
-
677
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:912
678
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:302
679
- #, fuzzy
680
- msgid "Please upload a file with one of the following extensions"
681
- msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
682
-
683
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:918
684
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:274
685
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:308
686
- msgid "Please upload an image with one of the following extensions"
687
- msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
688
-
689
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1091
690
- msgid "Strength indicator"
691
- msgstr ""
692
-
693
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1092
694
- 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; )."
695
- msgstr ""
696
-
697
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1131
698
- #, fuzzy
699
- msgid "Change image"
700
- msgstr "Змяніць парадак"
701
-
702
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1134
703
- msgid "Insert the code:"
704
- msgstr ""
705
-
706
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1206
707
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1208
708
- msgid "Confirm your registration"
709
- msgstr ""
710
-
711
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1214
712
- msgid "A password will be e-mailed to you."
713
- msgstr ""
714
-
715
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1222
716
- msgid "&larr; Back"
717
- msgstr ""
718
-
719
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
720
- #, php-format
721
- msgid "File '%s' doesn't exist?"
722
- msgstr ""
723
-
724
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
725
- msgid "The GD image library is not installed."
726
- msgstr ""
727
-
728
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
729
- #, php-format
730
- msgid "File '%s' is not an image."
731
- msgstr ""
732
-
733
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
734
- #, php-format
735
- msgid "New user registration on your site %s:"
736
- msgstr ""
737
-
738
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
739
  #, fuzzy, php-format
740
  msgid "E-mail: %s"
@@ -783,6 +707,13 @@ msgstr ""
783
  msgid "An error occurred during the activation"
784
  msgstr ""
785
 
 
 
 
 
 
 
 
786
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
787
  msgid "Invalid activation key."
788
  msgstr ""
@@ -811,6 +742,51 @@ msgstr ""
811
  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."
812
  msgstr ""
813
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
814
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:44
815
  msgid "WordPress Fields table emptied"
816
  msgstr "Табліца WordPress Fields вычышчана"
@@ -847,328 +823,361 @@ msgstr "Налады выдалены"
847
  msgid "Options changed"
848
  msgstr "Налады зменены"
849
 
850
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:341
851
  msgid "This operation will create/update all missing tables/options, do you want to proceed?"
852
  msgstr ""
853
 
854
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:359
855
  msgid "Support the Cimy Project"
856
  msgstr ""
857
 
858
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
859
  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!"
860
  msgstr ""
861
 
862
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
863
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
864
  msgid "Save Changes"
865
  msgstr ""
866
 
867
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:392
868
  msgid "General"
869
  msgstr "Галоўнае"
870
 
871
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:400
872
  msgid "installed is"
873
  msgstr "усталявана"
874
 
875
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:404
876
  msgid "OPTIONS DELETED!"
877
  msgstr "НАЛАДЫ ВЫДАЛЕНЫ!"
878
 
879
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:407
880
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:412
881
  msgid "Fix the problem"
882
  msgstr ""
883
 
884
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:410
885
  msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
886
  msgstr "ВЕРСІІ НЕ СУПАДАЮЦЬ! Гэта з-за таго, што Вы не дэактывавалі, а затым актывавалі ўбудову пасля абнаўлення! Могуць паўстаць праблемы..."
887
 
888
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
889
  msgid "Picture/Avatar upload"
890
  msgstr ""
891
 
892
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:422
893
  msgid "is created and writable"
894
  msgstr ""
895
 
896
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
897
  msgid "is NOT created or webserver does NOT have permission to write on it"
898
  msgstr ""
899
 
900
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:431
901
  #, fuzzy
902
  msgid "Show all fields in the welcome email"
903
  msgstr "Паказваць поле пры рэгістрацыі"
904
 
905
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:435
906
  msgid "the email sent to the admin and to the user upon registration will have all fields"
907
  msgstr ""
908
 
909
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:443
910
  msgid "Enable email confirmation"
911
  msgstr ""
912
 
913
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:447
914
  msgid "user that registers should confirm its email address via a link click"
915
  msgstr ""
916
 
917
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
918
  msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
919
  msgstr ""
920
 
921
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:456
922
  msgid "Enable form confirmation"
923
  msgstr ""
924
 
925
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:460
926
  msgid "a summary of the registration form will be presented to the user"
927
  msgstr ""
928
 
929
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:466
930
  msgid "Customize welcome email sent to the new user"
931
  msgstr ""
932
 
933
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
934
  msgid "if you change or remove the placeholders then the email won't have the correct information"
935
  msgstr ""
936
 
937
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:476
938
  msgid "Redirect to the source"
939
  msgstr ""
940
 
941
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
942
  msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
943
  msgstr ""
944
 
945
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:488
946
  msgid "No captcha"
947
  msgstr ""
948
 
949
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:496
950
  msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
951
  msgstr ""
952
 
953
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
954
  msgid "Public KEY"
955
  msgstr ""
956
 
957
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:504
958
  msgid "Private KEY"
959
  msgstr ""
960
 
961
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:512
962
  msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
963
  msgstr ""
964
 
965
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:515
966
  msgid "This captcha is probably weaker, but is easier for users"
967
  msgstr ""
968
 
969
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:519
970
  #, php-format
971
  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>"
972
  msgstr ""
973
 
974
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
975
  msgid "Change login/registration page logo"
976
  msgstr ""
977
 
978
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:531
979
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:450
980
- #, fuzzy
981
- msgid "Delete the picture"
982
- msgstr "Выдаліць поле"
983
-
984
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
985
  msgid "Maximum recommended logo width is 328px, but any height should work."
986
  msgstr ""
987
 
988
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
989
  msgid "Database"
990
  msgstr "База дадзеных"
991
 
992
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
993
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:566
994
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:583
995
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:600
996
  msgid "select action"
997
  msgstr "абярыце дзеянне"
998
 
999
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:550
1000
  msgid "Default values"
1001
  msgstr "Значэнні па-змаўчанню"
1002
 
1003
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
1004
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
1005
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:585
1006
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:602
1007
  msgid "Delete"
1008
  msgstr "Выдаліць"
1009
 
1010
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
1011
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:572
1012
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
1013
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:607
1014
  msgid "NOT PRESENT"
1015
  msgstr "НЕ ІСНУЕ"
1016
 
1017
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:560
1018
  msgid "WordPress Fields table"
1019
  msgstr "Табліца WordPress Fields"
1020
 
1021
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:567
1022
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:584
1023
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:601
1024
  msgid "Empty"
1025
  msgstr "Ачысціць"
1026
 
1027
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:577
1028
  msgid "Extra Fields table"
1029
  msgstr "Табліца Extra Fields"
1030
 
1031
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:594
1032
  msgid "Users Data table"
1033
  msgstr "Табліца дадзеных карыстачоў"
1034
 
1035
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:604
1036
  msgid "all data inserted by users in all and only extra fields"
1037
  msgstr "усе дадзеныя, устаўленыя карыстачамі ва ўсё і толькі ў дадатковыя палі"
1038
 
1039
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:612
1040
  msgid "Force tables creation"
1041
  msgstr "Force tables creation"
1042
 
1043
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:615
1044
  msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
1045
  msgstr ""
1046
 
1047
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
1048
  msgid "User Profile"
1049
  msgstr "Профіль карыстача"
1050
 
1051
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:624
1052
  #, fuzzy
1053
  msgid "Extra Fields section title"
1054
  msgstr "Табліца Extra Fields"
1055
 
1056
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:628
1057
  msgid "Fieldset's titles, separates with comma"
1058
  msgstr "Назвы палёў праз коску"
1059
 
1060
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:628
1061
  msgid "example: title1,title2,title3"
1062
  msgstr "прыклад: заголовок1,заголовок2, заголовок3"
1063
 
1064
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
1065
  msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
1066
  msgstr ""
1067
 
1068
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:634
1069
  msgid "Authors &amp; Users Extended"
1070
  msgstr "Аўтары і Прасунутыя карыстачы"
1071
 
1072
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
1073
  msgid "Hide username field"
1074
  msgstr "Схаваць поле з імем карыстача"
1075
 
1076
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
1077
  msgid "Hide name field"
1078
  msgstr "Схаваць поле з імем"
1079
 
1080
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:649
1081
  msgid "Hide email field"
1082
  msgstr "Схаваць поле з email"
1083
 
1084
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
1085
  #, fuzzy
1086
  msgid "Hide role field"
1087
  msgstr "Схаваць поле з імем"
1088
 
1089
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:657
1090
  msgid "Hide website field"
1091
  msgstr "Схаваць поле з адрасам сайта"
1092
 
1093
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
1094
  msgid "Hide n. posts field"
1095
  msgstr "Схаваць поле з № пастоў"
1096
 
1097
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:666
1098
  msgid "WordPress hidden fields"
1099
  msgstr "Утоеныя палі WordPress"
1100
 
1101
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:669
1102
  msgid "Show password"
1103
  msgstr ""
1104
 
1105
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
1106
  msgid "Show confirmation password"
1107
  msgstr ""
1108
 
1109
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:677
1110
  msgid "Show password strength meter"
1111
  msgstr ""
1112
 
1113
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
1114
  msgid "Show first name"
1115
  msgstr "Паказаць імя"
1116
 
1117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
1118
  msgid "Show last name"
1119
  msgstr "Паказаць прозвішча"
1120
 
1121
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
1122
  msgid "Show nickname"
1123
  msgstr "Паказаць нік"
1124
 
1125
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
1126
  msgid "Show website"
1127
  msgstr "Паказаць адрас сайта"
1128
 
1129
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
1130
  msgid "Show AIM"
1131
  msgstr "Паказаць AIM"
1132
 
1133
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
1134
  msgid "Show Yahoo IM"
1135
  msgstr "Паказаць Yahoo IM"
1136
 
1137
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
1138
  msgid "Show Jabber / Google Talk"
1139
  msgstr "Паказаць Jabber / Google Talk"
1140
 
1141
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
1142
  msgid "Show Biographical Info"
1143
  msgstr ""
1144
 
1145
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:446
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1146
  #, fuzzy
1147
- msgid "Delete the file"
1148
- msgstr "Выдаліць поле"
1149
 
1150
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
1151
  #, fuzzy
1152
- msgid "Update the file"
1153
- msgstr "Абнавіць поле"
1154
 
1155
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:451
1156
  #, fuzzy
1157
- msgid "Update the picture"
1158
- msgstr "Абнавіць поле"
1159
 
1160
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:471
1161
- msgid "Picture URL:"
1162
  msgstr ""
1163
 
1164
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:720
1165
- #, php-format
1166
- msgid "%s previous value: %s new value: %s"
 
 
 
 
 
 
 
 
 
1167
  msgstr ""
1168
 
1169
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
1170
- #, php-format
1171
- msgid "%s (%s) has changed one or more fields"
 
 
 
 
1172
  msgstr ""
1173
 
1174
  #~ msgid "A&amp;U Extended"
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-07-29 00:32-0800\n"
6
+ "PO-Revision-Date: 2012-07-29 00:32-0800\n"
7
+ "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: Web Geeks\n"
9
  "Language: \n"
10
  "MIME-Version: 1.0\n"
17
  "X-Poedit-Basepath: .\n"
18
  "X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
19
 
20
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
21
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
22
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
23
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
24
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
25
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:503
26
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
27
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
28
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
29
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:543
30
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:549
31
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:560
32
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:565
33
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:606
34
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:614
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1014
36
+ msgid "ERROR"
37
+ msgstr "ПАМЫЛКА"
38
+
39
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
40
+ msgid "does not match."
41
+ msgstr ""
42
+
43
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
44
+ msgid "hasn&#8217;t a correct email syntax."
45
+ msgstr "не дакладна ўведзены email."
46
+
47
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
48
+ msgid "couldn&#8217;t be empty."
49
+ msgstr "не можа быць пустым."
50
+
51
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:477
52
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:486
53
+ msgid "isn&#8217;t correct"
54
+ msgstr "не дакладна"
55
+
56
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:960
59
+ msgid "YES"
60
+ msgstr "ТАК"
61
+
62
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:960
65
+ msgid "NO"
66
+ msgstr "НЕ"
67
+
68
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:488
69
+ msgid "should be"
70
+ msgstr "павінна быць"
71
+
72
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:503
73
+ msgid "should be an image."
74
+ msgstr "павінен быць малюнак."
75
+
76
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
77
+ msgid "does not accept this file type."
78
+ msgstr ""
79
+
80
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
81
+ msgid "couldn&#8217;t have size less than"
82
+ msgstr "не можа мець памер "
83
+
84
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
85
+ msgid "couldn&#8217;t have length less than"
86
+ msgstr "не можа мець даўжыню "
87
+
88
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:543
89
+ msgid "couldn&#8217;t have size different than"
90
+ msgstr "не можа мець памер выдатны ад"
91
+
92
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:549
93
+ msgid "couldn&#8217;t have length different than"
94
+ msgstr "не можа мець даўжыню выдатную ад"
95
+
96
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:560
97
+ msgid "couldn&#8217;t have size more than"
98
+ msgstr "мае памер больш чым"
99
+
100
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:565
101
+ msgid "couldn&#8217;t have length more than"
102
+ msgstr "мае даўжыню больш чым"
103
+
104
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:606
105
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:614
106
+ msgid "Typed code is not correct."
107
+ msgstr ""
108
+
109
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:680
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1421
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1422
112
+ msgid "Username"
113
+ msgstr "Імя карыстача"
114
+
115
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:683
116
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1431
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1432
118
+ msgid "E-mail"
119
+ msgstr "E-mail"
120
+
121
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:931
122
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:304
123
+ #, fuzzy
124
+ msgid "Please upload a file with one of the following extensions"
125
+ msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
126
+
127
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:937
128
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
129
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:274
130
+ msgid "Please upload an image with one of the following extensions"
131
+ msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
132
+
133
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1110
134
+ msgid "Strength indicator"
135
+ msgstr ""
136
+
137
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1111
138
+ msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
139
+ msgstr ""
140
+
141
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1150
142
+ #, fuzzy
143
+ msgid "Change image"
144
+ msgstr "Змяніць парадак"
145
+
146
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1153
147
+ msgid "Insert the code:"
148
+ msgstr ""
149
+
150
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1227
152
+ msgid "Confirm your registration"
153
+ msgstr ""
154
+
155
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1233
156
+ msgid "A password will be e-mailed to you."
157
+ msgstr ""
158
+
159
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1241
160
+ msgid "&larr; Back"
161
+ msgstr ""
162
+
163
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
164
  msgid "Add field"
165
  msgstr "Дадаць поле"
181
  msgstr "Змяніць парадак"
182
 
183
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
184
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
185
  msgid "Min length"
186
  msgstr "Мін даўжыня"
187
 
188
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
189
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
190
  msgid "Exact length"
191
  msgstr "Дакладная даўжыня"
192
 
193
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
194
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
195
  msgid "Max length"
196
  msgstr "Макс даўжыня"
197
 
226
  msgstr "выдалены правільна"
227
 
228
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
229
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:826
230
  msgid "Min size"
231
  msgstr "Мін памер"
232
 
233
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:239
234
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:827
235
  msgid "Exact size"
236
  msgstr "Дакладны памер"
237
 
238
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
239
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:828
240
  msgid "Max size"
241
  msgstr "Макс памер"
242
 
311
  msgstr "Устаўляемае імя ўжо ёсць у БД, абярыце іншае"
312
 
313
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:423
314
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:359
315
  msgid "Add a new Field"
316
  msgstr "Дадаць новае поле"
317
 
318
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:539
319
  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."
320
  msgstr "Для дадання новага поля вам неабходна задаць імя, тып і пазнаку; значэнне і апісанне. Правілы ўжываюцца падчас рэгістрацыі карыстача."
321
 
322
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:541
323
  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'"
324
  msgstr "З <strong>перамыкачом(radio)</strong> і <strong>сцяжкамі(checkbox)</strong>: <em>Значэнне</em> і <em>роўна ЧАМУ</em> можа быць або 'Yes', або 'No' - гэта азначае 'абрана' ці 'не абрана'"
325
 
326
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:542
327
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
328
  msgstr "З <strong>выпадальным спісам(drop-down)</strong>: вы можаце дадаць усе опцыі ў пазнаку, напрыклад: пазнака/элемент1,элемент2,элемент3"
329
 
330
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:543
331
  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"
332
  msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
333
 
334
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:544
335
  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)"
336
  msgstr "З <strong>picture-url</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; <em>роўная ЧАМУ</em> мае на ўвазе max шырыню для прэв'ю (вышыня будзе ўсталявана прапарцыйна)"
337
 
338
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:545
339
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
340
  msgstr "З <strong>датай рэгістрацыі(registration-date)</strong>: <em>роўная ЧАМУ</em> мае на ўвазе фармат даты і часу"
341
 
342
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:546
343
  #, fuzzy
344
  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"
345
  msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
346
 
347
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:547
348
  #, fuzzy
349
  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"
350
  msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
351
 
352
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
353
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:564
354
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
355
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
356
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1426
357
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1427
358
  msgid "Name"
359
  msgstr "Імя"
360
 
361
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
362
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:565
363
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
364
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
365
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1738
366
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
367
  msgid "Value"
368
  msgstr "Значэнне"
369
 
370
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
371
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
372
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
373
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:865
374
  msgid "Type"
375
  msgstr "Тып"
376
 
377
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
378
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:584
379
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
380
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:882
381
  msgid "Label"
382
  msgstr "Пазнака"
383
 
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
385
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:585
386
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
387
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:885
388
  msgid "Description"
389
  msgstr "Апісанне"
390
 
391
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
392
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:767
393
  msgid "Rules"
394
  msgstr "Кіравала"
395
 
396
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
397
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:768
398
  msgid "Actions"
399
  msgstr "Дзеянні"
400
 
401
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
402
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:876
403
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1180
404
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1263
405
  #, fuzzy
406
  msgid "Fieldset"
407
  msgstr "Палі"
408
 
409
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
410
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
411
  msgid "Can be empty"
412
  msgstr "Можа быць пустым"
413
 
414
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:598
415
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
416
  msgid "Check for E-mail syntax"
417
  msgstr "Праверка сінтаксісу E-mail"
418
 
419
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:601
420
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:903
421
  msgid "Can be modified"
422
  msgstr "Можа быць зменена"
423
 
424
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
425
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:904
426
  msgid "Can be modified only if empty"
427
  msgstr "Можа быць зменена толькі калі пустое"
428
 
429
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
430
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:905
431
  msgid "Can be modified only by admin"
432
  msgstr "Можа быць зменена толькі адмінам"
433
 
434
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
435
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:906
436
  msgid "Can be modified only by admin or if empty"
437
  msgstr "Можа быць зменена толькі адмінам ці калі пустое"
438
 
439
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
440
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
441
  msgid "Cannot be modified"
442
  msgstr "Не можа быць зменена"
443
 
444
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
445
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
446
  msgid "Should be equal TO"
447
  msgstr "Долднадолжно быць роўна ЧАМУ"
448
 
449
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:611
450
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:914
451
  msgid "Case sensitive"
452
  msgstr "Чуствительность да рэгістра"
453
 
454
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
455
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
456
  msgid "Regular Expression"
457
  msgstr ""
458
 
459
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
460
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
461
  msgid "Show the field in the registration"
462
  msgstr "Паказваць поле пры рэгістрацыі"
463
 
464
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
465
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
466
  msgid "Show the field in User's profile"
467
  msgstr "Паказваць поле ў профілі карыстача"
468
 
469
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
470
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
471
  #, fuzzy
472
  msgid "Show the field in Users Extended section"
473
  msgstr "Паказваць поле ў меню A&amp;прасунутых П"
474
 
475
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
476
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
477
  #, fuzzy
478
  msgid "Show the field in the search engine"
479
  msgstr "Паказваць поле пры рэгістрацыі"
480
 
481
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
482
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
483
  #, fuzzy
484
  msgid "Show the field in the blog"
485
  msgstr "Паказваць поле пры рэгістрацыі"
486
 
487
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
488
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
489
  #, fuzzy
490
  msgid "Show the field if the role is at least:"
491
  msgstr "Паказваць поле пры рэгістрацыі"
492
 
493
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
494
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
495
  msgid "Anonymous"
496
  msgstr ""
497
 
498
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
499
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:950
500
  msgid "User has 'view_cimy_extra_fields' capability"
501
  msgstr ""
502
 
503
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
504
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:958
505
  msgid "Send an email to the admin if the user changes its value"
506
  msgstr ""
507
 
508
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:647
509
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:963
510
  #, fuzzy
511
  msgid "Advanced options"
512
  msgstr "Дзеянні"
513
 
514
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
515
  msgid "Clear"
516
  msgstr "Ачысціць"
517
 
518
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
519
  msgid "Invert selection"
520
  msgstr "Инветировать выбар"
521
 
522
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
523
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
524
  msgstr "Вы сапраўды жадаеце выдаліць поле(я) і дадзеныя ўстаўленыя ў іх карыстачамі?"
525
 
526
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:736
527
  msgid "WordPress Fields"
528
  msgstr "WordPress Fields"
529
 
530
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:738
531
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1738
532
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
533
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:359
534
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
535
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:335
 
536
  msgid "Extra Fields"
537
  msgstr "Extra Fields"
538
 
539
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
540
  msgid "None!"
541
  msgstr "Не!"
542
 
543
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:764
544
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
545
  msgid "Order"
546
  msgstr "Парадак"
547
 
548
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:967
549
  msgid "Reset"
550
  msgstr "Скід"
551
 
552
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
553
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:383
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
554
  msgid "SUCCESSFUL"
555
  msgstr "ПАСПЯХОВА"
556
 
557
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1051
558
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
559
  #, fuzzy
560
  msgid "select"
561
  msgstr "Выдаліць"
562
 
563
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1184
564
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1267
565
  #, fuzzy
566
  msgid "Users per page"
567
  msgstr "Табліца дадзеных карыстачоў"
568
 
569
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1186
570
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1269
571
  msgid "Apply"
572
  msgstr ""
573
 
574
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1343
575
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
576
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
577
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
579
  msgid "Users Extended"
580
  msgstr "Спіс Аўтараў і прасунутых карыстачоў"
581
 
582
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1351
583
  #, php-format
584
  msgid "Search results for &#8220;%s&#8221;"
585
  msgstr ""
586
 
587
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1389
588
  #, php-format
589
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
590
  msgstr ""
591
 
592
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
593
  msgid "Search Users"
594
  msgstr ""
595
 
596
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1436
597
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1437
 
 
 
 
 
 
 
 
 
 
 
 
598
  #, fuzzy
599
  msgid "Role"
600
  msgstr "Кіравала"
601
 
602
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1441
603
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
604
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:298
605
  msgid "Website"
606
  msgstr "Адрас сайта"
607
 
608
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1446
609
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1447
610
  msgid "Posts"
611
  msgstr "Паведамленні"
612
 
613
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1571
614
  msgid "View posts by this author"
615
  msgstr "Прагледзець паведамленні гэтага аўтара"
616
 
617
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
618
  msgid "Super Admin"
619
  msgstr ""
620
 
621
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1607
622
  #, php-format
623
  msgid "e-mail: %s"
624
  msgstr "e-mail: %s"
625
 
626
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1718
627
  #, fuzzy
628
  msgid "Change"
629
  msgstr "Змяніць парадак"
630
 
631
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1734
632
  #, fuzzy
633
  msgid "Update selected users"
634
  msgstr "Выдаліць абраныя палі"
635
 
636
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1755
637
  #, fuzzy
638
  msgid "Update"
639
  msgstr "Абнавіць поле"
640
 
641
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1770
642
  msgid "OK"
643
  msgstr ""
644
 
645
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1771
646
  msgid "Cancel"
647
  msgstr ""
648
 
649
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
650
+ #, php-format
651
+ msgid "New user registration on your site %s:"
652
  msgstr ""
653
 
 
 
654
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
655
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
656
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
657
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:330
658
  #, fuzzy, php-format
659
  msgid "Username: %s"
660
  msgstr "Імя карыстача"
661
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
662
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
663
  #, fuzzy, php-format
664
  msgid "E-mail: %s"
707
  msgid "An error occurred during the activation"
708
  msgstr ""
709
 
710
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
711
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
712
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:331
713
+ #, php-format
714
+ msgid "Password: %s"
715
+ msgstr ""
716
+
717
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
718
  msgid "Invalid activation key."
719
  msgstr ""
742
  msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
743
  msgstr ""
744
 
745
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:141
746
+ msgid "(required)"
747
+ msgstr ""
748
+
749
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:448
750
+ #, fuzzy
751
+ msgid "Delete the file"
752
+ msgstr "Выдаліць поле"
753
+
754
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:449
755
+ #, fuzzy
756
+ msgid "Update the file"
757
+ msgstr "Абнавіць поле"
758
+
759
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:452
760
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
761
+ #, fuzzy
762
+ msgid "Delete the picture"
763
+ msgstr "Выдаліць поле"
764
+
765
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:453
766
+ #, fuzzy
767
+ msgid "Update the picture"
768
+ msgstr "Абнавіць поле"
769
+
770
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:473
771
+ msgid "Picture URL:"
772
+ msgstr ""
773
+
774
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:722
775
+ #, php-format
776
+ msgid "%s previous value: %s new value: %s"
777
+ msgstr ""
778
+
779
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:737
780
+ #, php-format
781
+ msgid "%s (%s) has changed one or more fields"
782
+ msgstr ""
783
+
784
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
785
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:356
786
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
787
+ msgid "Options"
788
+ msgstr "Налады"
789
+
790
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:44
791
  msgid "WordPress Fields table emptied"
792
  msgstr "Табліца WordPress Fields вычышчана"
823
  msgid "Options changed"
824
  msgstr "Налады зменены"
825
 
826
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
827
  msgid "This operation will create/update all missing tables/options, do you want to proceed?"
828
  msgstr ""
829
 
830
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:365
831
  msgid "Support the Cimy Project"
832
  msgstr ""
833
 
834
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
835
  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!"
836
  msgstr ""
837
 
838
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:397
839
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
840
  msgid "Save Changes"
841
  msgstr ""
842
 
843
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:398
844
  msgid "General"
845
  msgstr "Галоўнае"
846
 
847
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
848
  msgid "installed is"
849
  msgstr "усталявана"
850
 
851
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:410
852
  msgid "OPTIONS DELETED!"
853
  msgstr "НАЛАДЫ ВЫДАЛЕНЫ!"
854
 
855
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
856
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
857
  msgid "Fix the problem"
858
  msgstr ""
859
 
860
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:416
861
  msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
862
  msgstr "ВЕРСІІ НЕ СУПАДАЮЦЬ! Гэта з-за таго, што Вы не дэактывавалі, а затым актывавалі ўбудову пасля абнаўлення! Могуць паўстаць праблемы..."
863
 
864
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
865
  msgid "Picture/Avatar upload"
866
  msgstr ""
867
 
868
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:428
869
  msgid "is created and writable"
870
  msgstr ""
871
 
872
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:430
873
  msgid "is NOT created or webserver does NOT have permission to write on it"
874
  msgstr ""
875
 
876
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:437
877
  #, fuzzy
878
  msgid "Show all fields in the welcome email"
879
  msgstr "Паказваць поле пры рэгістрацыі"
880
 
881
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:441
882
  msgid "the email sent to the admin and to the user upon registration will have all fields"
883
  msgstr ""
884
 
885
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
886
  msgid "Enable email confirmation"
887
  msgstr ""
888
 
889
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
890
  msgid "user that registers should confirm its email address via a link click"
891
  msgstr ""
892
 
893
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:455
894
  msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
895
  msgstr ""
896
 
897
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:462
898
  msgid "Enable form confirmation"
899
  msgstr ""
900
 
901
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:466
902
  msgid "a summary of the registration form will be presented to the user"
903
  msgstr ""
904
 
905
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:472
906
  msgid "Customize welcome email sent to the new user"
907
  msgstr ""
908
 
909
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:476
910
  msgid "if you change or remove the placeholders then the email won't have the correct information"
911
  msgstr ""
912
 
913
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
914
  msgid "Redirect to the source"
915
  msgstr ""
916
 
917
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
918
  msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
919
  msgstr ""
920
 
921
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
922
  msgid "No captcha"
923
  msgstr ""
924
 
925
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
926
  msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
927
  msgstr ""
928
 
929
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
930
  msgid "Public KEY"
931
  msgstr ""
932
 
933
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
934
  msgid "Private KEY"
935
  msgstr ""
936
 
937
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
938
  msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
939
  msgstr ""
940
 
941
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
942
  msgid "This captcha is probably weaker, but is easier for users"
943
  msgstr ""
944
 
945
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
946
  #, php-format
947
  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>"
948
  msgstr ""
949
 
950
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:532
951
  msgid "Change login/registration page logo"
952
  msgstr ""
953
 
954
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
 
 
 
 
 
 
955
  msgid "Maximum recommended logo width is 328px, but any height should work."
956
  msgstr ""
957
 
958
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
959
  msgid "Database"
960
  msgstr "База дадзеных"
961
 
962
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
963
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:572
964
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
965
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
966
  msgid "select action"
967
  msgstr "абярыце дзеянне"
968
 
969
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:556
970
  msgid "Default values"
971
  msgstr "Значэнні па-змаўчанню"
972
 
973
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
974
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
975
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
976
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
977
  msgid "Delete"
978
  msgstr "Выдаліць"
979
 
980
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
981
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:578
982
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:595
983
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
984
  msgid "NOT PRESENT"
985
  msgstr "НЕ ІСНУЕ"
986
 
987
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:566
988
  msgid "WordPress Fields table"
989
  msgstr "Табліца WordPress Fields"
990
 
991
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
992
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:590
993
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:607
994
  msgid "Empty"
995
  msgstr "Ачысціць"
996
 
997
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:583
998
  msgid "Extra Fields table"
999
  msgstr "Табліца Extra Fields"
1000
 
1001
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:600
1002
  msgid "Users Data table"
1003
  msgstr "Табліца дадзеных карыстачоў"
1004
 
1005
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:610
1006
  msgid "all data inserted by users in all and only extra fields"
1007
  msgstr "усе дадзеныя, устаўленыя карыстачамі ва ўсё і толькі ў дадатковыя палі"
1008
 
1009
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
1010
  msgid "Force tables creation"
1011
  msgstr "Force tables creation"
1012
 
1013
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
1014
  msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
1015
  msgstr ""
1016
 
1017
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
1018
  msgid "User Profile"
1019
  msgstr "Профіль карыстача"
1020
 
1021
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:630
1022
  #, fuzzy
1023
  msgid "Extra Fields section title"
1024
  msgstr "Табліца Extra Fields"
1025
 
1026
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:634
1027
  msgid "Fieldset's titles, separates with comma"
1028
  msgstr "Назвы палёў праз коску"
1029
 
1030
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:634
1031
  msgid "example: title1,title2,title3"
1032
  msgstr "прыклад: заголовок1,заголовок2, заголовок3"
1033
 
1034
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
1035
  msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
1036
  msgstr ""
1037
 
1038
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
1039
  msgid "Authors &amp; Users Extended"
1040
  msgstr "Аўтары і Прасунутыя карыстачы"
1041
 
1042
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
1043
  msgid "Hide username field"
1044
  msgstr "Схаваць поле з імем карыстача"
1045
 
1046
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
1047
  msgid "Hide name field"
1048
  msgstr "Схаваць поле з імем"
1049
 
1050
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:655
1051
  msgid "Hide email field"
1052
  msgstr "Схаваць поле з email"
1053
 
1054
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
1055
  #, fuzzy
1056
  msgid "Hide role field"
1057
  msgstr "Схаваць поле з імем"
1058
 
1059
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
1060
  msgid "Hide website field"
1061
  msgstr "Схаваць поле з адрасам сайта"
1062
 
1063
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
1064
  msgid "Hide n. posts field"
1065
  msgstr "Схаваць поле з № пастоў"
1066
 
1067
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:672
1068
  msgid "WordPress hidden fields"
1069
  msgstr "Утоеныя палі WordPress"
1070
 
1071
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
1072
  msgid "Show password"
1073
  msgstr ""
1074
 
1075
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
1076
  msgid "Show confirmation password"
1077
  msgstr ""
1078
 
1079
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:683
1080
  msgid "Show password strength meter"
1081
  msgstr ""
1082
 
1083
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:687
1084
  msgid "Show first name"
1085
  msgstr "Паказаць імя"
1086
 
1087
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:691
1088
  msgid "Show last name"
1089
  msgstr "Паказаць прозвішча"
1090
 
1091
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:695
1092
  msgid "Show nickname"
1093
  msgstr "Паказаць нік"
1094
 
1095
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
1096
  msgid "Show website"
1097
  msgstr "Паказаць адрас сайта"
1098
 
1099
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:703
1100
  msgid "Show AIM"
1101
  msgstr "Паказаць AIM"
1102
 
1103
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
1104
  msgid "Show Yahoo IM"
1105
  msgstr "Паказаць Yahoo IM"
1106
 
1107
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:711
1108
  msgid "Show Jabber / Google Talk"
1109
  msgstr "Паказаць Jabber / Google Talk"
1110
 
1111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
1112
  msgid "Show Biographical Info"
1113
  msgstr ""
1114
 
1115
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
1116
+ #, php-format
1117
+ msgid "File '%s' doesn't exist?"
1118
+ msgstr ""
1119
+
1120
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
1121
+ msgid "The GD image library is not installed."
1122
+ msgstr ""
1123
+
1124
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
1125
+ #, php-format
1126
+ msgid "File '%s' is not an image."
1127
+ msgstr ""
1128
+
1129
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
1130
+ 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!"
1131
+ msgstr ""
1132
+
1133
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:193
1134
+ msgid "Password"
1135
+ msgstr ""
1136
+
1137
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:214
1138
+ msgid "Password confirmation"
1139
+ msgstr ""
1140
+
1141
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:235
1142
  #, fuzzy
1143
+ msgid "First name"
1144
+ msgstr "Паказаць імя"
1145
 
1146
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:256
1147
  #, fuzzy
1148
+ msgid "Last name"
1149
+ msgstr "Паказаць прозвішча"
1150
 
1151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:277
1152
  #, fuzzy
1153
+ msgid "Nickname"
1154
+ msgstr "Імя"
1155
 
1156
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:319
1157
+ msgid "AIM"
1158
  msgstr ""
1159
 
1160
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
1161
+ #, fuzzy
1162
+ msgid "Yahoo IM"
1163
+ msgstr "Паказаць Yahoo IM"
1164
+
1165
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:361
1166
+ #, fuzzy
1167
+ msgid "Jabber / Google Talk"
1168
+ msgstr "Паказаць Jabber / Google Talk"
1169
+
1170
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:382
1171
+ msgid "Biographical Info"
1172
  msgstr ""
1173
 
1174
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:431
1175
+ #, fuzzy
1176
+ msgid "no fieldset"
1177
+ msgstr "Пункты палёў"
1178
+
1179
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:435
1180
+ msgid "All"
1181
  msgstr ""
1182
 
1183
  #~ msgid "A&amp;U Extended"
langs/cimy_uef-bg_BG.mo CHANGED
Binary file
langs/cimy_uef-bg_BG.po CHANGED
@@ -2,10 +2,11 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-09-04 13:58+0300\n"
6
- "PO-Revision-Date: 2011-09-04 13:58+0300\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: <cimmino.marco@gmail.com>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -16,632 +17,632 @@ msgstr ""
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
18
 
19
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:419
20
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:423
21
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:437
22
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
23
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:470
24
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:477
25
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:488
26
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
27
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:506
28
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
29
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:524
30
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:530
31
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:544
32
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:564
33
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1070
 
 
34
  msgid "ERROR"
35
  msgstr "ГРЕШКА"
36
 
37
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:419
38
  msgid "does not match."
39
  msgstr ""
40
 
41
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:423
42
  msgid "hasn&#8217;t a correct email syntax."
43
  msgstr "няма правилен email синтаксис."
44
 
45
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:437
46
  msgid "couldn&#8217;t be empty."
47
  msgstr "не може да е празно."
48
 
49
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:457
50
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:466
51
  msgid "isn&#8217;t correct"
52
  msgstr "не е правилно"
53
 
54
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:463
55
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:921
56
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:924
57
  msgid "YES"
58
  msgstr "ДА"
59
 
60
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:463
61
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:921
62
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:924
63
  msgid "NO"
64
  msgstr "НЕ"
65
 
66
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:468
67
  msgid "should be"
68
  msgstr "трябва да е"
69
 
70
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:477
71
  msgid "should be an image."
72
  msgstr "трябва да е снимка."
73
 
74
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:488
 
 
 
 
75
  msgid "couldn&#8217;t have size less than"
76
  msgstr "не може да е с по-малък размер от"
77
 
78
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
79
  msgid "couldn&#8217;t have length less than"
80
  msgstr "не може да има по-малка дължина от"
81
 
82
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:506
83
  msgid "couldn&#8217;t have size different than"
84
  msgstr "не може да има размер различен от"
85
 
86
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
87
  msgid "couldn&#8217;t have length different than"
88
  msgstr "не може да има дължина различна от"
89
 
90